﻿/* ============================================================
   COLUNA ESQUERDA — conteúdo
   ============================================================ */
.content-col {
    min-width: 0;
}

/* Tabela de valores */
.table-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.table-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .table-card-header h3 {
        font-family: var(--font);
        font-size: 1rem;
        font-weight: 700;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: 0;
    }

    .table-card-header i {
        color: var(--primary);
    }

    .table-card-body {
        padding: 0;
    }

.price-group {
    border-bottom: 1px solid var(--border);
}

    .price-group:last-child {
        border-bottom: none;
    }

.price-group-header {
    padding: .875rem 1.25rem;
    background: #fafbfc;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition);
}

    .price-group-header:hover {
        background: var(--primary-light);
    }

.price-group-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--primary);
}

.price-group-subtitle {
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.price-group-chevron {
    color: var(--text-muted);
    transition: transform var(--transition);
}

.price-group-header.open .price-group-chevron {
    transform: rotate(180deg);
}

.price-table-wrap {
    display: none;
    overflow-x: auto;
}

    .price-table-wrap.open {
        display: block;
        padding-top: 10px;
    }

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}

    .price-table thead th {
        background: var(--primary-light);
        color: var(--primary-dark);
        padding: .5rem .875rem;
        font-weight: 700;
        text-align: left;
        white-space: nowrap;
        font-size: .73rem;
        text-transform: uppercase;
        letter-spacing: .4px;
    }

        .price-table thead th:not(:first-child) {
            text-align: center;
        }

    .price-table tbody tr {
        border-bottom: 1px solid var(--border);
    }

        .price-table tbody tr:last-child {
            border-bottom: none;
        }

        .price-table tbody tr:hover {
            background: #fafbfc;
        }

    .price-table td {
        padding: .625rem .875rem;
        color: var(--text);
        vertical-align: middle;
    }

        .price-table td:not(:first-child) {
            text-align: center;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .price-table td.free {
            color: #15803d;
            font-weight: 700;
        }

/* Aviso associação */
.assoc-notice {
    margin: 0 1.25rem 1rem;
    padding: .625rem .875rem;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

    .assoc-notice i {
        flex-shrink: 0;
        margin-top: 1px;
    }

/* Hands On accordion */
.handson-list {
    list-style: none;
    padding: 0 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.handson-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

    .handson-item:hover {
        border-color: var(--primary);
    }

.handson-item-header {
    padding: .625rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: .84rem;
    font-weight: 600;
    color: var(--text);
}

    .handson-item-header i {
        color: var(--text-muted);
        font-size: .8rem;
    }

/* ============================================================
   COLUNA DIREITA — LOGIN CARD (sticky)
   ============================================================ */
.login-col {
    position: sticky;
    top: calc(var(--navbar-height) + 1.5rem);
    align-self: start;
}

.login-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.login-card-header {
    background: var(--primary);
    padding: 1.25rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    /* Detalhe decorativo no header */
    .login-card-header::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
    }

    .login-card-header::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -20px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
    }

    .login-card-header h3 {
        color: #fff;
        font-size: 1.05rem;
        font-weight: 700;
        position: relative;
        z-index: 1;
        margin-bottom: 0;
    }

    .login-card-header p {
        color: rgba(255,255,255,.75);
        font-size: .8rem;
        margin-top: .25rem;
        position: relative;
        z-index: 1;
        margin-bottom: 0;
    }

.login-card-body {
    padding: 1.5rem;
}

/* Step indicator */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition);
}

    .step-item.active {
        color: var(--primary);
    }

    .step-item.done {
        color: var(--primary);
        opacity: .5;
    }

.step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    transition: all var(--transition);
}

.step-item.active .step-num {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.step-item.done .step-num {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.step-divider {
    width: 24px;
    height: 1.5px;
    background: var(--border);
}

/* Floating label */
.field-group {
    position: relative;
    margin-bottom: 1rem;
}

    .field-group input,
    .field-group .input-fake {
        width: 100%;
        padding: 1.05rem .875rem .45rem;
        font-size: .95rem;
        font-family: var(--font);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        background: #fff;
        outline: none;
        transition: border-color var(--transition), box-shadow var(--transition);
        color: var(--text);
    }

        .field-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-glow);
        }

    .field-group label {
        position: absolute;
        left: .875rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: .92rem;
        color: var(--text-muted);
        pointer-events: none;
        transition: all var(--transition);
        background: transparent;
    }

    .field-group input:focus ~ label,
    .field-group input.filled ~ label {
        top: .45rem;
        transform: none;
        font-size: .68rem;
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .field-group .field-icon {
        position: absolute;
        right: .75rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        font-size: .9rem;
        cursor: pointer;
        transition: color var(--transition);
        background: none;
        border: none;
        padding: 4px;
    }

        .field-group .field-icon:hover {
            color: var(--primary);
        }

/* Botão principal */
.btn-main {
    width: 100%;
    padding: .875rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .97rem;
    font-weight: 700;
    letter-spacing: .2px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    position: relative;
    overflow: hidden;
}

    .btn-main::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0);
        transition: background var(--transition);
    }

    .btn-main:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0,118,192,.35);
    }

    .btn-main:active {
        transform: translateY(0);
    }

/* Senha field (inicialmente hidden) */
#passwordSection {
    display: none;
}

    #passwordSection.visible {
        display: block;
        animation: fadeDown .28s ease forwards;
    }

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Forgot password */
.forgot-link {
    display: block;
    text-align: center;
    font-size: .78rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-top: .5rem;
    transition: color var(--transition);
}

    .forgot-link:hover {
        color: var(--primary);
    }

/* Checkbox estrangeiro */
.check-row {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--text-muted);
    margin: .5rem 0 0;
    cursor: pointer;
    user-select: none;
}

    .check-row input {
        accent-color: var(--primary);
        width: 14px;
        height: 14px;
        cursor: pointer;
    }

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 1rem 0;
    color: var(--text-muted);
    font-size: .75rem;
}

    .divider::before, .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

/* Botão WhatsApp */
.btn-wpp {
    width: 100%;
    padding: .7rem;
    background: #fff;
    color: #15803d;
    border: 1.5px solid #86efac;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-decoration: none;
    transition: all var(--transition);
}

    .btn-wpp:hover {
        background: #f0fdf4;
        border-color: var(--success);
        box-shadow: 0 2px 12px rgba(37,211,102,.2);
    }

    .btn-wpp i {
        font-size: 1.1rem;
    }

/* Security seal */
.security-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .375rem;
    font-size: .7rem;
    color: var(--text-muted);
    margin-top: 1rem;
    padding-top: .875rem;
    border-top: 1px solid var(--border);
}

    .security-row i {
        color: #16a34a;
        font-size: .8rem;
    }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .login-col {
        position: static;
        order: -1; /* Login aparece ANTES da tabela em mobile */
        top: auto;
    }

    .event-cards {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   TOAST de feedback (sem SweetAlert para o protótipo)
   ============================================================ */
.toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--text);
    color: #fff;
    padding: .7rem 1.25rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: all .3s ease;
    z-index: 999;
    white-space: nowrap;
}

    .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }



/* ============================================================
   LOGIN CARD — floating label + step indicator
   Adicionar ao final do index.css
   ============================================================ */

/* ── Floating label ── */
.field-group {
    position: relative;
    margin-bottom: 1rem;
}

    .field-group input,
    .field-group input[type="password"] {
        width: 100%;
        padding: 1.05rem .875rem .45rem;
        font-size: .95rem;
        font-family: var(--font);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        background: #fff;
        outline: none;
        transition: border-color var(--transition), box-shadow var(--transition);
        color: var(--text);
        /* Garante que o reset global não quebre o padding */
        box-sizing: border-box;
    }

        .field-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-glow);
        }

    .field-group label {
        position: absolute;
        left: .875rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: .92rem;
        color: var(--text-muted);
        pointer-events: none;
        transition: all var(--transition);
        background: transparent;
        /* Isola do reset global */
        margin: 0;
        padding: 0;
        line-height: 1;
    }

    /* Label sobe quando o input está focado ou preenchido */
    .field-group input:focus ~ label,
    .field-group input.filled ~ label,
    .field-group input:not(:placeholder-shown) ~ label {
        top: .45rem;
        transform: none;
        font-size: .67rem;
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    /* Ícone dentro do field (olho da senha, X do CPF) */
    .field-group .field-icon {
        position: absolute;
        right: .75rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        font-size: .9rem;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
        line-height: 1;
        transition: color var(--transition);
        /* Isola do reset */
        margin: 0;
    }

        .field-group .field-icon:hover {
            color: var(--primary);
        }

/* ── Step indicator ── */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1.25rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition);
}

    .step-item.active {
        color: var(--primary);
    }

    .step-item.done {
        color: var(--primary);
        opacity: .55;
    }

.step-num {
    /* Reset explícito — o * { margin:0; padding:0 } do global
       pode zerar o padding e quebrar o alinhamento */
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all var(--transition);
}

.step-item.active .step-num {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.step-item.done .step-num {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.step-divider {
    width: 32px;
    height: 1.5px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── Botão principal do login ── */
.btn-main {
    width: 100%;
    padding: .875rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font);
    font-size: .97rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

    .btn-main:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px var(--primary-glow);
        color: #fff;
    }

    .btn-main:active {
        transform: translateY(0);
    }

    .btn-main:disabled {
        opacity: .7;
        cursor: not-allowed;
        transform: none;
    }

/* ── Esqueci senha ── */
.forgot-link {
    display: block;
    text-align: center;
    font-size: .78rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-top: .5rem;
    transition: color var(--transition);
}

    .forgot-link:hover {
        color: var(--primary);
    }

/* ── Checkbox estrangeiro ── */
.check-row {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--text-muted);
    margin: .5rem 0 0;
    cursor: pointer;
    user-select: none;
}

    .check-row input[type="checkbox"] {
        accent-color: var(--primary);
        width: 14px;
        height: 14px;
        cursor: pointer;
        /* garante que o reset não quebre */
        padding: 0;
        margin: 0;
    }

/* ── Divider "ou fale conosco" ── */
.divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 1rem 0;
    color: var(--text-muted);
    font-size: .75rem;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

/* ── WhatsApp ── */
.btn-wpp {
    width: 100%;
    padding: .7rem;
    background: #fff;
    color: #15803d;
    border: 1.5px solid #86efac;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-decoration: none;
    transition: all var(--transition);
    box-sizing: border-box;
}

    .btn-wpp:hover {
        background: #f0fdf4;
        border-color: #25D366;
        box-shadow: 0 2px 12px rgba(37,211,102,.2);
        color: #15803d;
        text-decoration: none;
    }

    .btn-wpp i {
        font-size: 1.15rem;
    }

/* WhatsApp dropdown */
.lp-wpp-menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    z-index: 200;
}

    .lp-wpp-menu.open {
        display: block;
    }

.lp-wpp-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    color: #15803d;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    transition: background var(--transition);
}

    .lp-wpp-item:hover {
        background: #f0fdf4;
        color: #15803d;
        text-decoration: none;
    }

    .lp-wpp-item + .lp-wpp-item {
        border-top: 1px solid var(--border);
    }

    .lp-wpp-item small {
        display: block;
        font-size: .72rem;
        color: var(--text-muted);
        font-weight: 400;
    }

/* ── Segurança ── */
.security-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .375rem;
    font-size: .7rem;
    color: var(--text-muted);
    margin-top: 1rem;
    padding-top: .875rem;
    border-top: 1px solid var(--border);
}

    .security-row i {
        color: #16a34a;
        font-size: .8rem;
    }

/* ── Alertas do login ── */
.lp-alert {
    border-radius: var(--radius-sm);
    border: none;
    padding: .875rem 1rem;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.lp-alert-danger {
    background: #fff0f0;
    color: #c0392b;
    border-left: 4px solid var(--danger);
}

.lp-alert-success {
    background: #f0fff4;
    color: #1a6b38;
    border-left: 4px solid #28a745;
}

/* ── Mais informações ── */
.more-info-card {
    margin-bottom: .75rem;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
}

.more-info-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .875rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    transition: background var(--transition);
    text-align: left;
    box-sizing: border-box;
    margin: 0;
}

    .more-info-trigger:hover {
        background: var(--primary-light);
    }

    .more-info-trigger.open {
        background: var(--primary-light);
        color: var(--primary);
    }

.more-info-trigger-left {
    display: flex;
    align-items: center;
    gap: .5rem;
}

    .more-info-trigger-left i {
        color: var(--primary);
        font-size: 1rem;
    }

.more-info-chevron {
    color: var(--text-muted);
    font-size: .8rem;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.more-info-trigger.open .more-info-chevron {
    transform: rotate(180deg);
}

.more-info-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4,0,.2,1);
}

    .more-info-body.open {
        max-height: 600px;
    }

.more-info-content {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
    font-size: .88rem;
    line-height: 1.65;
    color: var(--text);
}

.more-info-notice {
    display: flex;
    gap: .625rem;
    align-items: flex-start;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-sm);
    padding: .75rem 1rem;
    font-size: .85rem;
    color: #92400e;
    line-height: 1.55;
}

    .more-info-notice > i {
        flex-shrink: 0;
        margin-top: 2px;
        color: #d97706;
    }

    .more-info-notice a {
        color: #92400e;
        font-weight: 600;
    }

/* ── Spinner de loading no botão ── */
@keyframes lp-spin {
    to {
        transform: rotate(360deg);
    }
}

.lp-spinner {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: lp-spin .7s linear infinite;
}

/* ── Animação entrada da senha (passo 2) ── */
@keyframes lp-fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#passwordSection {
    animation: lp-fadeDown .28s ease forwards;
}


/* ── HERO BANNER ── */
.hero-banner {
    height: 260px;
    background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1400&q=80');
    background-size: cover;
    background-position: center top;
    position: relative;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 105deg, rgba(10, 30, 70, .88) 0%, rgba(10, 30, 70, .65) 45%, rgba(10, 30, 70, .15) 100% );
    display: flex;
    align-items: flex-end;
}

.hero-banner-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 1.75rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.hero-banner-info {
    max-width: 560px;
}

.hero-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.9);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: .25rem .65rem;
    border-radius: 20px;
    margin-bottom: .6rem;
    font-family: var(--font);
    border: 1px solid rgba(255,255,255,.2);
}

.hero-banner-title {
    font-family: var(--font);
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: .75rem;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero-banner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .875rem;
}

    .hero-banner-meta span {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        font-size: .82rem;
        color: rgba(255,255,255,.88);
        font-family: var(--font);
    }

    .hero-banner-meta i {
        font-size: .75rem;
        opacity: .75;
    }

/* Cards direita */
.hero-info-cards {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-width: 260px;
}

.hero-info-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm);
    padding: .6rem .875rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    font-family: var(--font);
}

.hero-info-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    flex-shrink: 0;
}

.hero-info-card-label {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    display: block;
    margin-bottom: .1rem;
}

.hero-info-card-value {
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.hero-info-card.cta {
    background: #fff;
    border-color: transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

    .hero-info-card.cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(0,0,0,.2);
    }

    .hero-info-card.cta .hero-info-card-icon {
        background: var(--primary-light);
    }

    .hero-info-card.cta .hero-info-card-label {
        color: var(--text-muted);
    }

    .hero-info-card.cta .hero-info-card-value {
        color: var(--primary);
        font-weight: 700;
        font-size: .9rem;
    }

    .hero-info-card.cta i {
        color: var(--primary);
    }

.hero-info-card-value.urgente {
    color: #fca5a5;
}

@media (max-width: 900px) {
    .hero-banner {
        height: auto;
        min-height: 280px;
    }

    .hero-banner-overlay {
        align-items: flex-start;
        padding-top: 1.5rem;
    }

    .hero-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-info-cards {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: unset;
        width: 100%;
    }

    .hero-info-card {
        flex: 1;
        min-width: 140px;
    }

    .hero-banner-title {
        font-size: 1.3rem;
    }
}