﻿/* ===================================================================
   04) MICRO-UI (Kicker / Dot / Chips)
   =================================================================== */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(36,75,92,.16);
    background: rgba(255,255,255,.75);
    border-radius: 999px;
    color: rgba(36,75,92,.85);
    font-size: 13px;
    letter-spacing: .2px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(198,182,74,.18);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(36,75,92,.16);
    background: #fff;
    color: rgba(36,75,92,.88);
    font-size: 13px;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

/* ===================================================================
   05) BOTONES
   =================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(36,75,92,.22);
    background: #fff;
    color: var(--brandDark);
    font-weight: 750;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

    .btn:hover {
        transform: translateY(-1px);
        border-color: rgba(36,75,92,.30);
        box-shadow: 0 10px 20px rgba(16,24,40,.08);
    }

    .btn:active {
        transform: translateY(0);
    }

    .btn:focus {
        outline: none;
        box-shadow: 0 0 0 4px var(--focus);
    }

    .btn.primary {
        background: var(--brand);
        color: #fff;
        border-color: rgba(47,93,115,.70);
    }

        .btn.primary:hover {
            background: var(--brandDark);
        }

    .btn.cta {
        background: var(--accent);
        color: #1a1a1a;
        border-color: rgba(182,167,65,.85);
    }

        .btn.cta:hover {
            background: var(--accentDark);
        }

    .btn.ghost {
        background: transparent;
        border-color: rgba(36,75,92,.22);
        color: var(--brandDark);
    }

        .btn.ghost:hover {
            background: rgba(47,93,115,.06);
        }

.icon-btn {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(36,75,92,.14);
    background: rgba(47,93,115,.05);
    color: var(--brandDark);
    font-weight: 850;
    font-size: 13px;
}

    .icon-btn:hover {
        background: rgba(47,93,115,.10);
    }

/* ===================================================================
   06) SUPERFICIES (Cards)
   =================================================================== */
.card {
    border: 1px solid rgba(36,75,92,.14);
    background: var(--surface);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
}

    .card.pad {
        padding: 18px;
    }

    .card.soft {
        box-shadow: none;
    }

.glass {
    border: 1px solid rgba(36,75,92,.14);
    background: var(--surface);
}

/* ===================================================================
   07) FORMULARIOS GLOBALES
   =================================================================== */
.form {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .field label {
        font-size: 13px;
        color: var(--muted);
    }

    .field input, .field textarea {
        border: 1px solid rgba(36,75,92,.14);
        background: #fff;
        color: var(--text);
        border-radius: 16px;
        padding: 12px;
        outline: 0;
        font-size: 14px;
        resize: vertical;
    }

        .field input:focus, .field textarea:focus {
            box-shadow: 0 0 0 4px rgba(47,93,115,.16);
            border-color: rgba(47,93,115,.30);
        }

    .field textarea {
        min-height: 110px;
    }

/* ===================================================================
   08) WHATSAPP FLOTANTE
   =================================================================== */
.wa-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(198,182,74,.75);
    background: #fff;
    box-shadow: 0 14px 26px rgba(16,24,40,.12);
    font-weight: 900;
    color: var(--brandDark);
}

.wa-badge {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(198,182,74,.20);
}

.wa-float small {
    display: block;
    color: var(--muted2);
    font-weight: 800;
    margin-top: 2px;
}
