/**
 * BRA Benefícios - Landing Page
 * Paleta institucional: azul navy (#19395E), verde (#4CAF50), dourado (#FFD700)
 */

:root {
    /* Azul navy – títulos, links, "BRA" */
    --bra-base-escuro: #19395E;
    --bra-base-azul: #004085;
    --bra-azul-profundo: #19395E;
    /* Verde – "BENEFÍCIOS", destaques, CTAs */
    --bra-verde: #4CAF50;
    --bra-verde-escuro: #388E3C;
    --bra-base-teal: #4CAF50;
    /* Tons suaves para fundos e hover */
    --bra-teal-claro: #E8F5E9;
    --bra-azul-claro: #E3F2FD;
    /* Neutros – texto e bordas */
    --bra-cream: #fafcfd;
    --bra-cinza: #444444;
    --bra-cinza-escuro: #333333;
    /* Dourado – acentos sutis */
    --bra-dourado: #FFD700;
    /* Imagens da landing — coloque os arquivos em /static/images/ e ajuste aqui se os nomes forem outros */
    --bra-img-hero: url("/static/images/hero%20(2).png");
    --bra-img-hero-aside: url("/static/images/bra-hero-aside.png");
    --bra-img-cartao: url("/static/images/cart%C3%A3o.png");
}

/* Preloader – exibe até todas as imagens carregarem */
.bra-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f8ff 0%, #fafcfd 50%, #f0fff4 100%);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.bra-preloader--hide {
    opacity: 0;
    visibility: hidden;
}

.bra-preloader__inner {
    text-align: center;
}

.bra-preloader__spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border: 4px solid rgba(25, 57, 94, 0.1);
    border-top-color: var(--bra-base-escuro);
    border-radius: 50%;
    animation: bra-preloader-spin 0.8s linear infinite;
}

.bra-preloader__text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4A4A4A;
}

@keyframes bra-preloader-spin {
    to { transform: rotate(360deg); }
}

/* Fundo sutil azul→verde (como slide institucional) */
.bra-landing {
    background: linear-gradient(135deg, #f0f8ff 0%, #fafcfd 50%, #f0fff4 100%) !important;
}

/* Landing: header liquid glass – texto branco no topo, escuro ao rolar */
.bra-landing .bra-header .bra-header__link,
.bra-landing .bra-header .bra-header__nav a,
.bra-landing .bra-header .bra-header__nav button.bra-header__link,
.bra-landing .bra-header .bra-header__cta .bra-header__link,
.bra-landing .bra-header .bra-header__cta .bra-header__btn-cta {
    color: rgba(255, 255, 255, 0.95) !important;
}
.bra-landing .bra-header.scrolled .bra-header__link,
.bra-landing .bra-header.scrolled .bra-header__nav a,
.bra-landing .bra-header.scrolled .bra-header__nav button.bra-header__link,
.bra-landing .bra-header.scrolled .bra-header__cta .bra-header__link,
.bra-landing .bra-header.scrolled .bra-header__cta .bra-header__btn-cta {
    color: #19395E !important;
}
.bra-landing .bra-header .bra-header__logo img,
.bra-landing .bra-header.scrolled .bra-header__logo img {
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.9)) drop-shadow(0 1px 2px rgba(255, 255, 255, 0.6)) !important;
}
.bra-landing .bra-header .bra-header__toggle span {
    background: rgba(255, 255, 255, 0.95) !important;
}
.bra-landing .bra-header.scrolled .bra-header__toggle span {
    background: #19395E !important;
}

/* Header – liquid glass transparente */
.bra-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.4s ease, backdrop-filter 0.4s, box-shadow 0.4s, border-color 0.4s;
    overflow: visible;
}

.bra-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(25, 57, 94, 0.08);
    box-shadow: 0 2px 20px rgba(25, 57, 94, 0.06);
}

/* Garantir texto e ícones visíveis no menu (scrolled) em todas as páginas */
.bra-header.scrolled .bra-header__link,
.bra-header.scrolled .bra-header__nav a,
.bra-header.scrolled .bra-header__cta a.bra-header__link {
    color: #19395E !important;
}
.bra-header.scrolled .bra-header__toggle span {
    background: #19395E !important;
}

.bra-header-inner,
.bra-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.bra-header__logo {
    flex-shrink: 0;
    text-decoration: none;
}

.bra-header__logo img {
    height: 2.25rem;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.9)) drop-shadow(0 1px 2px rgba(255, 255, 255, 0.6));
}

.bra-header__right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.bra-header__nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex-wrap: nowrap;
}

.bra-header__link {
    display: inline-block;
    padding: 0.4rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.bra-header.scrolled .bra-header__link {
    color: var(--bra-base-escuro);
}

.bra-header__link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.bra-header.scrolled .bra-header__link:hover {
    color: var(--bra-verde);
    background: rgba(76, 175, 80, 0.1);
}

.bra-header__link--secondary {
    margin-right: 0.25rem;
}

/* Dropdown menu */
.bra-header__dropdown {
    position: relative;
}
.bra-header__dropdown .bra-header__link--dropdown {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.bra-header__dropdown .bra-header__link--dropdown::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 0.2rem;
}
.bra-header__dropdown.open .bra-header__link--dropdown::after {
    transform: rotate(180deg);
}
.bra-header__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin-top: 0.25rem;
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(12, 74, 110, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1101;
}
.bra-header__dropdown.open .bra-header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown branco sólido quando header está scrolled (sobre fundo claro) */
.bra-header.scrolled .bra-header__dropdown-menu {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(25, 57, 94, 0.1);
    box-shadow: 0 10px 40px rgba(12, 74, 110, 0.15);
}

.bra-header__dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    color: var(--bra-base-escuro);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.bra-header__dropdown-menu a:hover {
    background: rgba(76, 175, 80, 0.08);
    color: var(--bra-verde-escuro);
}

.bra-header__cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.bra-header__btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Botões Acessar minha conta + Criar Conta – mesmo estilo (outline azul/transparente) */
.bra-header__btn-cta {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.bra-header__btn-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
}

.bra-header.scrolled .bra-header__btn-cta {
    background: transparent;
    border-color: #19395E;
    color: #19395E;
}

.bra-header.scrolled .bra-header__btn-cta:hover {
    background: rgba(25, 57, 94, 0.08);
    border-color: #19395E;
}

/* Menu mobile */
.bra-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.bra-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.bra-header.scrolled .bra-header__toggle span {
    background: var(--bra-base-escuro);
}

.bra-header__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.bra-header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.bra-header__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .bra-header__toggle {
        display: flex;
    }
    .bra-header__right {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        box-shadow: -8px 0 32px rgba(12, 74, 110, 0.08);
        transition: right 0.3s ease;
        z-index: 999;
    }
    .bra-header__right.open {
        right: 0;
    }
    /* Menu mobile aberto: visual fixo (fundo branco + texto azul) */
    .bra-landing .bra-header .bra-header__right,
    .bra-landing .bra-header .bra-header__right.open {
        background: #ffffff !important;
        border-left: 1px solid rgba(25, 57, 94, 0.08);
    }
    .bra-header__right .bra-header__nav {
        flex-direction: column;
        align-items: stretch;
    }
    .bra-header__right .bra-header__link {
        color: var(--bra-base-escuro);
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(12, 74, 110, 0.08);
    }
    .bra-landing .bra-header .bra-header__right .bra-header__link,
    .bra-landing .bra-header .bra-header__right .bra-header__nav a,
    .bra-landing .bra-header .bra-header__right .bra-header__nav button.bra-header__link,
    .bra-landing .bra-header .bra-header__right .bra-header__cta .bra-header__btn-cta {
        color: #19395E !important;
    }
    .bra-landing .bra-header .bra-header__right .bra-header__btn-cta {
        border-color: #19395E !important;
    }
    .bra-landing .bra-header .bra-header__right .bra-header__btn-cta:hover {
        background: rgba(25, 57, 94, 0.08) !important;
    }
    .bra-header__dropdown {
        display: flex;
        flex-direction: column;
    }
    .bra-header__dropdown .bra-header__link--dropdown {
        justify-content: space-between;
        width: 100%;
        text-align: left;
    }
    .bra-header__dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        margin: 0.5rem 0 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .bra-header__dropdown.open .bra-header__dropdown-menu {
        max-height: 300px;
    }
    .bra-header__dropdown-menu a {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(12, 74, 110, 0.06);
    }
    .bra-header__right .bra-header__link:hover {
        color: var(--bra-base-azul);
        background: rgba(24, 126, 224, 0.06);
    }
    .bra-header__right .bra-header__cta {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(12, 74, 110, 0.08);
    }
}

.bra-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Hamburger mobile */
.bra-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bra-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.bra-header.scrolled .bra-nav-toggle span {
    background: var(--bra-base-escuro);
}

.bra-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.bra-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.bra-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .bra-nav-toggle {
        display: flex;
    }
    .bra-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        box-shadow: -8px 0 32px rgba(12, 74, 110, 0.08);
        transition: right 0.35s ease;
    }
    .bra-nav.open {
        right: 0;
    }
    .bra-nav-link {
        color: var(--bra-base-escuro);
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(12, 74, 110, 0.06);
    }
    .bra-nav-divider {
        display: none;
    }
    .bra-nav .bra-btn-primary {
        margin-top: 1rem;
    }
}

.bra-logo-img {
    height: 2rem;
    width: auto;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.9)) drop-shadow(0 1px 2px rgba(255, 255, 255, 0.6));
}

.bra-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem 0.75rem;
    flex-wrap: wrap;
    flex-shrink: 1;
    min-width: 0;
}

.bra-nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.bra-header.scrolled .bra-nav-link {
    color: var(--bra-base-escuro);
}

.bra-nav-link:hover, .bra-nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.bra-header.scrolled .bra-nav-link:hover,
.bra-header.scrolled .bra-nav-link.active {
    color: var(--bra-base-azul);
    background: rgba(24, 126, 224, 0.08);
}

.bra-nav-divider {
    width: 1px;
    height: 1.25rem;
    background: rgba(255, 255, 255, 0.3);
}

.bra-header.scrolled .bra-nav-divider {
    background: rgba(12, 74, 110, 0.2);
}

.bra-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bra-btn-primary {
    background: linear-gradient(135deg, var(--bra-base-escuro), var(--bra-verde-escuro));
    color: white;
    border: none;
}

.bra-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.35);
}

.bra-nav .bra-btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Hero – altura fixa, começa no topo para o header liquid glass ficar sobre a imagem */
.bra-hero {
    position: relative;
    height: 850px;
    margin-top: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0f2844;
    background-image: var(--bra-img-hero);
    background-size: cover;
    background-position: center 55%;
    background-repeat: no-repeat;
}

.bra-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-content: center;
}

.bra-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(25, 57, 94, 0.85) 0%,
        rgba(0, 64, 133, 0.5) 40%,
        rgba(76, 175, 80, 0.25) 65%,
        transparent 88%
    );
    z-index: 1;
}

.bra-hero-content {
    grid-column: 1 / span 7;
    padding: 0 0 2rem;
    text-align: left;
}

/* Coluna visual — estilo comercial; foto opcional via --bra-img-hero-aside */
.bra-hero-aside {
    grid-column: 7 / span 6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.bra-hero-aside__visual {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 5;
    max-height: min(520px, 55vh);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 4px 0 rgba(255, 215, 0, 0.35),
        0 28px 64px rgba(0, 0, 0, 0.35);
    background-color: rgba(25, 57, 94, 0.5);
    background-image:
        radial-gradient(ellipse 90% 70% at 75% 15%, rgba(255, 215, 0, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 50% at 15% 85%, rgba(76, 175, 80, 0.35), transparent 50%),
        linear-gradient(155deg, rgba(0, 64, 133, 0.55) 0%, rgba(25, 57, 94, 0.75) 50%, rgba(76, 175, 80, 0.25) 100%),
        var(--bra-img-hero-aside);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bra-hero-aside__tag {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--bra-base-escuro);
    text-align: center;
    line-height: 1.35;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.bra-hero-badge {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.bra-hero-title {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.bra-hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0 0 2rem;
}

.bra-btn-hero {
    display: inline-flex;
    padding: 1rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    background: white;
    color: var(--bra-base-escuro);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.bra-btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.bra-btn-secondary {
    display: inline-flex;
    padding: 1rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bra-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
}

/* CTA intermediário no hero (estilo comercial) */
.bra-btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bra-btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .bra-hero-inner {
        padding: 1.5rem 1.5rem 2rem;
    }
    .bra-hero-content {
        grid-column: 1 / -1;
        max-width: 90%;
        margin: 0 auto;
        padding: 0 0 2rem;
        text-align: center;
    }
}

/* Seções */
.bra-section {
    padding: 6rem 0;
}

.bra-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1400px) {
    .bra-section__inner {
        padding: 0 3rem;
    }
}

.bra-section--alt {
    background: linear-gradient(180deg, #f0f8ff 0%, #f0fff4 100%);
}

.bra-section--white {
    background: white;
}

/* Bloco de planos — fundo suave (paleta BRA, vibe landing comercial) */
.bra-section--planos-commercial {
    background:
        radial-gradient(ellipse 100% 70% at 50% -30%, rgba(227, 242, 253, 0.95), transparent 58%),
        radial-gradient(ellipse 55% 45% at 0% 60%, rgba(232, 245, 233, 0.55), transparent 50%),
        radial-gradient(ellipse 50% 40% at 100% 80%, rgba(0, 64, 133, 0.06), transparent 50%),
        #ffffff;
}

.bra-section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #405580;
    margin-bottom: 1.25rem;
}

.bra-section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #1D3560;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.bra-section-subtitle {
    font-size: 1.25rem;
    color: #4A4A4A;
    line-height: 1.8;
    max-width: 72ch;
    margin: 0 auto 3rem;
}

.bra-section-content {
    margin-top: 3rem;
}

.bra-container { max-width: 1000px; margin-left: auto; margin-right: auto; }
.bra-container--narrow { max-width: 900px; margin-left: auto; margin-right: auto; }

/* Títulos e textos centrados – mais área de tela */
.bra-section__inner .text-center .bra-section-title {
    margin-left: auto;
    margin-right: auto;
}

.bra-section__inner .text-center .bra-section-subtitle {
    padding: 0 1rem;
}

/* Nossa proposta – layout moderno, texto + cartão integrados */
.bra-proposta-section .bra-section__inner {
    max-width: 1120px;
}

.bra-proposta-eyebrow {
    margin-bottom: 0.5rem;
}

.bra-proposta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 1024px;
    margin: 0 auto;
}

.bra-proposta-grid--center .bra-proposta-texto {
    text-align: center;
}

.bra-proposta-grid--center .bra-proposta-texto .bra-section-subtitle,
.bra-proposta-grid--center .bra-proposta-texto .space-y-4 {
    margin-left: auto;
    margin-right: auto;
    max-width: 56ch;
}

.bra-proposta-grid--center .bra-proposta-texto .bra-section-subtitle {
    text-align: center;
}

.bra-proposta-grid--center .bra-proposta-texto .space-y-4 p {
    text-align: center;
}

@media (min-width: 880px) {
    .bra-proposta-grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
        gap: 3rem 4rem;
        align-items: center;
    }
}

.bra-proposta-texto {
    padding-right: 0;
}

.bra-proposta-texto .bra-section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
}

.bra-proposta-texto .bra-section-subtitle {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.75;
}

.bra-proposta-texto .space-y-4 p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4A4A4A;
}

.bra-proposta-cartao {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bra-proposta-cartao__img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
}

/* Nossa solução (index) – texto + cartão */
.bra-solucao-section .bra-section__inner {
    max-width: 1120px;
}

.bra-solucao-eyebrow {
    margin-bottom: 0.5rem;
}

.bra-solucao-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 880px) {
    .bra-solucao-grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
        gap: 3rem 4rem;
    }
}

.bra-solucao-texto .bra-section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
}

.bra-solucao-texto .bra-section-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.bra-solucao-cartao {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(227, 242, 253, 0.6) 0%, rgba(232, 245, 233, 0.45) 100%);
    border: 1px solid rgba(25, 57, 94, 0.08);
    box-shadow: 0 12px 40px rgba(25, 57, 94, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bra-solucao-cartao__img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    filter: drop-shadow(0 12px 28px rgba(25, 57, 94, 0.18));
}

/* Cards refinados */
.bra-card {
    background: white;
    border-radius: 20px;
    padding: 2.25rem;
    border: 1px solid rgba(12, 74, 110, 0.08);
    box-shadow: 0 4px 6px -1px rgba(12, 74, 110, 0.04), 0 10px 20px -4px rgba(12, 74, 110, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -8px rgba(12, 74, 110, 0.12), 0 12px 24px -6px rgba(12, 74, 110, 0.08), 0 0 0 1px rgba(255, 255, 255, 1) inset;
    border-color: rgba(24, 126, 224, 0.12);
}

.bra-card-accent {
    display: none;
}

.bra-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(25, 57, 94, 0.08);
    color: #19395E;
    margin-bottom: 1.25rem;
}

.bra-card-icon svg {
    width: 24px;
    height: 24px;
}

.bra-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1D3560;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.bra-card-desc {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.7;
}

.bra-problem-num {
    font-size: 3.5rem;
    font-weight: 200;
    color: rgba(29, 53, 96, 0.12);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.bra-card-mini {
    padding: 1.75rem;
}

/* Rede de Parceiros – cards com ícones */
.bra-parceiros-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.bra-parceiro-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.75rem 1.5rem;
    background: white;
    border: 1px solid rgba(12, 74, 110, 0.08);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(12, 74, 110, 0.04), 0 10px 20px -4px rgba(12, 74, 110, 0.05);
}

.bra-parceiro-card:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 126, 224, 0.2);
    box-shadow: 0 16px 36px -8px rgba(24, 126, 224, 0.15);
}

.bra-parceiro-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.bra-parceiro-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.bra-parceiro-icon--saude {
    background: rgba(20, 175, 190, 0.15);
    color: var(--bra-base-teal);
}

.bra-parceiro-icon--educacao {
    background: rgba(24, 126, 224, 0.15);
    color: var(--bra-base-azul);
}

.bra-parceiro-icon--lazer {
    background: rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.bra-parceiro-icon--consumo {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.bra-parceiro-icon--bemestar {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.bra-parceiro-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bra-base-escuro);
    margin: 0 0 0.5rem;
}

.bra-parceiro-desc {
    font-size: 0.875rem;
    color: var(--bra-cinza);
    line-height: 1.55;
    margin: 0 0 1rem;
    flex: 1;
}

.bra-parceiro-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bra-verde);
}

.bra-parceiro-card:hover .bra-parceiro-cta {
    color: var(--bra-verde-escuro);
}

/* Cards dos 5 pilares – ícone + cor por pilar */
.bra-pilar-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.bra-pilar-card .bra-pilar-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.bra-pilar-card .bra-pilar-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.bra-pilar-card--saude .bra-pilar-icon {
    background: rgba(76, 175, 80, 0.2);
    color: var(--bra-verde);
}

.bra-pilar-card--saude { border-top: 3px solid var(--bra-verde); }

.bra-pilar-card--medicos .bra-pilar-icon {
    background: rgba(0, 64, 133, 0.15);
    color: var(--bra-base-azul);
}

.bra-pilar-card--medicos { border-top: 3px solid var(--bra-base-azul); }

.bra-pilar-card--pagamentos .bra-pilar-icon {
    background: rgba(76, 175, 80, 0.2);
    color: var(--bra-verde-escuro);
}

.bra-pilar-card--pagamentos { border-top: 3px solid var(--bra-verde-escuro); }

.bra-pilar-card--credito .bra-pilar-icon {
    background: rgba(25, 57, 94, 0.15);
    color: var(--bra-base-escuro);
}

.bra-pilar-card--credito { border-top: 3px solid var(--bra-base-escuro); }

.bra-pilar-card--descontos .bra-pilar-icon {
    background: rgba(255, 215, 0, 0.25);
    color: var(--bra-dourado);
}

.bra-pilar-card--descontos { border-top: 3px solid #d4a017; }

.bra-pilar-card .bra-card-title { margin-bottom: 0.5rem; }

.bra-pilar-card .bra-card-desc { flex: 1; margin-bottom: 1rem; }

.bra-pilar-card .bra-parceiro-cta {
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .bra-parceiros-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .bra-parceiros-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Modais Rede de Parceiros */
.bra-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(12, 74, 110, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.bra-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.bra-modal-container {
    position: relative;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
}

.bra-modal {
    position: relative;
    display: none;
    background: white;
    border-radius: 24px;
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 24px 60px rgba(12, 74, 110, 0.25);
    overflow-y: auto;
    max-height: 90vh;
}

.bra-modal.active {
    display: block;
}

.bra-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--bra-cinza);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.bra-modal-close:hover {
    color: var(--bra-base-escuro);
    background: rgba(12, 74, 110, 0.06);
}

.bra-modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 16px;
    margin-bottom: 1.25rem;
}

.bra-modal-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.bra-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bra-base-escuro);
    margin: 0 0 0.75rem;
}

.bra-modal-desc {
    font-size: 0.95rem;
    color: var(--bra-cinza);
    line-height: 1.65;
    margin: 0 0 1.25rem;
}

.bra-modal-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.bra-modal-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--bra-cinza-escuro);
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

.bra-modal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bra-base-teal);
    font-weight: 700;
}

.bra-modal .bra-btn-primary {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
}

/* Prova Social */
.bra-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 3rem;
    text-align: center;
    padding: 2rem 0;
}

.bra-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.bra-proof-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bra-verde);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.bra-proof-label {
    font-size: 0.95rem;
    color: var(--bra-cinza);
    font-weight: 500;
}

@media (max-width: 600px) {
    .bra-proof {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Steps com linha conectora */
.bra-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.bra-steps::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(25, 57, 94, 0.3) 15%, rgba(76, 175, 80, 0.4) 50%, rgba(25, 57, 94, 0.3) 85%, transparent);
    z-index: 0;
}

.bra-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.bra-step-num {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bra-base-escuro), var(--bra-verde));
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 14px rgba(76, 175, 80, 0.35);
}

.bra-step-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1D3560;
    margin-bottom: 0.6rem;
}

.bra-step-desc {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .bra-steps {
        grid-template-columns: 1fr 1fr;
    }
    .bra-steps::before {
        display: none;
    }
}

@media (max-width: 500px) {
    .bra-steps {
        grid-template-columns: 1fr;
    }
}

/* Planos – card destacado */
.bra-card.bra-card-highlight {
    border-color: rgba(24, 126, 224, 0.25);
    box-shadow: 0 8px 32px rgba(24, 126, 224, 0.15), 0 0 0 1px rgba(24, 126, 224, 0.1) inset;
}

.bra-card.bra-card-highlight:hover {
    box-shadow: 0 24px 48px -8px rgba(24, 126, 224, 0.2), 0 0 0 1px rgba(24, 126, 224, 0.15) inset;
}

/* Cards de Preços – Plano Individual e Familiar */
.bra-planos-section-title {
    max-width: 55ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.bra-planos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.bra-preco-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 8px rgba(25, 57, 94, 0.04), 0 12px 32px rgba(25, 57, 94, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(25, 57, 94, 0.06);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.bra-preco-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.bra-preco-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(25, 57, 94, 0.08), 0 24px 48px rgba(25, 57, 94, 0.1);
}

.bra-preco-card--individual::before {
    background: linear-gradient(90deg, #004085, #187ee0);
}

.bra-preco-card--familiar::before {
    background: linear-gradient(90deg, #2E7D32, #4CAF50);
}

.bra-preco-card--personalizado::before {
    background: linear-gradient(90deg, #004085, #187ee0);
}

.bra-preco-card__badge {
    position: absolute;
    top: 8px;
    right: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
    border-radius: 100px;
    box-shadow: 0 2px 12px rgba(76, 175, 80, 0.35);
}

.bra-preco-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1D3560;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.bra-preco-card__title--verde {
    color: #2E7D32;
}

.bra-preco-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(25, 57, 94, 0.08);
}

.bra-preco-card__valor {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1D3560;
    letter-spacing: -0.03em;
}

.bra-preco-card__valor--verde {
    color: #2E7D32;
}

.bra-preco-card__valor--texto {
    font-size: 1.5rem;
}

.bra-preco-card__periodo {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6B7280;
}

.bra-preco-card__features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    text-align: left;
    flex: 1;
    width: 100%;
}

.bra-preco-card__features li {
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.bra-preco-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.05em;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    background: #4CAF50;
    border-radius: 50%;
}

.bra-preco-card--individual .bra-preco-card__features li::before {
    background: #004085;
}

.bra-preco-card--personalizado .bra-preco-card__features li::before {
    background: #004085;
}

.bra-preco-card__cta {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

.bra-preco-card__cta--azul {
    background: linear-gradient(135deg, #004085, #187ee0);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 64, 133, 0.3);
}

.bra-preco-card__cta--azul:hover {
    background: linear-gradient(135deg, #003366, #0d6efd);
    box-shadow: 0 6px 20px rgba(0, 64, 133, 0.4);
}

.bra-preco-card__cta--verde {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(76, 175, 80, 0.35);
}

.bra-preco-card__cta--verde:hover {
    background: linear-gradient(135deg, #1B5E20, #388E3C);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.45);
}

@media (max-width: 992px) {
    .bra-planos-container {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Planos — grupos (funeral, telemedicina, combos) em duas colunas */
.bra-planos-grupo {
    margin-top: 3rem;
}

.bra-planos-grupo:first-of-type {
    margin-top: 2rem;
}

.bra-planos-grupo-titulo {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bra-base-escuro);
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.bra-planos-container--duo {
    grid-template-columns: repeat(2, 1fr);
    max-width: 920px;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .bra-planos-container--duo {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

/* Planos — toggle Individual/Familiar + 3 cards (trio) */
.bra-planos-lead {
    font-size: 1rem;
    color: #4b5563;
    margin: -0.25rem auto 1.75rem;
    max-width: 42rem;
}

.bra-planos-modalidades {
    max-width: 1120px;
    margin: 0 auto;
}

.bra-planos-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    padding: 0.35rem;
    background: rgba(25, 57, 94, 0.08);
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.bra-planos-toggle__btn {
    border: none;
    background: transparent;
    padding: 0.65rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1d3560;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.bra-planos-toggle__btn--active {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(25, 57, 94, 0.12);
    color: #004085;
}

.bra-planos-modalidades--familiar .bra-planos-toggle {
    background: rgba(46, 125, 50, 0.12);
}

.bra-planos-modalidades--familiar .bra-planos-toggle__btn--active {
    color: #2e7d32;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

.bra-planos-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.bra-plano-trio-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    padding-top: calc(2rem + 4px);
    border: 1px solid rgba(25, 57, 94, 0.08);
    box-shadow: 0 4px 20px rgba(25, 57, 94, 0.06);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.bra-plano-trio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bra-base-azul), #187ee0, var(--bra-verde));
    border-radius: 24px 24px 0 0;
}

.bra-plano-trio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(25, 57, 94, 0.1);
}

.bra-plano-trio-card--popular {
    border: 2px solid rgba(0, 64, 133, 0.35);
    box-shadow: 0 8px 28px rgba(0, 64, 133, 0.12);
    padding-top: calc(2.5rem + 4px);
}

.bra-plano-trio-card--popular::before {
    height: 5px;
    background: linear-gradient(90deg, var(--bra-base-azul) 0%, var(--bra-dourado) 50%, var(--bra-verde) 100%);
}

.bra-plano-trio-card__ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(135deg, #004085, #187ee0);
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
}

.bra-plano-trio-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1d3560;
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.bra-plano-trio-card--popular .bra-plano-trio-card__title {
    margin-top: 0.35rem;
}

.bra-plano-trio-card__desc {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0 0 0.75rem;
    line-height: 1.45;
}

.bra-plano-trio-card__badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.65rem;
    border-radius: 100px;
    margin: 0 auto 1rem;
}

.bra-plano-trio-card__badge--individual {
    background: rgba(0, 64, 133, 0.1);
    color: #004085;
}

.bra-plano-trio-card__badge--familiar {
    background: rgba(46, 125, 50, 0.12);
    color: #2e7d32;
}

.bra-planos-modalidades--individual .bra-plano-trio-card__badge--familiar {
    display: none !important;
}

.bra-planos-modalidades--familiar .bra-plano-trio-card__badge--individual {
    display: none !important;
}

.bra-planos-modalidades--individual .bra-plano-trio-pane--familiar {
    display: none !important;
}

.bra-planos-modalidades--familiar .bra-plano-trio-pane--individual {
    display: none !important;
}

.bra-plano-trio-card__price {
    margin-bottom: 0.25rem;
}

.bra-plano-trio-card__valor {
    font-size: 2.25rem;
    font-weight: 800;
    color: #004085;
    letter-spacing: -0.03em;
}

.bra-plano-trio-card__valor--verde {
    color: #2e7d32;
}

.bra-plano-trio-card__periodo {
    font-size: 0.9rem;
    font-weight: 500;
    color: #9ca3af;
    margin-left: 0.15rem;
}

.bra-plano-trio-card__legenda {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(25, 57, 94, 0.08);
}

.bra-plano-trio-card__assist {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1d3560;
    margin: 0 0 0.65rem;
    text-align: left;
    width: 100%;
}

.bra-plano-trio-features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    text-align: left;
    flex: 1;
    width: 100%;
}

.bra-plano-trio-features li {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.55;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.bra-plano-trio-features li::before {
    content: '\2665';
    position: absolute;
    left: 0;
    top: 0.05em;
    font-size: 0.65rem;
    color: #187ee0;
    line-height: 1.4;
}

.bra-planos-modalidades--familiar .bra-plano-trio-features li::before {
    color: #4caf50;
}

.bra-planos-modalidades--familiar .bra-plano-trio-card::before {
    background: linear-gradient(90deg, #2e7d32, #4caf50, #81c784);
}

.bra-planos-modalidades--familiar .bra-plano-trio-card--popular::before {
    background: linear-gradient(90deg, #2e7d32 0%, var(--bra-dourado) 45%, #4caf50 100%);
}

.bra-plano-trio-card__combo-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bra-base-escuro);
    margin: 0 0 0.5rem;
}

.bra-plano-trio-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    width: 100%;
}

.bra-plano-trio-card__cta {
    display: block;
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bra-plano-trio-card__cta--primary {
    background: linear-gradient(135deg, #004085, #187ee0);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 64, 133, 0.25);
}

.bra-plano-trio-card__cta--primary:hover {
    box-shadow: 0 6px 18px rgba(0, 64, 133, 0.35);
    filter: brightness(1.03);
}

.bra-planos-modalidades--familiar .bra-plano-trio-card__cta--primary {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
}

.bra-plano-trio-card__cta--ghost {
    background: transparent;
    color: #004085;
    border: 2px solid rgba(0, 64, 133, 0.25);
}

.bra-plano-trio-card__cta--ghost:hover {
    border-color: #004085;
    background: rgba(0, 64, 133, 0.04);
}

.bra-planos-modalidades--familiar .bra-plano-trio-card__cta--ghost {
    color: #2e7d32;
    border-color: rgba(46, 125, 50, 0.35);
}

.bra-planos-modalidades--familiar .bra-plano-trio-card__cta--ghost:hover {
    background: rgba(46, 125, 50, 0.06);
    border-color: #2e7d32;
}

.bra-planos-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    margin: 2.5rem 0 0;
    padding: 0;
    font-size: 0.8125rem;
    color: #6b7280;
}

.bra-planos-trust li {
    position: relative;
    padding-left: 0.85rem;
}

.bra-planos-trust li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #187ee0;
}

@media (max-width: 992px) {
    .bra-planos-trio {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.bra-preco-card__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #004085;
    margin: 0 0 0.5rem;
}

.bra-preco-card--familiar .bra-preco-card__eyebrow {
    color: #2E7D32;
}

.bra-preco-card__subtitle {
    font-size: 0.9375rem;
    color: #4B5563;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.bra-preco-card__combo-name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--bra-base-escuro);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.bra-preco-card__price--compact {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bra-preco-card__legenda {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6B7280;
    margin: 0 0 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(25, 57, 94, 0.08);
    width: 100%;
    text-align: center;
}

/* Planos – cards completos */
.bra-planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.bra-plano-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(12, 74, 110, 0.08);
    box-shadow: 0 4px 6px -1px rgba(12, 74, 110, 0.04), 0 10px 20px -4px rgba(12, 74, 110, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bra-plano-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -8px rgba(12, 74, 110, 0.12), 0 12px 24px -6px rgba(12, 74, 110, 0.08);
    border-color: rgba(24, 126, 224, 0.15);
}

.bra-plano-card--highlight {
    border-color: rgba(24, 126, 224, 0.25);
    box-shadow: 0 8px 32px rgba(24, 126, 224, 0.12), 0 0 0 1px rgba(24, 126, 224, 0.08) inset;
}

.bra-plano-card--highlight:hover {
    box-shadow: 0 24px 48px -8px rgba(24, 126, 224, 0.2), 0 0 0 1px rgba(24, 126, 224, 0.12) inset;
}

.bra-plano-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: white;
    background: linear-gradient(135deg, var(--bra-base-azul), var(--bra-base-teal));
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(24, 126, 224, 0.35);
}

.bra-plano-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(12, 74, 110, 0.06);
}

.bra-plano-card--highlight .bra-plano-header {
    border-bottom-color: rgba(24, 126, 224, 0.12);
}

.bra-plano-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bra-base-escuro);
    margin: 0 0 0.4rem;
    letter-spacing: -0.02em;
}

.bra-plano-desc {
    font-size: 0.9rem;
    color: var(--bra-cinza);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.bra-plano-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.bra-plano-valor {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bra-base-escuro);
    letter-spacing: -0.03em;
}

.bra-plano-card--highlight .bra-plano-valor {
    color: var(--bra-base-azul);
}

.bra-plano-periodo {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bra-cinza);
    margin-left: 0.15rem;
}

.bra-plano-features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    flex: 1;
}

.bra-plano-features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--bra-cinza-escuro);
    line-height: 1.6;
    margin-bottom: 0.65rem;
}

.bra-plano-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bra-base-teal);
    font-weight: 700;
    font-size: 0.85rem;
}

.bra-plano-card--highlight .bra-plano-features li::before {
    color: var(--bra-base-azul);
}

.bra-plano-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
}

@media (max-width: 900px) {
    .bra-planos-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .bra-planos-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 640px;
        margin: 0 auto;
    }
}

/* Planos */
.bra-btn-plan {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--bra-base-escuro);
    border: 2px solid rgba(12, 74, 110, 0.2);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.bra-btn-plan:hover {
    border-color: var(--bra-base-azul);
    color: var(--bra-base-azul);
}

/* FAQ refinado */
.bra-faq-item {
    border-bottom: 1px solid rgba(12, 74, 110, 0.08);
}

.bra-faq-item:first-child {
    border-top: 1px solid rgba(12, 74, 110, 0.06);
}

.bra-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.35rem 0;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bra-base-escuro);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.bra-faq-trigger::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--bra-base-azul);
    transition: transform 0.25s;
}

.bra-faq-item.open .bra-faq-trigger::after {
    transform: rotate(45deg);
}

.bra-faq-trigger:hover {
    color: var(--bra-base-azul);
}

.bra-faq-content-inner {
    padding: 0 0 1.35rem;
    color: var(--bra-cinza);
    line-height: 1.75;
    font-size: 0.95rem;
}

.bra-faq-item:not(.open) .bra-faq-content-inner {
    display: none;
}

/* CTA Final */
.bra-cta {
    background: linear-gradient(135deg, var(--bra-base-escuro) 0%, var(--bra-base-azul) 50%, var(--bra-verde) 100%);
    padding: 5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bra-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.bra-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    position: relative;
}

.bra-cta-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.95);
    margin: 0 auto 2rem;
    line-height: 1.7;
    max-width: 48ch;
    position: relative;
}

/* Footer */
.bra-footer {
    background: var(--bra-base-escuro);
    color: rgba(255, 255, 255, 0.85);
    padding: 0;
}

.bra-footer__inner,
.bra-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

.bra-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem 2rem;
    align-items: start;
}

.bra-footer__brand {
    max-width: 280px;
}

.bra-footer__logo-text {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.bra-footer__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    margin: 0;
}

.bra-footer__links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.bra-footer__links > div {
    min-width: 140px;
}

.bra-footer__title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem;
}

.bra-footer__link {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.bra-footer__link:hover {
    color: white;
}

.bra-footer__bottom,
.bra-footer-bottom {
    grid-column: 1 / -1;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 0;
}

.bra-footer__copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: center;
}

.bra-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.bra-footer-brand { max-width: 280px; }

.bra-footer-logo-img {
    height: 2rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.bra-footer h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.bra-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
}

.bra-footer a:hover {
    color: white;
}

@media (max-width: 768px) {
    .bra-footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.25rem 1.5rem;
    }
    .bra-footer__links {
        flex-direction: column;
        gap: 1.5rem;
    }
    .bra-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========== PÁGINA FORMULÁRIO ========== */
.bra-form-page-body {
    font-family: 'Poppins', system-ui, sans-serif;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Header na página formulário: fundo claro desde o topo */
.bra-form-page-body .bra-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(12, 74, 110, 0.08);
}
.bra-form-page-body .bra-header .bra-logo-img { filter: none; }
.bra-form-page-body .bra-header .bra-nav-link { color: var(--bra-base-escuro); }
.bra-form-page-body .bra-header .bra-nav-link:hover { color: var(--bra-base-azul); background: rgba(24, 126, 224, 0.08); }
.bra-form-page-body .bra-header .bra-nav-divider { background: rgba(12, 74, 110, 0.2); }
.bra-form-page-body .bra-header .bra-nav-toggle span { background: var(--bra-base-escuro); }

.bra-form-page {
    padding-top: 5.5rem;
    min-height: 100vh;
}

.bra-form-section {
    padding: 3rem 0 4rem;
}

.bra-form-header {
    margin-bottom: 2rem;
}

.bra-form-header .bra-section-subtitle {
    margin-bottom: 0;
}

.bra-form-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 560px;
    margin: 0 auto 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(20, 175, 190, 0.12);
    border: 1px solid rgba(20, 175, 190, 0.25);
    border-radius: 12px;
    color: var(--bra-base-escuro);
    font-weight: 500;
    font-size: 0.95rem;
}

.bra-form-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--bra-base-teal);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

.bra-form-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.bra-form-tab {
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bra-base-escuro);
    background: white;
    border: 2px solid rgba(12, 74, 110, 0.15);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(12, 74, 110, 0.04);
}

.bra-form-tab:hover {
    border-color: var(--bra-base-azul);
    color: var(--bra-base-azul);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(24, 126, 224, 0.12);
}

.bra-form-tab.active {
    background: linear-gradient(135deg, var(--bra-base-escuro), var(--bra-base-azul));
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(24, 126, 224, 0.3);
}

.bra-form-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.bra-form-block {
    background: white;
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(12, 74, 110, 0.08);
    box-shadow: 0 4px 6px -1px rgba(12, 74, 110, 0.04), 0 10px 24px -4px rgba(12, 74, 110, 0.06);
    transition: all 0.3s ease;
}

.bra-form-block:hover {
    box-shadow: 0 12px 32px -8px rgba(12, 74, 110, 0.1);
}

.bra-form-block--hidden {
    display: none;
}

.bra-form-block-inner {
    padding: 2.5rem;
}

.bra-form-block-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bra-base-escuro);
    margin: 0 0 0.4rem;
    padding-bottom: 0;
}

.bra-form-block-desc {
    font-size: 0.9rem;
    color: var(--bra-cinza);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(20, 175, 190, 0.2);
}

.bra-form-subsection {
    margin-bottom: 1.75rem;
}

.bra-form-subsection-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bra-base-azul);
    margin: 0 0 1rem;
}

.bra-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bra-form-group--flex2 {
    grid-column: span 1;
}

@media (max-width: 560px) {
    .bra-form-row {
        grid-template-columns: 1fr;
    }
}

.bra-form-textarea {
    min-height: 5rem;
    resize: vertical;
}

.bra-form-select {
    cursor: pointer;
    appearance: auto;
}

.bra-form-block-inner--wide {
    max-width: 100%;
}

.bra-form .bra-form-group {
    margin-bottom: 1.25rem;
}

.bra-form .bra-form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.bra-form-label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--bra-cinza-escuro);
    margin-bottom: 0.5rem;
}

.bra-form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid rgba(12, 74, 110, 0.2);
    border-radius: 10px;
    color: var(--bra-base-escuro);
    background: white;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.bra-form-input::placeholder {
    color: var(--bra-cinza);
}

.bra-form-input:focus {
    outline: none;
    border-color: var(--bra-base-azul);
    box-shadow: 0 0 0 3px rgba(24, 126, 224, 0.15);
}

.bra-form-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background: linear-gradient(135deg, var(--bra-base-escuro), var(--bra-base-azul));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bra-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24, 126, 224, 0.35);
}

.bra-form-footer-link {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.bra-form-footer-link a {
    color: var(--bra-base-azul);
    text-decoration: none;
    font-weight: 500;
}

.bra-form-footer-link a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .bra-form-block-inner {
        padding: 1.75rem 1.25rem;
    }
    .bra-form-tab {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
}
