/* ============================================
   1. GLOBAL - IMPORTS & VARIÁVEIS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* Cores principais */
    --vermelho: #D31B20;
    --azul: #084F98;
    
    /* Cores neutras */
    --branco: #ffffff;
    --texto-escuro: #0c1830;
    --texto-cinza: #4b5563;
    --cinza-claro: #f8fafc;
    --cinza-borda: #e5e7eb;
    
    /* Sombras padrão */
    --shadow-sm: 0 10px 22px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 24px 55px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 30px 70px rgba(15, 23, 42, 0.15);
    
    /* Transições padrão */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.25s ease;
    --transition-slow: all 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    zoom: 82.5%;
}

body:not(.page-loaded),
body.is-page-loading {
    overflow: hidden;
}

body::before,
body::after {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

body::before {
    content: "";
    inset: 0;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(2px);
}

body::after {
    content: "";
    top: 50%;
    left: 50%;
    z-index: 9999;
    width: 62px;
    height: 62px;
    margin: -31px 0 0 -31px;
    border-radius: 50%;
    border: 5px solid rgba(211, 27, 32, 0.18);
    border-top-color: var(--vermelho);
    background: transparent;
    animation: siteLoaderSpin 0.9s linear infinite;
}

body:not(.page-loaded)::before,
body:not(.page-loaded)::after,
body.is-page-loading::before,
body.is-page-loading::after {
    opacity: 1;
    visibility: visible;
}

body:not(.page-loaded)::before,
body.is-page-loading::before {
    pointer-events: auto;
}

@keyframes siteLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    body::after {
        animation-duration: 1.8s;
    }
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: var(--branco);
    text-decoration: none;
    font-size: 1.35rem;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.34);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-whatsapp:hover {
    background: #1fb85a;
    color: var(--branco);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.42);
}

.footer-back-top {
    position: fixed;
    right: 80px;
    bottom: 24px;
    z-index: 1099;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid rgba(8, 79, 152, 0.16);
    border-radius: 999px;
    background: var(--branco);
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(8, 79, 152, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.footer-back-top:hover {
    background: var(--azul);
    border-color: var(--azul);
    color: var(--branco);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        font-size: 1.65rem;
    }

    .footer-back-top {
        right: 82px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        padding: 0;
        border-radius: 50%;
        font-size: 1rem;
    }

    .footer-back-top span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }
}

.nav-link.show, .nav-link:focus  {
    color: var(--branco) !important;
}


/* ============================================
   2. COMPONENTES REUTILIZÁVEIS
   ============================================ */

/* --- BOTÕES --- */
.btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-primary {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--vermelho), #c90010);
    color: var(--branco);
    box-shadow: 0 12px 26px rgba(227, 6, 19, 0.28);
}

.btn-primary:hover {
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(227, 6, 19, 0.38);
}

.btn-secondary {
    padding: 10px 26px;
    background: var(--branco);
    color: var(--azul);
    border: 2px solid var(--azul);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    background: var(--azul);
    color: var(--branco);
    transform: translateY(-3px);
}

.btn-outline {
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 999px;
    padding: 6px 10px;
    background: #eef4ff;
    color: var(--azul);
    font-size: 0.72rem;
    font-weight: 800;
    transition: var(--transition-base);
}

.btn-outline:hover {
    background: var(--azul);
    color: var(--branco);
}

/* --- CARDS --- */
.card-base {
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    border-radius: 22px;
    padding: 30px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.card-base:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--vermelho);
}

/* --- TAGS E BADGES --- */
.tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.10);
    color: #e30613;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* --- SEÇÕES PADRÃO --- */
.section-base {
    padding: 90px 0;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.section-heading h2 {
    color: var(--texto-escuro);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 14px;
}

.section-heading p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- HOME GPTW --- */
.home-gptw-section {
    position: relative;
    min-height: 620px;
    padding: 92px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(135deg, rgba(8, 79, 152, 0.95), rgba(8, 79, 152, 0.78)),
        url("../assets/patern site.png");
    background-size: cover;
    background-position: center right;
}

.home-gptw-section::before {
    content: "";
    position: absolute;
    inset: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 38px;
    pointer-events: none;
    z-index: -1;
}

.home-gptw-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 48%, rgba(255, 255, 255, 0.24), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(1, 35, 78, 0.24));
    pointer-events: none;
    z-index: -1;
}

.home-gptw-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: 54px;
    align-items: center;
}

.home-gptw-copy {
    max-width: 690px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-gptw-logo {
    width: min(270px, 62vw);
    height: auto;
    margin-bottom: 34px;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.18));
}

.home-gptw-tag {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--branco);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    backdrop-filter: blur(10px);
}

.home-gptw-copy h2 {
    color: var(--branco);
    font-size: clamp(2.45rem, 5vw, 4.35rem);
    line-height: 1.02;
    font-weight: 800;
    margin: 0 0 22px;
    max-width: 680px;
    text-wrap: balance;
}

.home-gptw-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.06rem;
    line-height: 1.74;
    font-weight: 600;
    margin: 0;
}

.home-gptw-seal-panel {
    align-self: center;
    min-height: 360px;
    padding: 42px 34px;
    border-radius: 28px;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.92));
    color: var(--branco);
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: center;
    justify-items: center;
    border: 1px solid rgba(255, 255, 255, 0.64);
    box-shadow: 0 28px 70px rgba(0, 26, 64, 0.26);
    backdrop-filter: blur(14px);
}

.home-gptw-times {
    color: var(--vermelho);
    transform: rotate(-4deg);
    text-align: center;
    order: 2;
}

.home-gptw-times span,
.home-gptw-times strong {
    display: block;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-weight: 700;
    line-height: 0.86;
}

.home-gptw-times span {
    font-size: clamp(2.4rem, 3.4vw, 3.7rem);
}

.home-gptw-times strong {
    font-size: clamp(3.2rem, 4.7vw, 5.2rem);
}

.home-gptw-seal-panel img {
    width: min(190px, 100%);
    height: auto;
    filter: drop-shadow(0 18px 20px rgba(8, 79, 152, 0.20));
}

@media (max-width: 1199px) {
    .home-gptw-content {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
        gap: 34px;
    }

    .home-gptw-seal-panel {
        padding-inline: 28px;
    }
}

@media (max-width: 991px) {
    .home-gptw-section {
        min-height: auto;
        padding: 76px 0;
    }

    .home-gptw-content {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .home-gptw-copy {
        justify-items: center;
        align-items: center;
        text-align: center;
        margin-inline: auto;
    }

    .home-gptw-logo {
        width: min(240px, 70vw);
        margin-bottom: 28px;
    }

    .home-gptw-copy p {
        margin-inline: auto;
    }

    .home-gptw-seal-panel {
        min-height: auto;
        width: min(430px, 100%);
        justify-self: center;
        border-radius: 26px;
    }
}

@media (max-width: 576px) {
    .home-gptw-section {
        padding: 62px 0;
    }

    .home-gptw-section::before {
        inset: 16px;
        border-radius: 24px;
    }

    .home-gptw-content {
        gap: 24px;
    }

    .home-gptw-logo {
        width: min(205px, 72vw);
        margin-bottom: 24px;
    }

    .home-gptw-copy h2 {
        font-size: 2.22rem;
    }

    .home-gptw-copy p {
        font-size: 0.94rem;
    }

    .home-gptw-seal-panel {
        padding: 28px 24px;
        gap: 18px;
    }

    .home-gptw-seal-panel img {
        width: 150px;
    }
}










/* ============================================
   6. QUEM SOMOS
   ============================================ */

.about-main {
    overflow: hidden;
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 80px;
    color: var(--branco);
    text-align: center;
    isolation: isolate;
}

.about-hero-bg {
    position: absolute;
    inset: -8% 0;
    background-image: url("../assets/hero quem somos.webp");
    background-size: cover;
    background-position: center 32%;
    filter: blur(1.5px);
    background-repeat: no-repeat;
    will-change: transform; /* otimização de GPU */
    z-index: -2;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.106),
            rgba(25, 25, 25, 0.694)
        );
    pointer-events: none;
    z-index: -1;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.about-hero h1 {
    max-width: 780px;
    margin: 16px auto;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
}

.about-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* --- SEÇÕES --- */
.about-section {
    padding: 90px 0;
}

.about-section.light {
    background: var(--cinza-claro);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--azul);
}

.about-text p {
    color: var(--texto-cinza);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

/* --- MISSÃO / VISÃO --- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.mv-card {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid var(--cinza-borda);
    background: var(--branco);
    transition: var(--transition-base);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--vermelho);
}

.mv-card h3 {
    color: var(--vermelho);
    font-weight: 900;
    margin-bottom: 12px;
}

/* --- VALORES --- */
.values-section {
    background: linear-gradient(180deg, var(--branco), var(--cinza-claro));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.value-card {
    position: relative;
    padding: 30px 26px;
    border-radius: 24px;
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    overflow: hidden;
    transition: var(--transition-slow);
}

.value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227,6,19,0.08), rgba(27,117,187,0.08));
    opacity: 0;
    transition: 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(27,117,187,0.12);
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    transition: 0.3s ease;
}

.value-card h4 {
    color: var(--azul);
    font-weight: 900;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.value-card:hover .value-icon {
    background: var(--vermelho);
    color: var(--branco);
    transform: scale(1.08);
}

.value-card.highlight {
    background: linear-gradient(135deg, var(--azul), #084f98);
    color: var(--branco);
    border: none;
}

.value-card.highlight h4,
.value-card.highlight p {
    color: var(--branco);
}

.value-card.highlight .value-icon {
    background: rgba(255,255,255,0.2);
    color: var(--branco);
}

.value-card-wide {
    margin-top: 26px;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.value-wide-content {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 520px;
}

.value-wide-content .value-icon {
    flex-shrink: 0;
}

.value-wide-visual {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    max-width: 520px;
}

.value-wide-visual span {
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--branco);
    font-weight: 800;
    backdrop-filter: blur(8px);
    transition: var(--transition-base);
}

.value-wide-visual span:hover {
    background: var(--branco);
    color: var(--azul);
    transform: translateY(-3px);
}

/* --- CTA --- */
.about-cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--azul), #084f98);
    border-radius: 28px;
    padding: 40px 50px;
    color: var(--branco);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-weight: 900;
    margin-bottom: 10px;
}

.cta-text p {
    opacity: 0.9;
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .value-card-wide {
        flex-direction: column;
        align-items: flex-start;
    }

    .value-wide-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .value-wide-visual {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        text-align: center;
        justify-content: center;
    }
}



/* ============================================
   7. REDE DE LOJAS
   ============================================ */

.stores-main {
    background: var(--cinza-claro);
    overflow: hidden;
}
/* ============================================
   HERO LOJAS
   ============================================ */

.stores-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 80px;
    color: var(--branco);
    text-align: center;
    isolation: isolate;
}

/* BACKGROUND ANIMADO */
.stores-hero::before {
    content: "";
    position: absolute;
    inset: -8% 0;
    background-image: url("../assets/hero rede de lojas.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* OVERLAY OPCIONAL */
.stores-hero::after {
    content: "";
    position: absolute;
    inset: 0;
   

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.106),
            rgba(25, 25, 25, 0.694)
        );

    z-index: -1;
}

/* CONTEÚDO */
.stores-hero h1 {
    max-width: 780px;
    margin: 16px auto;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
}

.stores-hero p {
    opacity: 0.9;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* ANIMAÇÃO LOOP */
@keyframes heroMapFloat {

    0% {
        transform: translateY(-40px) ;
    }

    50% {
        transform: translateY(40px);
    }

    100% {
        transform: translateY(-40px);
    }
}

/* --- BUSCA --- */
.stores-search-panel {
    max-width: 840px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.stores-search-box {
    min-width: 0;
    background: var(--branco);
    border-radius: 999px;
    padding: 6px 8px 6px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.stores-search-box i {
    color: var(--azul);
    font-size: 1rem;
}

.stores-search-box input {
    width: 100%;
    min-width: 0;
    border: none;
    border-radius: 999px;
    outline: none;
    padding: 14px 6px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1f2937;
}

.near-me-btn {
    min-width: 148px;
    height: 56px;
    border: none;
    border-radius: 999px;
    padding: 0 18px;
    background: var(--azul);
    color: var(--branco);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    white-space: nowrap;
    box-shadow: 0 18px 40px rgba(8, 79, 152, 0.24);
    transition: var(--transition-base);
}

.near-me-btn:hover {
    background: var(--branco);
    color: var(--azul);
    transform: translateY(-2px);
}

.near-me-btn:disabled {
    cursor: wait;
    opacity: 0.84;
    transform: none;
}

.near-me-btn:disabled:hover {
    background: var(--azul);
    color: var(--branco);
}

/* --- LAYOUT --- */
.stores-content {
    padding: 60px 0;
}

.stores-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.stores-info {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: #64748b;
}

.stores-info strong {
    color: var(--azul);
}

/* --- LISTA DE LOJAS --- */
.stores-list {
    display: grid;
    gap: 12px;
}

.store-card {
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    border-radius: 16px;
    padding: 16px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.store-card:hover {
    transform: translateY(-3px);
    border-color: var(--vermelho);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.store-card h3 {
    color: var(--azul);
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.store-location {
    color: var(--vermelho);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.store-address {
    color: #374151;
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 10px;
    cursor: pointer;
}

.store-address:hover {
    color: var(--azul);
    text-decoration: underline;
}

.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.store-actions a,
.store-actions button {
    border: none;
    border-radius: 999px;
    padding: 6px 10px;
    background: #eef4ff;
    color: var(--azul);
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.store-actions a:hover,
.store-actions button:hover {
    background: var(--azul);
    color: var(--branco);
}

/* --- MAPA --- */
.stores-map-area {
    position: sticky;
    top: 140px;
}

.map-card {
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    background: var(--branco);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.map-wrapper iframe {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: calc(100% + 70px);
    border: 0;
}

.split-image {
    position: relative;
    max-height: 480px;
}

.image-overlay-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c7da0;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.image-overlay-btn:hover {
    background: #1f5e7a;
}

/* --- SEDE --- */
.headquarters-card {
    margin-top: 18px;
    padding: 24px;
    border-radius: 22px;
    background: var(--azul);
    color: var(--branco);
    box-shadow: 0 16px 34px rgba(8, 79, 152, 0.22);
}

.headquarters-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.headquarters-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.headquarters-card a {
    color: var(--branco);
    font-weight: 800;
    font-size: 0.85rem;
}

.headquarters-card a:hover {
    text-decoration: underline;
}

.headquarters-card .section-tag {
    background: rgba(255,255,255,0.16);
    color: var(--branco);
}

/* --- PAGINAÇÃO --- */
.stores-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    margin: 28px auto 0;
    padding: 8px;
    border: 1px solid rgba(8, 79, 152, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.page-btn {
    min-width: 38px;
    height: 38px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: var(--azul);
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-base);
}

.page-btn:hover {
    background: rgba(8, 79, 152, 0.08);
    border-color: rgba(8, 79, 152, 0.14);
}

.page-btn.active {
    background: var(--azul);
    color: var(--branco);
    border-color: var(--azul);
    box-shadow: 0 10px 20px rgba(8, 79, 152, 0.24);
}

.page-btn-nav {
    min-width: 116px;
    padding: 0 14px;
    background: #eef4ff;
}

.page-ellipsis {
    min-width: 28px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 900;
    text-align: center;
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: transparent;
    box-shadow: none;
}

.page-btn:disabled:hover {
    border-color: transparent;
}

/* --- EMPTY STATE --- */
.empty-state {
    background: var(--branco);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    border: 1px dashed #cbd5e1;
}

/* ============================================
   SCROLL REVEAL GERAL
   ============================================ */

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
    will-change: opacity, transform, filter;
}

.reveal {
    transform: translateY(45px);
    filter: blur(8px);
}

.reveal-left {
    transform: translateX(-55px);
    filter: blur(8px);
}

.reveal-right {
    transform: translateX(55px);
    filter: blur(8px);
}

.reveal-scale {
    transform: scale(0.94);
    filter: blur(8px);
}

.reveal.show,
.reveal-left.show,
.reveal-right.show,
.reveal-scale.show {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

/* Header carregado dinamicamente */
.header-reveal {
    opacity: 0;
    transform: translateY(-24px);
    filter: blur(8px);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.header-reveal.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ============================================
   HERO E HEADER INICIAM INVISÍVEIS
   ============================================ */



/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .stores-layout {
        grid-template-columns: 1fr;
    }

    .stores-map-area {
        position: static;
    }

    .map-card {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .stores-hero {
        padding: 80px 0 60px;
    }

    .stores-search-panel {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .stores-search-box {
        flex-direction: row;
        align-items: stretch;
        border-radius: 18px;
        padding: 14px;
    }

    .near-me-btn {
        width: 100%;
        min-width: 0;
        height: 50px;
    }

    .stores-pagination {
        width: 100%;
        gap: 6px;
        border-radius: 16px;
    }

    .page-btn {
        min-width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .page-btn-nav {
        min-width: 44px;
        padding: 0 12px;
    }

    .page-btn-nav span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .store-card {
        padding: 14px;
    }
}

/* ============================================
   depoimentos
   ============================================ */

    .testimonial-section {
    background: #f8fafc;
}

/* TEXTO DO DEPOIMENTO */
.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #334155;
    margin: 20px 0;
    font-style: italic;
}

/* AUTOR */
.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #0f172a;
}

.testimonial-author span {
    font-size: 14px;
    color: #64748b;
}

/* CARD VISUAL */
.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-width: 280px;
}

.testimonial-card img {
    width: 100%;
    border-radius: 12px;
}

/* ============================================
   8. SEJA ASSOCIADO / CONTATO
   ============================================ */

.associate-main {
    overflow: hidden;
    background: var(--branco);
}

.associate-hero {
    position: relative;
    min-height: 95vh;
    padding: 150px 0 95px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
}
.highlight {
    color: var(--vermelho);
}

.highlight-blue {
    color: var(--azul);
}

.associate-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.206) 46%,
            rgba(255, 255, 255, 0) 76%,
            rgba(255, 255, 255, 0) 100%
        ),
        url("../assets/img/hero seja-associado.webp");
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: -2;
}

.associate-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    pointer-events: none;
    z-index: -1;
}

.associate-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
    align-items: center;
}

.associate-hero-content {
    max-width: 690px;
}

.associate-hero h1 {
    color: var(--azul);
    font-size: 2.8rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0;
    margin: 18px 0 22px;
}

.associate-hero p {
    max-width: 620px;
    color: var(--texto-cinza);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 30px;
}

.associate-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.associate-hero-actions a {
    gap: 10px;
}

.associate-video-section {
    position: relative;
    padding: 112px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 46%, #eef4ff 100%);
    overflow: hidden;
    isolation: isolate;
}

.associate-video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0 58%, rgba(8, 79, 152, 0.07) 58% 100%);
    pointer-events: none;
    z-index: -1;
}

.associate-video-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 0.96fr);
    gap: 64px;
    align-items: center;
}

.associate-video-grid-text {
    grid-template-columns: minmax(0, 900px);
    justify-content: center;
}

.associate-video-copy {
    max-width: 680px;
}

.associate-video-copy .tag {
    background: rgba(8, 79, 152, 0.10);
    color: var(--azul);
}

.associate-video-copy h2 {
    color: var(--azul);
    font-size: 3rem;
    line-height: 1.14;
    font-weight: 700;
    margin-bottom: 18px;
}

.associate-video-copy p {
    color: var(--texto-cinza);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

.associate-video-copy p + p {
    margin-top: 16px;
}

.associate-video-cta {
    margin-top: 28px;
    gap: 10px;
}

.associate-market-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "response response"
        "pressure digital"
        "competition management";
    gap: 14px;
    align-items: stretch;
    padding: 0;
}

.associate-market-map::before {
    content: "";
    position: absolute;
    inset: 36px 46px 90px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92) 0 64px, transparent 66px),
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(8, 79, 152, 0.11) 50%, transparent calc(50% + 1px)),
        linear-gradient(180deg, transparent calc(50% - 1px), rgba(227, 6, 19, 0.10) 50%, transparent calc(50% + 1px));
    pointer-events: none;
    z-index: 0;
}

.associate-market-card {
    --accent: var(--azul);
    --accent-soft: rgba(8, 79, 152, 0.10);
    position: relative;
    z-index: 1;
    min-height: 156px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(8, 79, 152, 0.11);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.10);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.associate-market-card:nth-of-type(1) {
    grid-area: pressure;
}

.associate-market-card:nth-of-type(2) {
    grid-area: digital;
}

.associate-market-card:nth-of-type(3) {
    grid-area: competition;
}

.associate-market-card:nth-of-type(4) {
    grid-area: management;
}

.associate-market-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 34%, transparent);
    box-shadow: 0 26px 58px rgba(15, 23, 42, 0.15);
}

.associate-market-card-red {
    --accent: var(--vermelho);
    --accent-soft: rgba(227, 6, 19, 0.10);
}

.associate-market-card-blue {
    --accent: var(--azul);
    --accent-soft: rgba(8, 79, 152, 0.10);
}

.associate-market-card i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.05rem;
}

.associate-market-card span {
    color: var(--texto-escuro);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
}

.associate-market-card p {
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0;
}

.associate-market-response {
    position: relative;
    z-index: 1;
    grid-area: response;
    padding: 22px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--azul), #0b6eb8);
    color: var(--branco);
    box-shadow: 0 26px 58px rgba(8, 79, 152, 0.24);
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 142px;
}

.associate-market-response img {
    width: 204px;
    max-width: 50%;
    height: auto;
    flex: 0 0 auto;
}

.associate-market-response strong {
    display: block;
    color: var(--branco);
    font-size: 1.12rem;
    line-height: 1.35;
    font-weight: 900;
}

.associate-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 16 / 9;
    background: #07111f;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}

.associate-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.associate-faq-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at top left, rgba(8, 79, 152, 0.08), transparent 32%),
        linear-gradient(180deg, var(--branco) 0%, #f8fafc 100%);
    overflow: hidden;
}

.associate-faq-header {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.associate-faq-header h2 {
    color: var(--azul);
    font-size: 3rem;
    line-height: 1.14;
    font-weight: 700;
    margin: 18px 0 0;
}

.associate-faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.associate-faq-item {
    border: 1px solid rgba(8, 79, 152, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.associate-faq-item[open] {
    border-color: rgba(8, 79, 152, 0.22);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.11);
}

.associate-faq-item summary {
    min-height: 72px;
    padding: 20px 62px 20px 24px;
    color: var(--texto-escuro);
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.22s ease;
}

.associate-faq-item summary::-webkit-details-marker {
    display: none;
}

.associate-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(8, 79, 152, 0.10);
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.associate-faq-item[open] summary::after {
    content: "-";
    background: var(--azul);
    color: var(--branco);
    transform: translateY(-50%) rotate(180deg);
}

.associate-faq-content {
    padding: 0 24px 24px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: height 0.32s ease, opacity 0.24s ease, transform 0.32s ease;
}

.associate-faq-item[open] .associate-faq-content {
    opacity: 1;
    transform: translateY(0);
}

.associate-faq-content p {
    max-width: 780px;
    color: var(--texto-cinza);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .associate-faq-item,
    .associate-faq-item summary,
    .associate-faq-item summary::after,
    .associate-faq-content {
        transition: none;
    }
}

.associate-why-section {
    padding: 104px 0;
    background: linear-gradient(180deg, var(--cinza-claro) 0%, #ffffff 52%, #f8fafc 100%);
    overflow: hidden;
}

.associate-why-header {
    max-width: 930px;
    margin: 0 auto 52px;
    text-align: center;
}

.associate-why-header h2 {
    color: var(--azul);
    font-size: 3.05rem;
    line-height: 1.12;
    font-weight: 700;
    margin: 16px 0 12px;
}

.associate-why-header strong {
    display: block;
    color: var(--texto-escuro);
    font-size: 1.36rem;
    line-height: 1.35;
    font-weight: 900;
    margin-bottom: 16px;
}

.associate-why-header p {
    color: var(--texto-cinza);
    font-size: 1.05rem;
    line-height: 1.78;
    margin: 0;
}

.associate-why-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.associate-why-method {
    position: relative;
    min-height: 100%;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(8, 79, 152, 0.97), rgba(10, 103, 189, 0.94)),
        url("../assets/patern site.png");
    background-size: cover;
    color: var(--branco);
    display: grid;
    align-content: space-between;
    gap: 28px;
    box-shadow: 0 28px 72px rgba(8, 79, 152, 0.24);
    overflow: hidden;
}

.associate-why-method::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    pointer-events: none;
}

.associate-why-method-kicker {
    position: relative;
    justify-self: start;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.78rem;
    font-weight: 900;
}

.associate-why-method-number {
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    align-items: flex-end;
    column-gap: 14px;
    row-gap: 10px;
    justify-content: start;
}

.associate-why-method-number strong {
    display: block;
    font-size: 7rem;
    line-height: 0.8;
    font-weight: 900;
}

.associate-why-method-number span {
    max-width: 120px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 2px;
}

.associate-why-method-number em {
    grid-column: 1 / -1;
    color: var(--branco);
    font-size: clamp(2.2rem, 3.4vw, 2.9rem);
    line-height: 1;
    font-style: normal;
    font-weight: 900;
}

.associate-why-method p {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.72;
    margin: 0;
}

.associate-why-pillar-chips {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.associate-why-pillar-chips span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.76rem;
    font-weight: 900;
}

.associate-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.associate-why-card {
    --why-accent: var(--azul);
    position: relative;
    min-height: 100%;
    padding: 30px 30px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(8, 79, 152, 0.10);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.associate-why-card:nth-child(1) {
    --why-accent: #0a67bd;
}

.associate-why-card:nth-child(2) {
    --why-accent: #d31b20;
}

.associate-why-card:nth-child(3) {
    --why-accent: #20a99a;
}

.associate-why-card:nth-child(4) {
    --why-accent: #ff7a1a;
}

.associate-why-card.reveal-scale {
    transition:
        opacity 0.85s ease,
        transform 0.85s ease,
        filter 0.85s ease,
        box-shadow 0.32s ease,
        border-color 0.32s ease;
}

.associate-why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--why-accent);
    opacity: 0.82;
}

.associate-why-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--why-accent) 34%, white);
    box-shadow: 0 26px 62px rgba(15, 23, 42, 0.12);
}

.associate-why-icon,
.associate-why-count,
.associate-why-card h3,
.associate-why-card p {
    position: relative;
    z-index: 1;
}

.associate-why-count {
    position: absolute;
    right: 24px;
    top: 20px;
    color: color-mix(in srgb, var(--why-accent) 20%, white);
    font-size: 3.8rem;
    line-height: 1;
    font-weight: 900;
}

.associate-why-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: color-mix(in srgb, var(--why-accent) 13%, white);
    color: var(--why-accent);
    font-size: 1.28rem;
    transition: transform 0.32s ease, background 0.32s ease;
}

.associate-why-card:hover .associate-why-icon {
    transform: translateY(-3px) rotate(-4deg);
    background: color-mix(in srgb, var(--why-accent) 18%, white);
}

.associate-why-card h3 {
    color: var(--texto-escuro);
    font-size: 1.22rem;
    line-height: 1.32;
    font-weight: 900;
    margin-bottom: 12px;
}

.associate-why-card p {
    color: var(--texto-cinza);
    font-size: 0.94rem;
    line-height: 1.75;
    margin: 0;
}

.associate-why-proof {
    display: grid;
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    margin-top: 26px;
    padding: 18px;
    border-radius: 28px;
    background: var(--branco);
    border: 1px solid rgba(8, 79, 152, 0.12);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.associate-why-proof-heading {
    min-height: 116px;
    padding: 22px;
    border-radius: 20px;
    background: #eef4ff;
    color: var(--azul);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.associate-why-proof-heading i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--azul);
    color: var(--branco);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.12rem;
}

.associate-why-proof-heading strong {
    font-size: 1.12rem;
    line-height: 1.25;
    font-weight: 900;
}

.associate-why-proof-heading-logo {
    align-items: center;
    text-align: center;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.92);
}

.associate-why-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.associate-why-proof-grid span {
    min-height: 116px;
    padding: 18px 14px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.92);
    color: var(--texto-cinza);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.35;
    font-weight: 800;
}

.associate-why-proof-grid strong {
    display: block;
    color: var(--azul);
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 8px;
}

.associate-why-proof-logo {
    gap: 9px;
    background: var(--branco);
}

.associate-why-proof-logo img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 10px 18px rgba(8, 79, 152, 0.12));
}

.associate-why-proof-logo-febrafar img {
    width: 232px;
}

.associate-why-proof-logo-gptw img {
    width: 78px;
}

.associate-why-proof-logo-gptw {
    position: relative;
}

.associate-why-gptw-times {
    position: absolute;
    top: 20px;
    right: 22px;
    z-index: 1;
    color: var(--vermelho);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 2.65rem;
    font-weight: 700;
    line-height: 0.86;
    transform: rotate(-8deg);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.92);
}

.associate-why-proof-logo small {
    display: block;
    color: var(--texto-cinza);
    font-size: 0.74rem;
    line-height: 1.25;
    font-weight: 800;
}

.associate-network-section {
    padding: 80px 0 88px;
    background: var(--branco);
    overflow: hidden;
}

.associate-network-heading {
    text-align: center;
    margin-bottom: 32px;
}

.associate-network-heading h2 {
    color: var(--azul);
    font-size: 3rem;
    line-height: 1.12;
    font-weight: 700;
    margin: 0;
}

.associate-network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.associate-network-card {
    position: relative;
    min-height: 210px;
    padding: 34px 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--texto-escuro);
    border: 1px solid rgba(226, 232, 240, 0.96);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.07);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.associate-network-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211, 27, 32, 0.08), rgba(8, 79, 152, 0.08));
    opacity: 0;
    transition: opacity 0.32s ease;
}

.associate-network-card:hover {
    transform: translateY(-8px);
    border-color: rgba(211, 27, 32, 0.34);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.13);
}

.associate-network-card:hover::before {
    opacity: 1;
}

.associate-network-icon,
.associate-network-card strong,
.associate-network-card p {
    position: relative;
    z-index: 1;
}

.associate-network-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: linear-gradient(135deg, var(--vermelho), #ff4048);
    color: var(--branco);
    font-size: 1.42rem;
    box-shadow: 0 18px 34px rgba(211, 27, 32, 0.22);
    transition: transform 0.32s ease, background 0.32s ease;
}

.associate-network-card:hover .associate-network-icon {
    transform: rotate(-4deg) scale(1.07);
    background: linear-gradient(135deg, var(--azul), #0a67bd);
}

.associate-network-card strong {
    display: block;
    max-width: 220px;
    font-size: 1.32rem;
    line-height: 1.32;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--texto-escuro);
}

.associate-network-card:first-child strong {
    font-size: 2.6rem;
    line-height: 1;
}

.associate-network-card p {
    max-width: 230px;
    font-size: 0.94rem;
    line-height: 1.75;
    font-weight: 500;
    margin: 0;
    color: var(--texto-cinza);
}

.associate-network-actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.associate-network-btn {
    min-width: 286px;
    min-height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: #27c915;
    color: var(--branco);
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(39, 201, 21, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.associate-network-btn:hover {
    background: #20ad10;
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(39, 201, 21, 0.30);
}

.associate-pillars-section {
    padding: 98px 0;
    background:
        linear-gradient(180deg, var(--branco) 0%, #f8fafc 100%);
    overflow: hidden;
}

.associate-pillars-section .section-heading {
    max-width: 900px;
}

.associate-pillars-section .section-heading p + p {
    margin-top: 10px;
}

.associate-pillars-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    margin: 14px auto 0;
    padding: 8px 13px;
    border: 1px solid rgba(8, 79, 152, 0.12);
    border-radius: 999px;
    background: rgba(8, 79, 152, 0.06);
    color: #476176 !important;
    font-size: 0.84rem !important;
    font-weight: 800;
    line-height: 1.25 !important;
}

.associate-pillars-hint i {
    color: var(--vermelho);
    font-size: 0.92rem;
}

.associate-pillars-layout {
    display: grid;
    grid-template-columns: minmax(520px, 0.95fr) minmax(360px, 0.72fr);
    gap: 56px;
    align-items: center;
}

.associate-pillars-orbit {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 1;
    margin: 0 auto;
    isolation: isolate;
}

.associate-pillars-orbit::before {
    content: "";
    position: absolute;
    inset: 72px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow:
        inset 0 0 0 22px rgba(255, 255, 255, 0.74),
        0 24px 60px rgba(15, 23, 42, 0.07);
    z-index: -1;
}

.associate-pillars-orbit::after {
    content: "";
    position: absolute;
    inset: 50%;
    width: 78%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.14), transparent);
    transform: translate(-50%, -50%);
    z-index: -2;
}

.associate-pillar-node {
    --pillar-color: var(--azul);
    position: absolute;
    width: 156px;
    min-height: 148px;
    border: 2px solid color-mix(in srgb, var(--pillar-color) 72%, white);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--pillar-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.associate-pillar-node span {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--pillar-color) 13%, white);
    color: var(--pillar-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.associate-pillar-node strong {
    font-size: 0.95rem;
    line-height: 1.25;
}

.associate-pillar-node:hover,
.associate-pillar-node.active {
    background: var(--pillar-color);
    color: var(--branco);
    transform: translateY(-7px);
    box-shadow: 0 26px 58px color-mix(in srgb, var(--pillar-color) 28%, transparent);
}

.associate-pillar-node:hover span,
.associate-pillar-node.active span {
    background: rgba(255, 255, 255, 0.18);
    color: var(--branco);
    transform: scale(1.06);
}

.associate-pillar-node:focus-visible {
    outline: 4px solid rgba(211, 27, 32, 0.24);
    outline-offset: 4px;
}

.pillar-buy {
    --pillar-color: #ff7a1a;
    left: 4px;
    top: 36px;
}

.pillar-manage {
    --pillar-color: #4d63d9;
    right: 4px;
    top: 36px;
}

.pillar-sell {
    --pillar-color: #20a99a;
    left: 4px;
    bottom: 36px;
}

.pillar-learn {
    --pillar-color: #ef4774;
    right: 4px;
    bottom: 36px;
}

.associate-pillars-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 250px;
    min-height: 250px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(145deg, var(--azul), #0a67bd);
    color: var(--branco);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 34px;
    text-align: center;
    box-shadow: 0 28px 75px rgba(8, 79, 152, 0.24);
    z-index: 1;
}

.associate-pillars-center img {
    width: min(168px, 100%);
    height: auto;
}

.associate-pillars-center strong {
    font-size: 1.05rem;
    line-height: 1.35;
}

.associate-pillars-center small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.76rem;
    line-height: 1.45;
}

.associate-pillar-panel {
    min-height: 420px;
    padding: 38px;
    border-radius: 30px;
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    box-shadow: 0 26px 65px rgba(15, 23, 42, 0.10);
}

.associate-pillar-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(211, 27, 32, 0.10);
    color: var(--vermelho);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.associate-pillar-panel h3 {
    color: var(--azul);
    font-size: 2.15rem;
    line-height: 1.16;
    font-weight: 700;
    margin-bottom: 16px;
}

.associate-pillar-panel p {
    color: var(--texto-cinza);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.associate-pillar-description {
    margin-bottom: 24px;
}

.associate-pillar-description p {
    margin-bottom: 12px;
}

.associate-pillar-description p:last-child {
    margin-bottom: 0;
}

.associate-pillar-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.associate-pillar-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--azul);
    border: 1px solid rgba(8, 79, 152, 0.10);
    font-size: 0.78rem;
    font-weight: 800;
}

.associate-angel-section {
    position: relative;
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(211, 27, 32, 0.08), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, var(--branco) 100%);
    overflow: hidden;
}

.associate-angel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
    gap: 56px;
    align-items: center;
}

.associate-angel-copy {
    max-width: 780px;
}

.associate-angel-copy h2 {
    color: var(--azul);
    font-size: 3rem;
    line-height: 1.14;
    font-weight: 700;
    margin: 18px 0 22px;
}

.associate-angel-copy p {
    color: var(--texto-cinza);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.associate-angel-cta {
    gap: 10px;
    margin-top: 16px;
    max-width: 100%;
    line-height: 1.3;
    text-align: center;
}

.associate-angel-cta span {
    min-width: 0;
}

.associate-angel-visual {
    position: relative;
    min-height: 360px;
    padding: 42px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(8, 79, 152, 0.96), rgba(10, 103, 189, 0.92)),
        url("../assets/patern site.png");
    background-size: cover;
    color: var(--branco);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    box-shadow: 0 30px 75px rgba(8, 79, 152, 0.24);
    overflow: hidden;
    transition: opacity 0.9s ease, transform 0.42s ease, filter 0.9s ease, box-shadow 0.42s ease;
}

.associate-angel-visual::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    pointer-events: none;
    transition: inset 0.42s ease, border-color 0.42s ease, background 0.42s ease;
}

.associate-angel-visual.show:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 38px 90px rgba(8, 79, 152, 0.32);
}

.associate-angel-visual.show:hover::before {
    inset: 18px;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.associate-angel-icon {
    align-self: center;
    width: 150px;
    min-height: 78px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    transition: transform 0.42s ease, background 0.42s ease;
}

.associate-angel-icon img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.associate-angel-visual.show:hover .associate-angel-icon {
    transform: translateY(-5px) rotate(-4deg) scale(1.04);
    background: rgba(255, 255, 255, 0.22);
}

.associate-angel-visual strong {
    position: relative;
    font-size: 1.45rem;
    line-height: 1.28;
    max-width: 320px;
}

.associate-angel-visual span {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.6;
}

.associate-journey-section {
    position: relative;
    padding: 96px 0;
    background:
        radial-gradient(circle at 88% 14%, rgba(8, 79, 152, 0.08), transparent 30%),
        linear-gradient(180deg, var(--branco) 0%, #f8fafc 100%);
    overflow: hidden;
}

.associate-journey-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.associate-journey-copy {
    max-width: 780px;
    justify-self: end;
}

.associate-journey-copy h2 {
    color: var(--azul);
    font-size: 3rem;
    line-height: 1.14;
    font-weight: 700;
    margin: 18px 0 22px;
}

.associate-journey-copy p {
    color: var(--texto-cinza);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.associate-journey-cta {
    gap: 10px;
    margin-top: 16px;
    max-width: 100%;
    line-height: 1.3;
    text-align: center;
}

.associate-journey-cta span {
    min-width: 0;
}

.associate-journey-visual {
    position: relative;
    min-height: 380px;
    padding: 40px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(211, 27, 32, 0.98) 0%, rgba(143, 47, 116, 0.95) 48%, rgba(8, 79, 152, 0.95) 100%),
        url("../assets/patern site.png");
    background-size: cover;
    background-position: center;
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 75px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    transition: opacity 0.9s ease, transform 0.42s ease, filter 0.9s ease, box-shadow 0.42s ease;
}

.associate-journey-visual::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    pointer-events: none;
    transition: inset 0.42s ease, border-color 0.42s ease, background 0.42s ease;
}

.associate-journey-visual.show:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 38px 90px rgba(15, 23, 42, 0.28);
}

.associate-journey-visual.show:hover::before {
    inset: 18px;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.04);
}

.associate-journey-mark,
.associate-journey-note {
    position: relative;
}

.associate-journey-mark {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.42s ease;
}

.associate-journey-image {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 560px);
    height: auto;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(15, 23, 42, 0.18));
}

.associate-journey-number {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 12px;
    row-gap: 10px;
    align-items: end;
    justify-content: center;
}

.associate-journey-mark strong {
    display: block;
    font-size: clamp(6.6rem, 9vw, 7.8rem);
    line-height: 0.78;
    font-weight: 900;
    letter-spacing: 0;
}

.associate-journey-number p {
    grid-column: 1 / -1;
    color: var(--branco);
    font-size: clamp(2.55rem, 4.3vw, 3.35rem);
    line-height: 1;
    font-weight: 900;
    margin: 0;
    text-align: left;
}

.associate-journey-mark span {
    display: block;
    color: rgba(255, 255, 255, 0.94);
    margin: 0;
    font-size: clamp(1.28rem, 2.2vw, 1.55rem);
    line-height: 1;
    font-weight: 900;
}

.associate-journey-visual.show:hover .associate-journey-mark {
    transform: translateY(-4px) scale(1.035);
}

.associate-journey-note {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    line-height: 1.55;
    align-self: end;
}

.associate-journey-note i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.42s ease, background 0.42s ease;
}

.associate-journey-visual.show:hover .associate-journey-note i {
    transform: translateY(-3px) rotate(-6deg);
    background: rgba(255, 255, 255, 0.22);
}

.associate-main .partners-section {
    margin-top: 0;
    padding: 72px 0 95px;
    background: linear-gradient(180deg, var(--branco) 0%, var(--cinza-claro) 100%);
}

.associate-main .partners-carousel::before {
    background: linear-gradient(to right, var(--cinza-claro), transparent);
}

.associate-main .partners-carousel::after {
    background: linear-gradient(to left, var(--cinza-claro), transparent);
}

.associate-contact-section {
    padding: 96px 0;
    background:
        linear-gradient(135deg, rgba(8, 79, 152, 0.90), rgba(8, 79, 152, 0.76)),
        url("../assets/patern site.png");
    background-size: cover;
    background-position: center right;
}

.associate-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.72fr);
    gap: 56px;
    align-items: center;
}

.associate-contact-copy {
    color: var(--branco);
}

.associate-contact-copy .tag {
    background: rgba(255, 255, 255, 0.16);
    color: var(--branco);
}

.associate-contact-copy h2 {
    max-width: 620px;
    font-size: 3rem;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 18px;
}

.associate-contact-copy p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 1.03rem;
    line-height: 1.75;
    margin: 0;
}

.associate-contact-form {
    border-color: rgba(255, 255, 255, 0.34) !important;
}

.associate-form-panel {
    display: grid;
    gap: 22px;
}

.associate-form-switch {
    border: 0;
    padding: 0;
    margin: 0;
}

.associate-form-switch legend {
    color: var(--azul);
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.associate-switch-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: #eef4ff;
    border: 1px solid rgba(8, 79, 152, 0.10);
}

.associate-switch-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.associate-switch-options label {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--azul);
    font-size: 0.82rem;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.associate-switch-options input:checked + label {
    background: var(--azul);
    color: var(--branco);
    box-shadow: 0 12px 26px rgba(8, 79, 152, 0.22);
}

.associate-switch-options input:focus-visible + label {
    outline: 3px solid rgba(211, 27, 32, 0.28);
    outline-offset: 2px;
}

.associate-contact-form [hidden] {
    display: none;
}

.associate-form-question {
    border: 0;
    padding: 0;
    margin: 0;
}

.associate-form-question legend,
.associate-form-field label {
    display: block;
    color: var(--azul);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 10px;
}

.associate-radio-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.associate-radio-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.associate-radio-options label {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(8, 79, 152, 0.14);
    background: #f8fafc;
    color: var(--azul);
    font-size: 0.84rem;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.associate-radio-options input:checked + label {
    background: var(--azul);
    border-color: var(--azul);
    color: var(--branco);
    box-shadow: 0 12px 26px rgba(8, 79, 152, 0.22);
}

.associate-radio-options input:focus-visible + label,
.associate-check-option input:focus-visible + span {
    outline: 3px solid rgba(211, 27, 32, 0.28);
    outline-offset: 2px;
}

.associate-form-field input,
.associate-form-field textarea {
    width: 100%;
    padding: 16px 14px;
    border-radius: 14px;
    border: 1px solid var(--cinza-borda);
    outline: none;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition-base);
    background: transparent;
}

.associate-form-field textarea {
    min-height: 96px;
    line-height: 1.45;
    resize: vertical;
}

.associate-form-field input:focus,
.associate-form-field textarea:focus {
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(27,117,187,0.1);
}

.associate-form-field input:disabled,
.associate-form-field textarea:disabled,
.associate-radio-options input:disabled + label {
    opacity: 0.54;
    cursor: not-allowed;
}

.associate-check-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--azul);
    font-size: 0.92rem;
    font-weight: 900;
    cursor: pointer;
}

.associate-check-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--azul);
}

.associate-check-option span {
    border-radius: 8px;
}

.associate-form-actions {
    display: grid;
    grid-template-columns: 0.56fr 1fr;
    gap: 10px;
}

.associate-form-actions .submit-btn:first-child,
.associate-form-actions .submit-btn:only-child {
    grid-column: 1 / -1;
}

#associateBackButton[hidden] + .submit-btn {
    grid-column: 1 / -1;
}

.submit-btn:disabled,
.associate-secondary-btn:disabled {
    opacity: 0.62;
    cursor: wait;
    transform: none;
}

.associate-secondary-btn {
    padding: 16px;
    border-radius: 999px;
    border: 1px solid rgba(8, 79, 152, 0.18);
    background: #eef4ff;
    color: var(--azul);
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.associate-secondary-btn:hover {
    transform: translateY(-2px);
    background: #e3edff;
}

@media (max-width: 1199px) {
    .associate-hero h1 {
        font-size: 3.15rem;
    }

    .associate-why-header h2,
    .associate-network-heading h2,
    .associate-video-copy h2,
    .associate-faq-header h2,
    .associate-angel-copy h2,
    .associate-journey-copy h2,
    .associate-contact-copy h2 {
        font-size: 2.55rem;
    }

    .associate-why-layout,
    .associate-why-proof {
        grid-template-columns: 1fr;
    }

    .associate-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .associate-why-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .associate-network-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .associate-pillars-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 991px) {
    .associate-hero {
        min-height: auto;
        padding: 132px 0 78px;
    }

    .associate-hero-bg {
        background-position: center;
        background-size: auto 78%;
    }

    .associate-hero-bg {
        background-image:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.96) 0%,
                rgba(255, 255, 255, 0.94) 52%,
                rgba(255, 255, 255, 0.80) 100%
            ),
            url("../assets/img/hero seja-associado.webp");
    }

    .associate-hero-grid,
    .associate-video-grid,
    .associate-angel-grid,
    .associate-journey-grid,
    .associate-contact-grid {
        grid-template-columns: 1fr;
    }

    .associate-journey-copy {
        justify-self: stretch;
    }

    .associate-hero-content {
        max-width: 760px;
    }

    .associate-video-grid {
        gap: 34px;
    }

    .associate-why-method {
        min-height: 420px;
    }

    .associate-why-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .associate-video-copy {
        max-width: 760px;
    }

    .associate-market-map {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    .associate-contact-grid {
        gap: 34px;
    }
}

@media (max-width: 700px) {
    .associate-pillars-section {
        padding: 76px 0;
    }

    .associate-pillars-orbit {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        aspect-ratio: auto;
        width: 100%;
    }

    .associate-pillars-orbit::before,
    .associate-pillars-orbit::after {
        display: none;
    }

    .associate-pillars-center,
    .associate-pillar-node {
        position: static;
        transform: none;
        width: 100%;
        min-height: auto;
        border-radius: 22px;
    }

    .associate-pillars-center {
        order: -1;
        padding: 26px;
    }

    .associate-pillar-node {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 16px;
    }

    .associate-pillar-node:hover,
    .associate-pillar-node.active {
        transform: translateY(-3px);
    }

    .associate-pillar-panel {
        min-height: auto;
        padding: 28px;
        border-radius: 24px;
    }
}

@media (max-width: 576px) {
    .associate-hero {
        padding: 116px 0 64px;
    }

    .associate-hero h1 {
        font-size: 2.35rem;
    }

    .associate-hero p {
        font-size: 0.98rem;
    }

    .associate-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .associate-video-section,
    .associate-angel-section,
    .associate-journey-section,
    .associate-faq-section {
        padding: 72px 0;
    }

    .associate-video-copy h2,
    .associate-why-header h2,
    .associate-network-heading h2,
    .associate-faq-header h2,
    .associate-angel-copy h2,
    .associate-journey-copy h2,
    .associate-pillar-panel h3,
    .associate-contact-copy h2 {
        font-size: 2.05rem;
    }

    .associate-video-frame {
        border-radius: 18px;
    }

    .associate-video-cta {
        width: 100%;
        padding-inline: 18px;
    }

    .associate-market-map {
        grid-template-columns: 1fr;
        grid-template-areas:
            "response"
            "pressure"
            "digital"
            "competition"
            "management";
        min-height: auto;
        gap: 12px;
        padding: 0;
    }

    .associate-market-map::before {
        display: none;
    }

    .associate-market-card {
        min-height: auto;
    }

    .associate-market-response {
        margin-top: 2px;
        padding: 22px;
        flex-direction: column;
        align-items: flex-start;
    }

    .associate-market-response img {
        width: 132px;
        max-width: 100%;
    }

    .associate-faq-item summary {
        padding: 18px 56px 18px 18px;
    }

    .associate-faq-content {
        padding: 0 18px 22px;
    }

    .associate-angel-cta {
        width: 100%;
        padding-inline: 18px;
    }

    .associate-journey-cta {
        width: 100%;
        padding-inline: 18px;
    }

    .associate-angel-visual,
    .associate-journey-visual {
        min-height: 300px;
        padding: 32px;
        border-radius: 24px;
    }

    .associate-journey-mark strong {
        font-size: 5.4rem;
    }

    .associate-journey-mark span {
        font-size: 1.05rem;
    }

    .associate-journey-number p {
        font-size: 2.15rem;
    }

    .associate-why-section,
    .associate-network-section {
        padding: 72px 0;
    }

    .associate-why-card {
        padding: 28px;
    }

    .associate-why-header strong {
        font-size: 1.12rem;
    }

    .associate-why-grid,
    .associate-why-proof-grid {
        grid-template-columns: 1fr;
    }

    .associate-why-method {
        min-height: auto;
        padding: 28px;
        border-radius: 24px;
    }

    .associate-why-method::before {
        inset: 16px;
        border-radius: 18px;
    }

    .associate-why-method-number strong {
        font-size: 5.6rem;
    }

    .associate-why-method-number em {
        font-size: 2.15rem;
    }

    .associate-why-proof {
        padding: 14px;
        border-radius: 22px;
    }

    .associate-why-count {
        font-size: 3.2rem;
        right: 20px;
    }

    .associate-network-grid {
        grid-template-columns: 1fr;
    }

    .associate-network-card {
        min-height: 180px;
    }

    .associate-network-card:first-child strong {
        font-size: 2.35rem;
    }

    .associate-network-card strong {
        font-size: 1.32rem;
    }

    .associate-network-btn {
        width: 100%;
        min-width: 0;
    }

    .associate-contact-section {
        padding: 72px 0;
    }

    .associate-switch-options {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .associate-radio-options,
    .associate-form-actions {
        grid-template-columns: 1fr;
    }

    .associate-switch-options label {
        border-radius: 14px;
    }
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cinza-claro), #eef4ff);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--azul);
    margin-bottom: 16px;
}

.contact-content p {
    color: var(--texto-cinza);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- FORMULÁRIO --- */
.contact-form {
    background: var(--branco);
    padding: 40px;
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    display: flex;
    border: 1px solid var(--azul) !important;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 14px;
    border-radius: 14px;
    border: 1px solid var(--cinza-borda);
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition-base);
    background: transparent;
}

.form-group label {
    position: absolute;
    left: 14px;
    top: 16px;
    color: #9ca3af;
    font-size: 0.9rem;
    transition: 0.25s;
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(27,117,187,0.1);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    left: 10px;
    background: var(--branco);
    padding: 0 6px;
    font-size: 0.72rem;
    color: var(--azul);
}

.submit-btn {
    padding: 16px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--vermelho), #c90010);
    color: var(--branco);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 14px 30px rgba(227, 6, 19, 0.25);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(227, 6, 19, 0.35);
}

.form-feedback {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.form-feedback.success {
    color: #16a34a;
}

.form-feedback.error {
    color: #dc2626;
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }
}

/* --- FLUXO DE ASSOCIAÇÃO --- */
.flow-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(227, 6, 19, 0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(27, 117, 187, 0.10), transparent 35%),
        var(--cinza-claro);
    overflow: hidden;
}

.flow-heading {
    max-width: 820px;
    margin: 0 auto 45px;
    text-align: center;
}

.flow-heading h2 {
    color: var(--azul);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 14px;
}

.flow-heading p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

.flow-center-card {
    max-width: 620px;
    margin: 0 auto 42px;
    padding: 34px;
    border-radius: 28px;
    background: var(--branco);
    text-align: center;
    border: 1px solid var(--cinza-borda);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    position: relative;
}

.flow-center-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--vermelho), var(--azul));
    z-index: -1;
    opacity: 0.18;
}

.flow-center-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--vermelho), var(--azul));
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

.flow-center-card h3 {
    color: var(--azul);
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.flow-center-card p {
    color: #64748b;
    margin: 0;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.flow-card {
    position: relative;
    min-height: 100%;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: var(--transition-slow);
}

.flow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    transition: var(--transition-slow);
}

.flow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.flow-card:hover::before {
    opacity: 0.16;
}

.flow-card-header {
    position: relative;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
    z-index: 1;
}

.flow-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 18px;
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    transition: 0.3s ease;
}

.flow-card:hover .flow-icon {
    transform: rotate(-6deg) scale(1.08);
}

.flow-card h3 {
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.flow-card-header p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

.flow-items {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 1;
}

.flow-items span {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--branco);
    color: #334155;
    border: 1px solid var(--cinza-borda);
    font-size: 0.78rem;
    font-weight: 800;
    transition: var(--transition-base);
}

.flow-items span:hover {
    transform: translateY(-3px);
    color: var(--branco);
}

/* --- CORES DOS PILARES --- */
.flow-orange h3 { color: #f97316; }
.flow-orange::before { background: #f97316; }
.flow-orange .flow-icon,
.flow-orange .flow-items span:hover { background: #f97316; }

.flow-teal h3 { color: #0f9f8f; }
.flow-teal::before { background: #0f9f8f; }
.flow-teal .flow-icon,
.flow-teal .flow-items span:hover { background: #0f9f8f; }

.flow-blue h3 { color: var(--azul); }
.flow-blue::before { background: var(--azul); }
.flow-blue .flow-icon,
.flow-blue .flow-items span:hover { background: var(--azul); }

.flow-pink h3 { color: #e11d48; }
.flow-pink::before { background: #e11d48; }
.flow-pink .flow-icon,
.flow-pink .flow-items span:hover { background: #e11d48; }

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .flow-grid {
        grid-template-columns: 1fr;
    }

    .flow-card {
        padding: 26px;
    }
}

@media (max-width: 576px) {
    .flow-section {
        padding: 75px 0;
    }

    .flow-card-header {
        flex-direction: column;
    }

    .flow-center-card {
        padding: 28px 22px;
    }

    .flow-items span {
        font-size: 0.74rem;
    }
}



/* ============================================
   9. PILARES E TIMELINE
   ============================================ */

.sec {
    padding: 72px 0;
    font-family: 'Poppins', sans-serif;
}

/* --- HEADING --- */
.head {
    text-align: center;
    margin-bottom: 56px;
}

.head h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 12px;
    line-height: 1.3;
}

.head p {
    font-size: 15px;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- CENTER CARD --- */
.center-card {
    max-width: 480px;
    margin: 0 auto 56px;
    padding: 28px 32px;
    border-radius: 16px;
    background: var(--branco);
    border: 0.5px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    text-align: center;
}

.center-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(227, 6, 19, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.center-icon svg {
    width: 24px;
    height: 24px;
    stroke: #A32D2D;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.center-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--texto-escuro);
    margin-bottom: 6px;
}

.center-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* --- TIMELINE --- */
.timeline {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e2e8f0;
}

/* --- PILAR --- */
.pilar {
    position: relative;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(36px);
    filter: blur(8px);
    transition: opacity .7s ease, transform .7s ease, filter .7s ease;
}

.pilar.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.pilar-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
    user-select: none;
}

/* --- DOT --- */
.dot {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    transition: transform .3s ease;
}

.pilar-row:hover .dot {
    transform: scale(1.12);
}

.dot svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--branco);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dot-o { background: #f97316; }
.dot-t { background: #0f9f8f; }
.dot-b { background: #185FA5; }
.dot-p { background: #993556; }

/* --- PILAR BODY --- */
.pilar-body {
    flex: 1;
    min-width: 0;
    border-radius: 16px;
    background: var(--branco);
    border: 0.5px solid #e2e8f0;
    overflow: hidden;
    transition: border-color .3s;
}

.pilar.open .pilar-body {
    border-color: #cbd5e1;
}

.pilar-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pilar-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.num {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    width: 20px;
}

.pilar-label h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--texto-escuro);
    margin-bottom: 2px;
}

.pilar-label p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* --- COR DOS TÍTULOS POR PILAR --- */
.pilar-o .pilar-label h3 { color: #f97316; }
.pilar-t .pilar-label h3 { color: #0f9f8f; }
.pilar-b .pilar-label h3 { color: #185FA5; }
.pilar-p .pilar-label h3 { color: #993556; }

/* --- CHEVRON --- */
.chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform .35s ease;
}

.pilar.open .chevron {
    transform: rotate(180deg);
}

/* --- ACORDEÃO --- */
.pilar-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
}

.pilar.open .pilar-content {
    max-height: 400px;
}

/* --- PILLS --- */
.pills-wrap {
    padding: 0 24px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--cinza-claro);
    border: 0.5px solid #e2e8f0;
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s ease, transform .3s ease, background .2s, color .2s, border-color .2s;
}

.pill.show {
    opacity: 1;
    transform: translateY(0);
}

.pill:hover {
    background: rgba(27, 117, 187, 0.08);
    color: #185FA5;
    border-color: rgba(27, 117, 187, 0.25);
}

/* --- BLUR ITEM --- */
.blur-item {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
    transition: opacity .7s ease, transform .7s ease, filter .7s ease;
}

.blur-item.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* --- RESPONSIVO --- */
@media (max-width: 600px) {
    .timeline {
        padding: 0 12px;
    }

    .timeline::before {
        left: 18px;
    }

    .dot {
        width: 28px;
        height: 28px;
        margin-top: 16px;
    }

    .pilar-header {
        padding: 16px 18px;
    }

    .pills-wrap {
        padding: 0 18px 18px;
    }
}

/* ============================================
   10. TRABALHE CONOSCO
   ============================================ */

.careers-main {
    overflow: hidden;
    background: var(--branco);
}

.careers-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    color: var(--texto-escuro);
    overflow: hidden;
    isolation: isolate;
}

.careers-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--branco) 0%,
        rgba(255, 255, 255, 0.98) 36%,
        rgba(255, 255, 255, 0.84) 52%,
        rgba(255, 255, 255, 0.36) 67%,
        rgba(255, 255, 255, 0) 82%
    );
    pointer-events: none;
    z-index: 0;
}

.container {
    min-width: 90vw !important;
}

.careers-hero-bg {
    position: absolute;
    inset: 0;
    background: url("../assets/img/HOME 1.png");
    background-size: cover;
    background-position: center right;
    z-index: -1;
}

.careers-hero .container {
    position: relative;
    z-index: 1;
}

.careers-hero-content {
    max-width: 720px;
    padding: 10px 0 95px;
}

.careers-hero h1 {
    color: var(--azul);
    font-size: 2.8;
    font-weight: 600;
    line-height: 1.08;
    margin: 18px 0;
}

.careers-hero p {
    max-width: 650px;
    color: var(--texto-cinza);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.careers-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.careers-section {
    padding: 90px 0;
}

.careers-light {
    background:
        radial-gradient(circle at top left, rgba(211, 27, 32, 0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(8, 79, 152, 0.10), transparent 35%),
        var(--cinza-claro);
}

.careers-intro-grid,
.careers-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    gap: 50px;
    align-items: center;
}

.careers-intro-text h2,
.careers-form-content h2 {
    color: var(--azul);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 18px;
}

.careers-intro-text p,
.careers-form-content p {
    color: var(--texto-cinza);
    line-height: 1.75;
    margin-bottom: 16px;
}

.careers-highlight-card {
    position: relative;
    padding: 38px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--azul), #0b66bd);
    color: var(--branco);
    box-shadow: 0 28px 65px rgba(8, 79, 152, 0.22);
    overflow: hidden;
}

.careers-highlight-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.careers-highlight-icon,
.career-area-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.careers-highlight-icon {
    background: rgba(255, 255, 255, 0.16);
    color: var(--branco);
}

.careers-highlight-card h3 {
    position: relative;
    font-weight: 900;
    margin-bottom: 12px;
    z-index: 1;
}

.careers-highlight-card p {
    position: relative;
    line-height: 1.7;
    opacity: 0.92;
    margin: 0;
    z-index: 1;
}

.careers-area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.career-area-card {
    min-height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.career-area-card:hover {
    transform: translateY(-7px);
    border-color: var(--vermelho);
    box-shadow: var(--shadow-lg);
}

.career-area-icon {
    background: rgba(8, 79, 152, 0.10);
    color: var(--azul);
    transition: var(--transition-base);
}

.career-area-card:hover .career-area-icon {
    background: var(--vermelho);
    color: var(--branco);
}

.career-area-card h3 {
    color: var(--azul);
    font-size: 1.12rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.career-area-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.careers-check-list {
    display: grid;
    gap: 12px;
    list-style: none;
    padding: 8px 0 0;
    margin: 0;
}

.careers-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-weight: 700;
}

.careers-check-list i {
    color: var(--vermelho);
}

.careers-form {
    box-shadow: var(--shadow-xl);
}

.careers-form-note {
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.5;
    text-align: center;
    margin: -6px 0 0;
}

@media (max-width: 1199px) {
    .careers-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .careers-hero {
        min-height: auto;
    }

    .careers-hero-bg {
        background-position: center;
    }

    .careers-hero::before {
        background: linear-gradient(
            180deg,
            var(--branco) 0%,
            rgba(255, 255, 255, 0.96) 58%,
            rgba(255, 255, 255, 0.74) 78%,
            rgba(255, 255, 255, 0.42) 100%
        );
    }

    .careers-hero-content {
        padding: 135px 0 80px;
    }

    .careers-intro-grid,
    .careers-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .careers-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .careers-section {
        padding: 72px 0;
    }

    .careers-area-grid {
        grid-template-columns: 1fr;
    }

    .career-area-card,
    .careers-highlight-card {
        padding: 26px;
    }
}

/* ============================================
   11. CONSENTIMENTO DE COOKIES
   ============================================ */

body.cookie-modal-open {
    overflow: hidden;
}

.cookie-consent[hidden],
.cookie-modal[hidden],
.cookie-embed-placeholder[hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    width: 100%;
    padding: 18px clamp(18px, 4vw, 56px);
    border-top: 1px solid rgba(8, 79, 152, 0.16);
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -18px 55px rgba(12, 24, 48, 0.18);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.cookie-consent-copy {
    min-width: 0;
}

.cookie-consent-tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-bottom: 10px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(211, 27, 32, 0.10);
    color: var(--vermelho);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.cookie-consent h2,
.cookie-panel h2 {
    margin: 0 0 8px;
    color: var(--texto-escuro);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0;
}

.cookie-consent p,
.cookie-panel p {
    margin: 0;
    color: #475569;
    font-size: 0.86rem;
    line-height: 1.6;
}

.cookie-consent a {
    display: inline-flex;
    margin-top: 10px;
    color: var(--azul);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.cookie-consent a:hover {
    color: var(--vermelho);
    text-decoration: underline;
}

.cookie-consent-actions,
.cookie-panel-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-btn {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.15;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn-primary {
    background: var(--azul);
    color: var(--branco);
    box-shadow: 0 12px 26px rgba(8, 79, 152, 0.20);
}

.cookie-btn-primary:hover {
    background: #063f7a;
    color: var(--branco);
}

.cookie-btn-secondary {
    background: var(--vermelho);
    color: var(--branco);
    box-shadow: 0 12px 26px rgba(211, 27, 32, 0.18);
}

.cookie-btn-secondary:hover {
    background: #b91419;
    color: var(--branco);
}

.cookie-btn-ghost {
    background: #f8fafc;
    border-color: #dbe4ef;
    color: #334155;
}

.cookie-btn-ghost:hover {
    background: #eef4ff;
    color: var(--azul);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    padding: 24px;
    display: grid;
    place-items: center;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 48, 0.58);
    backdrop-filter: blur(6px);
}

.cookie-panel {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    padding: 28px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 8px;
    background: var(--branco);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.cookie-panel-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cookie-panel-close:hover {
    background: var(--azul);
    color: var(--branco);
    transform: rotate(5deg);
}

.cookie-categories {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.cookie-category {
    min-height: 92px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    background: #ffffff;
    cursor: pointer;
}

.cookie-category-copy {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.cookie-category-copy strong {
    color: var(--texto-escuro);
    font-size: 0.9rem;
    font-weight: 900;
}

.cookie-category-copy small {
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.5;
}

.cookie-category-status {
    grid-column: 1 / -1;
    width: fit-content;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(8, 79, 152, 0.10);
    color: var(--azul);
    font-size: 0.7rem;
    font-weight: 900;
}

.cookie-switch {
    position: relative;
    width: 52px;
    height: 30px;
    flex-shrink: 0;
}

.cookie-switch input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.cookie-switch input:disabled {
    cursor: not-allowed;
}

.cookie-switch > span {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #cbd5e1;
    transition: background 0.2s ease;
}

.cookie-switch > span::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--branco);
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.24);
    transition: transform 0.2s ease;
}

.cookie-switch input:checked + span {
    background: var(--azul);
}

.cookie-switch input:checked + span::before {
    transform: translateX(22px);
}

.cookie-controlled-embed[hidden] {
    display: none !important;
}

.cookie-embed-placeholder {
    width: 100%;
    min-height: 260px;
    padding: 24px;
    border: 1px solid rgba(8, 79, 152, 0.18);
    border-radius: inherit;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #eef4ff);
    color: #334155;
}

.cookie-embed-placeholder > div {
    max-width: 360px;
    display: grid;
    justify-items: center;
    gap: 10px;
}

.cookie-embed-placeholder i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(8, 79, 152, 0.10);
    color: var(--azul);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.cookie-embed-placeholder strong {
    color: var(--texto-escuro);
    font-size: 1rem;
    font-weight: 900;
}

.cookie-embed-placeholder p {
    margin: 0;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.5;
}

.map-card .cookie-embed-placeholder,
.associate-video-frame .cookie-embed-placeholder {
    height: 100%;
    min-height: 100%;
}

.footer-cookie-settings {
    margin: 26px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--branco);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-cookie-settings:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.44);
    transform: translateY(-2px);
}

body.cookie-banner-visible .floating-whatsapp,
body.cookie-banner-visible .footer-back-top {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 991px) {
    .cookie-consent {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .cookie-consent-actions,
    .cookie-panel-actions {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1 1 170px;
    }
}

@media (max-width: 576px) {
    .cookie-consent {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: min(82vh, 520px);
        overflow: auto;
        padding: 18px;
    }

    .cookie-panel {
        max-height: calc(100vh - 28px);
        padding: 24px 18px;
    }

    .cookie-category {
        grid-template-columns: 1fr;
    }

    .cookie-switch {
        justify-self: start;
    }

    .cookie-panel-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        min-width: 0;
    }
}
