/* =====================================================
   ROOT — PALETA DE CORES, TIPOGRAFIA E VARIÁVEIS
   ===================================================== */

:root {

    /* =======================================================
       CORES
    ======================================================= */

    --color-white:          #ffffff;
    --color-black:          #000000;

    /* Texto */
    --color-text:           #1d1d1d;
    --color-text-muted:     #636363;
    --color-text-dark:      #222222;
    --color-text-medium:    #444444;

    /* Cinzas */
    --color-gray-border:    #bbbbbb;
    --color-gray-divider:   #dddddd;
    --color-gray-light:     #f5f5f5;
    --color-gray-stars:     #4a4a4a;
    --color-gray-dark:      #3b3b3b;
    --color-gray-darkest:   #1a1a1a;

    /* Overlay */
    --color-overlay:        rgba(0, 0, 0, 0.75);

    /* =======================================================
       LAYOUT
    ======================================================= */

    /* Limita a largura útil em telas muito grandes */
    --page-pad: max(7%, calc(50% - 680px));

    /* =======================================================
       TIPOGRAFIA
    ======================================================= */

    --font-main: 'Montserrat', sans-serif;

    /* Escala Desktop / Notebook */

    --fs-xs:      0.8125rem; /* 13px */
    --fs-sm:      0.9375rem; /* 15px */
    --fs-base:    1.125rem;  /* 18px */
    --fs-md:      1.25rem;   /* 20px */
    --fs-lg:      1.525rem;  /* 26px */
    --fs-xl:      1.995rem;  /* 34px */
    --fs-2xl:     3.125rem;  /* 50px */

    /* Hero principal */
    --fs-hero:    2.6rem;  /* 50px */
    /* 40px → 72px */

    /* Peso */
    --fw-light:   300;
    --fw-regular: 400;
    --fw-medium:  500;
    --fw-semibold:600;
    --fw-bold:    700;

    /* Altura de linha */
    --lh-tight:   1.1;
    --lh-normal:  1.5;
    --lh-loose:   1.8;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}


/* =======================================================
   FULL HD
======================================================= */

@media (min-width: 1920px) {

    :root {

        --fs-hero:    2.8rem;  /* 50px */
        --fs-xs:      0.875rem;   /* 14px */
        --fs-sm:      1.035rem;       /* 16px */
        --fs-base:    1.25rem;    /* 20px */
        --fs-md:      1.375rem;   /* 22px */
        --fs-lg:      1.600rem;   /* 30px */
        --fs-xl:      2.205rem;     /* 40px */
        --fs-2xl:     3.75rem;    /* 60px */

        --page-pad: 10%;
    }

}

/* =======================================================
   MOBILE E TABLET
======================================================= */

@media (max-width: 768px) {

    :root {

        --fs-hero:    2.5rem;  /* 50px */
        --fs-xs:      0.6875rem; /* 11px */
        --fs-sm:      0.8125rem; /* 13px */
        --fs-base:    1rem;      /* 16px */
        --fs-md:      1.125rem;  /* 18px */
        --fs-lg:      1.375rem;  /* 22px */
        --fs-xl:      1.75rem;   /* 28px */
        --fs-2xl:     2.5rem;    /* 40px */

        --page-pad: 5%;
    }

}


/* =====================================================
   RESET & BASE
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    font-size: clamp(14px, 0.9vw, 18px);
}

body {
    background: var(--color-white);
    color: var(--color-text);
}

h1 {
    font-size: var(--fs-2xl);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--fs-xl);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
}

p {
    font-size: var(--fs-base);
    margin-bottom: 20px;
}


/* =====================================================
   CABEÇALHO
   ===================================================== */
.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px var(--page-pad);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 999;
    border-bottom: 1px solid var(--color-gray-darkest);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1000;
}

.logo img {
    height: clamp(48px, 4.5vw, 78px);
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 40px;
    margin-bottom: 10px;
    justify-content: flex-end;
}

.nav1 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    gap: 5px;
}

.btn-mini {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    background: rgba(255, 255, 255, 0.178);
    backdrop-filter: blur(5px);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: visible;
    transition: background 0.35s ease, color 0.35s ease,
                border-color 0.35s ease, box-shadow 0.4s ease;
}

.btn-mini::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50px;
    border: 2px solid var(--color-white);
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
}

.btn-mini:hover {
    background: var(--color-white);
    border-color: transparent;
    color: var(--color-black);
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.1),
        0 0 28px rgba(255, 255, 255, 0.22);
}

.btn-mini:hover::after {
    animation: btnRippleDark 0.52s ease forwards;
}

.nav2 {
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--color-gray-darkest);
    padding-top: 10px;
}

.nav2 a {
    text-decoration: none;
    color: var(--color-gray-divider);
    font-size: var(--fs-sm);
    font-weight: 700;
    position: relative;
    transition: color 0.25s ease;
}

.nav2 a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0%;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.75);
    transform: translateX(-50%);
    transition: width 0.32s ease;
}

.nav2 a:hover {
    color: rgba(255, 255, 255, 1);
}

.nav2 a:hover::after {
    width: 100%;
}

/* ── Responsivo estrutural: nav compacto (960px) ── */
@media (max-width: 960px) {
    .nav2 { gap: 16px; }
    .nav  { gap: 20px; }
}

/* ── Responsivo estrutural: tablet (860px) ── */
@media (max-width: 860px) {
    .header { padding: 16px 5%; }
}

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
    .logo img { height: 55px; }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav1 { justify-content: flex-start; }

    .nav2 {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .redes {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}


/* =====================================================
   HERO / OUTDOOR
   ===================================================== */
.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Bloco comemorativo 12 anos — emblema no centro da página, texto à esquerda */
.hero-anniversary {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: clamp(104px, 13vh, 150px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: clamp(18px, 2vw, 32px);
    padding: 0 var(--page-pad);
    pointer-events: none;
}
.hero-anniversary-text {
    grid-column: 1;
    justify-self: end;
    margin: 0;
    max-width: 440px;
    text-align: right;
    font-size: var(--fs-base);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.82);
}
.hero-anniversary-emblem {
    grid-column: 2;
    width: clamp(88px, 8vw, 124px);
    height: auto;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: filter 0.45s ease, opacity 0.45s ease;
    pointer-events: auto;
    cursor: default;
}
.hero-anniversary-emblem:hover {
    filter: grayscale(0%);
    opacity: 1;
}
@media (max-width: 600px) {
    .hero-anniversary { display: none; }
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgb(0, 0, 0)          0%,
        rgba(0, 0, 0, 0.85)  45%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--page-pad);
    color: var(--color-white);
}

/* Bloco de texto (esquerda) */
.hero-text {
    max-width: 55%;
    display: flex;
    flex-direction: column;
}

.hero-text h1 {
    font-size: var(--fs-hero);
    font-weight: 800;
    margin-bottom: clamp(12px, 1.2vw, 20px);
    line-height: 1.1;
}

.hero-text p {
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: clamp(20px, 2.5vw, 36px);
    color: rgba(255, 255, 255, 0.85);
}

/* Keyframes — ripple de borda nos botões */
@keyframes btnRippleDark {
    0%   { opacity: 0.65; transform: scale(1);    }
    100% { opacity: 0;    transform: scale(1.22); }
}
@keyframes btnRippleLight {
    0%   { opacity: 0.5;  transform: scale(1);    }
    100% { opacity: 0;    transform: scale(1.22); }
}

/* Botão fundo escuro — fica claro ao passar o mouse */
.btn-hero {
    position: relative;
    display: inline-block;
    width: fit-content;
    padding: clamp(10px, 1vw, 16px) clamp(42px, 3.8vw, 68px);
    background: rgba(255, 255, 255, 0.178);
    backdrop-filter: blur(5px);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.35s ease, color 0.35s ease,
                border-color 0.35s ease, box-shadow 0.4s ease;
    overflow: visible;
}

.btn-hero::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: transparent;
    color: var(--color-black);
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.1),
        0 0 28px rgba(255, 255, 255, 0.22);
}

.btn-hero:hover::after {
    animation: btnRippleDark 0.52s ease forwards;
}

/* Big Numbers — barra no fundo do hero */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px var(--page-pad);
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.0)  100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 5px;
}

.stat-value {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    margin: 0 clamp(20px, 3vw, 60px);
}



@media (max-width: 768px) {
    .hero-stats {
        gap: 0;
        padding: 20px 5%;
        flex-wrap: wrap;
    }
    .hero-stat {
        flex: 0 0 48%;
        padding: 12px 0;
    }
    .hero-stat-divider {
        display: none;
    }
}

/* Cards de destaque (direita) */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 450px;
    flex-shrink: 0;
}

.hero-card {
    display: block;
    background: rgba(30, 30, 30, 0.178);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    color: var(--color-white);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-card:hover {
    background: rgba(40, 40, 40, 0.32);
    border-color: rgba(255, 255, 255, 0.60);
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.04),
        0 0 24px rgba(255, 255, 255, 0.08);
}

.hero-card p {
    font-size: var(--fs-sm);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
}

.hero-card p strong {
    color: #ffffff;
    font-weight: 700;
}

.hero-card-link {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.88);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 16px;
    background: rgba(255, 255, 255, 0.178);
    backdrop-filter: blur(5px);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.88);
    border-radius: 50px;
    position: relative;
    overflow: visible;
    transition: gap 0.25s ease, background 0.35s ease, color 0.35s ease,
                border-color 0.35s ease, box-shadow 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

.hero-card-link::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
}

.hero-card-link:hover {
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    border-color: transparent;
    color: var(--color-black);
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.1),
        0 0 28px rgba(255, 255, 255, 0.22);
}

.hero-card-link:hover::after {
    animation: btnRippleDark 0.52s ease forwards;
}

@media (min-width: 1920px) {
    .hero-text { max-width: 54%; }
    .hero-cards{  width: 580px; }
    .hero-card { padding: 30px;}
}

@media (max-width: 768px) {
    .hero-cards { display: none; }
    .hero-text   { width: 50%; }
}


/* =====================================================
   PILLARS SECTION
   ===================================================== */
.pillars-section {
    background: var(--color-black);
    padding: 30px var(--page-pad);
    text-align: center;
    justify-items: center;
}

.pillars-title {
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.4;
    width: 65%;
    margin-bottom: 30px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 4vw, 56px);
    width: 100%;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
}

.pillar-icon svg {
    width: 35px;
    height: 35px;
    color: var(--color-white);
    transition: transform 0.25s ease;
}

/* Ícones da esquerda/centro-esquerda → deslizam para a direita */
.pillars-grid .pillar-item:nth-child(1) .pillar-icon:hover svg,
.pillars-grid .pillar-item:nth-child(2) .pillar-icon:hover svg {
    transform: translateX(4px);
}

/* Ícones da direita/centro-direita → deslizam para a esquerda */
.pillars-grid .pillar-item:nth-child(3) .pillar-icon:hover svg,
.pillars-grid .pillar-item:nth-child(4) .pillar-icon:hover svg {
    transform: translateX(-4px);
}

.pillar-item h3 {
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.01em;
}

.pillar-item p {
    color: var(--color-gray-light);
    line-height: 1.65;
    text-align: center;
    font-size: var(--fs-sm);
}

@media (min-width: 1920px) {
    .pillars-section  { padding-left: clamp(52px, 5vw, 72px); padding-right: clamp(52px, 5vw, 72px); }
    .pillar-icon svg  { width: 43px; height: 43px; }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
    background: var(--color-black);
    padding: 30px var(--page-pad);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    background: #161616;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-white);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.4s ease, transform 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.feature-card:hover {
    background: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.feature-card-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-card-img img {
    transform: scale(1.04);
}

.feature-card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.feature-card-body h3 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

.feature-card-body p {
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--color-gray-divider);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 6px;
}

.feature-card .btn-mini {
    align-self: flex-start;
    width: fit-content;
    font-size: var(--fs-xs);
}

@media (min-width: 1920px) {
    .services-section {
        padding-left: 90px;
        padding-right: 90px;
    }
    .feature-card-body {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0;
    }
}


/* =====================================================
   CONSULTOR
   ===================================================== */
.consultor {
    position: relative;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.consultor-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 1vw, 28px);
    padding: clamp(28px, 6vw, 48px) var(--page-pad);
    text-align: center;
}

.consultor-title {
    width: 75%;
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.btn-consultor {
    position: relative;
    display: inline-block;
    padding: clamp(12px, 1.1vw, 18px) clamp(36px, 3.5vw, 62px);
    background: var(--color-black);
    border: 1.5px solid var(--color-black);
    border-radius: 50px;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    overflow: visible;
    transition: background 0.35s ease, color 0.35s ease,
                border-color 0.35s ease, box-shadow 0.4s ease;
}

.btn-consultor::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
}

.btn-consultor:hover {
    background: rgba(0, 0, 0, 0);
    border-color: var(--color-black);
    color: var(--color-black);
    box-shadow:
        0 0 0 5px rgba(0, 0, 0, 0.06),
        0 0 28px rgba(0, 0, 0, 0.12);
}

.btn-consultor:hover::after {
    animation: btnRippleLight 0.52s ease forwards;
}

.consultor-eyebrow {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.consultor-sub {
    font-size: var(--fs-sm);
    color: var(--color-text-medium);
    line-height: 1.7;
    max-width: 560px;
    text-align: center;
}

@media (min-width: 1920px) {
    .consultor-sub {
        max-width: 700px;
    }

}

/* =====================================================
   APPS SECTION
   ===================================================== */
.apps-section {
    background: var(--color-black);
    padding: 40px var(--page-pad);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.app-panel {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: var(--color-black);
    overflow: hidden;
    min-height: 480px;
    position: relative;
    transition: background 0.3s ease;
}


.app-panel:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.app-panel-img {
    flex: 0 0 40%;
    overflow: hidden;
    position: relative;
}

.app-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}


.app-panel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;

}

.app-eyebrow {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.app-title {
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.app-desc {
    font-size: var(--fs-sm);
    color: var(--color-gray-divider);
    line-height: 1.65;
    max-width: 350px;
    margin-bottom: 0;
}

.app-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 6px;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.178);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    cursor: pointer;
    overflow: visible;
    position: relative;
    transition: background 0.35s ease, color 0.35s ease,
                border-color 0.35s ease, box-shadow 0.4s ease;
}

.btn-store::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
}

.btn-store:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: transparent;
    color: var(--color-black);
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.1),
        0 0 28px rgba(255, 255, 255, 0.22);
}

.btn-store:hover::after {
    animation: btnRippleDark 0.52s ease forwards;
}

.btn-store svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-store span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: clamp(12px, 0.85vw, 14px);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn-store span small {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.08em;
    opacity: 0.75;
}

@media (max-width: 860px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }
    .app-panel:first-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
    .app-panel {
        min-height: 320px;
    }
    .app-panel-img {
        flex: 0 0 38%;
    }
}

@media (max-width: 560px) {
    .app-panel {
        flex-direction: column;
        align-items: stretch;
        min-height: unset;
    }
    .app-panel-img {
        flex: unset;
        height: 220px;
    }
}

/* =====================================================
   PARCERIA COMERCIAL — recrutamento de gerentes externos
   ===================================================== */
.partner-section {
    background: var(--color-black);
    padding: clamp(64px, 8vw, 110px) var(--page-pad);
}
.partner-inner {
    display: flex;
    align-items: center;
    gap: clamp(40px, 5vw, 80px);
    max-width: 1200px;
    margin: 0 auto;
}
.partner-text { flex: 1 1 42%; }
.partner-sub {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 460px;
}
.partner-cards {
    flex: 1 1 58%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(14px, 1.6vw, 22px);
}
.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: clamp(22px, 2.2vw, 30px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.partner-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}
.partner-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}
.partner-icon svg { width: 21px; height: 21px; }
.partner-card h3 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}
.partner-card p {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .partner-inner { flex-direction: column; align-items: stretch; }
    .partner-text { flex: none; }
    .partner-sub { max-width: none; }
}
@media (max-width: 520px) {
    .partner-cards { grid-template-columns: 1fr; }
}


/* =====================================================
   FAQ
   ===================================================== */
.faq {
    padding: 40px var(--page-pad);
    background: var(--color-black);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header h2 {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: clamp(12px, 1.5vw, 20px);
    letter-spacing: -0.01em;
}

.faq-header p {
    font-size: var(--fs-sm);
    color: var(--color-gray-divider);
    line-height: 1.7;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-left: auto;
    margin-right: auto;
}

.faq-col {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.829);
    text-align: left;
    font-family: var(--font-main);
    font-size: var(--fs-sm);
    transition: color 0.2s ease;
}

.faq-question span {
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--color-white);
}

.faq-chevron {
    width: clamp(16px, 1.2vw, 20px);
    height: clamp(16px, 1.2vw, 20px);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer.open {
    max-height: 400px;
}

.faq-answer p {
    padding-bottom: clamp(14px, 1.6vw, 22px);
    color: rgba(255, 255, 255, 0.55);
    font-size: var(--fs-xs);
    line-height: 1.75;
    margin-bottom: 0;
}

.faq-answer p:hover {
    color: var(--color-white);
}

@media (min-width: 1920px) {
    .faq {
        padding: 80px;
    }
    .faq-columns {
        max-width: 1600px;
    }
}

@media (max-width: 860px) {
    .faq-columns {
        grid-template-columns: 1fr;
    }
    .faq-col + .faq-col {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0;
    }
}

.faq-cta {
    text-align: center;
    margin-top: 30px;
}

/* =====================================================
   PARCEIROS
   ===================================================== */
.parceiros {
    background: var(--color-white);
    padding: 60px var(--page-pad);
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.parceiros-eyebrow {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: clamp(20px, 2vw, 32px);
}

/* máscara com fade nas bordas */
.parceiros-mask {
    position: relative;
    overflow: hidden;
}

.parceiros-mask::before,
.parceiros-mask::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 8vw, 140px);
    z-index: 2;
    pointer-events: none;
}

.parceiros-mask::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.parceiros-mask::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* faixa animada */
.parceiros-track {
    display: flex;
    align-items: center;
    gap: clamp(48px, 6vw, 96px);
    width: max-content;
    animation: marquee 18s linear infinite;
}

.parceiros-track:hover {
    animation-play-state: paused;
}

.parceiros-track img {
    height: 80px;
    width: auto;
    display: block;
    filter: grayscale(1) opacity(0.45);
    transition: filter 0.3s ease;
    flex-shrink: 0;
}

.parceiros-track img:hover {
    filter: grayscale(0) opacity(1);
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

@media (min-width: 1920px) {
    .parceiros {
        padding: 90px;
    }
    .parceiros-track img {
    height: 100px;
}
}

/* =====================================================
   MAPA
   ===================================================== */
.mapa {
    background: var(--color-white);
    padding: 10px var(--page-pad);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.mapa-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    width: 100%;
    max-width: 880px;
}

.mapa-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-self: end;
    max-width: 520px;
    width: 100%;
}

.mapa-eyebrow {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.mapa-title {
    font-size: 50px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.mapa-title strong {
    font-size: 1.55em;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.mapa-caption {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 500px;
}

.mapa-caption strong {
    color: var(--color-black);
    font-weight: 700;
}

/* Legenda flutuante — lado esquerdo do mapa */
.mapa-legend {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.mapa-legend-row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.mapa-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mapa-legend-dot--active {
    background: var(--color-gray-dark);
}

.mapa-legend-dot--inactive {
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.3);
}

.mapa-legend-text {
    font-family: var(--font-main);
    font-size: clamp(8px, 0.6vw, 10px);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
}

/* Stat de estados — canto inferior direito do mapa */
.mapa-stat {
    position: absolute;
    right: 60px;
    bottom: 8%;
    text-align: right;
}

.mapa-stat-number {
    font-family: var(--font-main);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-black);
    line-height: 1;
    display: block;
    text-align: center;
}

.mapa-stat-label {
    font-family: var(--font-main);
    font-size: clamp(8px, 0.6vw, 10px);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
    display: block;
    margin-top: 4px;
}

/* SVG Map */
.mapa-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#brazil-map-container {
    width: 100%;
    max-width: 480px;
}

#brazil-map-container svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Contorno externo do mapa — técnica de 2 passadas */
#brazil-map-container .outer-border .border-stroke {
    fill: var(--color-white);
    stroke: rgba(0, 0, 0, 0.5);
    stroke-width: 2.3;
    stroke-linejoin: round;
}
#brazil-map-container .outer-border .border-fill {
    fill: var(--color-white);
    stroke: none;
}

#brazil-map-container .states .state {
    fill: transparent;
    stroke: rgba(0, 0, 0, 0.18);
    stroke-width: 1.15;
    transition: fill 0.3s ease;
    cursor: default;
}

#brazil-map-container .states .state.active {
    fill: rgba(0, 0, 0, 0.055);
    cursor: pointer;
}

#brazil-map-container .states .state.active:hover {
    fill: var(--color-gray-dark);
}

#brazil-map-container .state-labels text {
    font-family: var(--font-main);
    font-size: 9px;
    font-weight: 700;
    fill: rgba(0, 0, 0, 0.45);
    letter-spacing: 0.04em;
    pointer-events: none;
}

/* Tooltip */
.mapa-tooltip {
    position: fixed;
    background: var(--color-gray-dark);
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease;
    z-index: 9999;
    white-space: nowrap;
}

.mapa-tooltip.visible {
    opacity: 1;
}

@media (min-width: 1920px) {
    .mapa {
        padding: 68px var(--page-pad);
    }

    .mapa-inner {
        max-width: 1173px;
        grid-template-columns: 1fr 1.15fr;
    }

    .mapa-left {
        max-width: 578px;
    }

    .mapa-title {
        font-size: 58px;
    }

    #brazil-map-container {
        max-width: 561px;
    }

    .mapa-stat {
        right: 40px;
        bottom: 6%;
    }
}



@media (max-width: 860px) {
    .mapa-inner {
        grid-template-columns: 1fr;
    }

    .mapa-left {
        align-items: center;
        text-align: center;
    }

    .mapa-caption {
        max-width: 100%;
    }

    #brazil-map-container {
        max-width: 380px;
    }
}


/* =====================================================
   SELOS GPTW
   ===================================================== */
.selos {
    background: var(--color-white);
    padding: 60px var(--page-pad);
    display: flex;
    justify-content: center;
}

.selos-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
    width: 100%;
}

.selos-text {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.3vw, 22px);
}

.selos-eyebrow {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.selos-title {
    font-size: var(--fs-xl);
    font-weight: 300;
    color: var(--color-black);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0;
}

.selos-title strong {
    font-weight: 800;
}

.selos-desc {
    font-size: var(--fs-xs);
    color: var(--color-text-medium);
    line-height: 1.7;
    max-width: 400px;
    margin: 0;
}

.btn-selos {
    position: relative;
    display: inline-block;
    padding: clamp(11px, 1vw, 16px) clamp(28px, 2.8vw, 48px);
    background: var(--color-black);
    border: 1.5px solid var(--color-black);
    border-radius: 50px;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    overflow: visible;
    transition: background 0.35s ease, color 0.35s ease,
                border-color 0.35s ease, box-shadow 0.4s ease;
}

.btn-selos::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
}

.btn-selos:hover {
    background: rgba(0, 0, 0, 0);
    border-color: var(--color-black);
    color: var(--color-black);
    box-shadow:
        0 0 0 5px rgba(0, 0, 0, 0.06),
        0 0 28px rgba(0, 0, 0, 0.12);
}

.btn-selos:hover::after {
    animation: btnRippleLight 0.52s ease forwards;
}

.selos-badges {
    display: flex;
    gap: clamp(16px, 2vw, 28px);
    align-items: center;
    flex-shrink: 0;
}

.selos-badge {
    width: clamp(140px, 14vw, 210px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.selos-badge img {
    width: 80%;
    height: auto;
    display: block;
}

/* placeholder quando imagem nao existe */
.selos-badge-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 12px;
}

.selos-badge-placeholder span {
    font-size: clamp(8px, 0.6vw, 10px);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.4);
    line-height: 1.3;
    text-transform: uppercase;
}

@keyframes btnRippleLight {
    0%   { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.18); }
}

@media (min-width: 1920px) {
    .selos { padding: 90px var(--page-pad); }
    .selos-desc { max-width: 500px;}
}

@media (max-width: 768px) {
    .selos-inner {
        grid-template-columns: 1fr;
    }
    .selos-badges {
        justify-content: flex-start;
    }
}



/* =====================================================
   SOCIAL FEED
   ===================================================== */
.social-feed {
    background: var(--color-black);
    padding: 50px 50px;
}

.social-feed-header {
    padding: 0px var(--page-pad);
    margin-left: -40PX;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 24px;
    flex-wrap: wrap;
}

/* linha seta + trilho + seta */
.social-feed-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-feed-eyebrow {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-gray-divider);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.social-feed-title {
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: -0.01em;
    line-height: 1;
    margin: 0;
}

.social-feed-btn {
    background: none;
    border: none;
    color: var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.social-feed-btn:hover {
    color: var(--color-white);
}

.social-feed-btn svg {
    width: clamp(20px, 1.8vw, 28px);
    height: clamp(20px, 1.8vw, 28px);
}

/* trilho de scroll horizontal */
.social-feed-track {
    display: flex;
    gap: 10px;
    padding: 5px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    /* esconde scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.social-feed-track::-webkit-scrollbar {
    display: none;
}

.social-feed-track.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

/* card do post */
.social-post {
    flex-shrink: 0;
    width: 250px;
    aspect-ratio: 3 / 4;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    scroll-snap-align: start;
    outline: 1px solid transparent;
    outline-offset: -1px;
    transition: outline-color 0.25s ease, box-shadow 0.25s ease;
}

.social-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    pointer-events: none; /* clique passa para o link */
}

.social-post:hover {
    outline-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

@media (min-width: 1920px) {
    .social-feed {
        padding: 70px 50px;
    }
    .social-feed-header {
        padding: 0px var(--page-pad);
    }
    .social-feed-row {
        padding: 0px 40px;
    }
    .social-post {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .social-post {
        width: clamp(220px, 72vw, 300px);
    }
    .social-feed-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =====================================================
   SIDEBAR REDES SOCIAIS (fixo lateral esquerda)
   ===================================================== */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 998;
    mix-blend-mode: difference;
    padding: clamp(14px, 1vw, 22px) clamp(10px, 0.7vw, 16px);
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    padding: clamp(10px, 0.7vw, 16px) 0;
    transition: transform 0.25s ease;
}

.social-sidebar a:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.social-sidebar a:hover {
    transform: translateX(3px);
}

.social-sidebar svg {
    width: clamp(18px, 1.4vw, 26px);
    height: clamp(18px, 1.4vw, 26px);
    display: block;
}

@media (max-width: 768px) {
    .social-sidebar { display: none; }
}


/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    mix-blend-mode: difference;
    transition: transform 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateX(-3px);
}

.whatsapp-float svg {
    width: clamp(36px, 2.6vw, 52px);
    height: clamp(36px, 2.6vw, 52px);
}


/* =====================================================
   MODAL — SERVIÇOS
   ===================================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.modal-panel {
    background: rgba(18, 18, 18, 0.493);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 60px rgba(255, 255, 255, 0.06),
        0 32px 80px rgba(0, 0, 0, 0.7);
    width: 68%;
    position: relative;
    padding: 50px;
    transform: translateY(20px);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.is-open .modal-panel {
    transform: translateY(0);
}

.modal-close {
    background: none;
    position: absolute;
    top: 13px;
    right: 13px;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s ease;
    line-height: 0;
}

.modal-close:hover { color: var(--color-white); }

.modal-close svg {
    width: 15px;
    height: 15px;
}

/* Layout interno 2 colunas */
.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;


}

.modal-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.modal-title {
    font-family: var(--font-main);
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.modal-desc {
    font-family: var(--font-main);
    font-size: var(--fs-sm);
    color: var(--color-gray-divider);
    line-height: 1.7;
    border-left: 3px solid var(--color-gray-divider);
    padding-left: 14px;
    margin-top: 4px;
}

/* Case prático */
.modal-case {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: background 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.modal-case:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.16);
}

.case-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.788);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.case-examples {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.case-example {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.case-examples li:first-child {
    padding-top: 0;
}

.case-examples li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.case-example-num {
    font-family: var(--font-main);
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.788);
    min-width: 14px;
    padding-top: 2px;
    flex-shrink: 0;
}

.case-example-text {
    font-family: var(--font-main);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
}

/* Tags / chips — abaixo da lista de features, coluna direita */
.modal-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-gray-border);
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    cursor: default;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.modal-tag:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.38);
    color: rgba(255, 255, 255, 0.90);
}

/* Footer centralizado com CTA */
.modal-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

/* CTA — botão verde WhatsApp */
.modal-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 22px;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.08);
    border: 1.5px solid rgba(37, 211, 102, 0.28);
    color: rgba(37, 211, 102, 0.72);
    font-family: var(--font-main);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    overflow: visible;
    transition: background 0.35s ease, border-color 0.35s ease,
                color 0.35s ease, box-shadow 0.4s ease;
}

.modal-cta::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50px;
    border: 1.5px solid rgba(37, 211, 102, 0.7);
    opacity: 0;
    pointer-events: none;
}

.modal-cta:hover {
    background: rgba(37, 211, 102, 0.88);
    border-color: transparent;
    color: #0a0a0a;
    box-shadow:
        0 0 0 4px rgba(37, 211, 102, 0.1),
        0 0 22px rgba(37, 211, 102, 0.28);
}

.modal-cta:hover::after {
    animation: btnRippleGreen 0.52s ease forwards;
}

@keyframes btnRippleGreen {
    0%   { opacity: 0.6; transform: scale(1);    }
    100% { opacity: 0;   transform: scale(1.28); }
}

/* Features — coluna direita */
.modal-right {
    padding-top: 0;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-features li {
    font-family: var(--font-main);
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.55;
    padding: 13px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    cursor: default;
    transition: background 0.22s ease, color 0.22s ease;
}

.modal-features li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }

.modal-features li:hover {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
}

.modal-features li:hover::before {
    background: rgba(255, 255, 255, 0.85);
}

.modal-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
    margin-top: 7px;
    transition: background 0.22s ease;
}

/* Botão SAIBA MAIS como button — mantém estilo do .btn-mini */
.btn-saiba-mais {
    cursor: pointer;
    font-family: var(--font-main);
}

@media (min-width: 1920px) {
    .modal-panel {
        width: 100%;
        max-width: 1200px;
        padding: 100px;
    }
}


/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: var(--color-black);
    position: relative;
    overflow: hidden;
}

/* linha branca no topo */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.55) 30%,
        rgba(255, 255, 255, 0.55) 70%,
        transparent 100%
    );
}

.footer-top {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 25px;
}

.footer-logo {
    width: 125px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.footer-tagline {
    font-size: var(--fs-sm);
    color: var(--color-gray-divider);
    line-height: 1.65;
    max-width: 600px;
    text-align: center;
}

/* ── GRID 4 colunas ── */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    padding: 20px var(--page-pad);
}

.footer-col-label {
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gray-divider);
    margin: 0 0 20px;
}

.footer-col-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-nav a {
    font-size: var(--fs-sm);
    color: var(--color-gray-divider);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col-nav a:hover {
    color: rgb(255, 255, 255);
}

/* ── Coluna contato ── */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-sm);
    color: var(--color-gray-divider);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}

.footer-contact-item:hover {
    color: rgb(255, 255, 255);
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.9;
}

.footer-address {
    align-items: flex-start;
}

.footer-address svg {
    margin-top: 3px;
}

/* ── Coluna QR ── */
.footer-qr-col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-qr-card {
    margin-top: -180px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 200px;
}

.footer-qr-card:hover {
    background: rgba(255,255,255,0.075);
    border-color: rgba(255,255,255,0.2);
}

.footer-qr-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-qr-card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gray-divider);
}

.footer-qr-card-wa {
    width: 13px;
    height: 13px;
    color: var(--color-gray-divider);
    flex-shrink: 0;
}

.footer-qr-frame {
    background: #0d0d0d;
    padding: clamp(12px, 1.4vw, 16px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-qr-img {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
    border-radius: 2px;
}

.footer-qr-card-bottom {
    padding: 11px 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-qr-label {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-gray-divider);
    line-height: 1.45;
}

.footer-qr-sub {
    font-size: var(--fs-xs);
    color: var(--color-gray-divider);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* ── Rodapé inferior ── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    margin-bottom: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copy {
    font-size: var(--fs-xs);
    color: var(--color-gray-divider);
    text-align: center;
    line-height: 1.7;
}

/* ── Responsivo ── */
@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(24px, 4vw, 48px);
    }

    .footer-qr-col {
        grid-column: span 2;
        justify-content: flex-start;
    }

    .footer-qr-card {
        flex-direction: row;
        max-width: 100%;
    }

    .footer-qr-card-top { display: none; }

    .footer-qr-frame {
        padding: 10px;
        flex-shrink: 0;
    }

    .footer-qr-img {
        width: 72px;
        max-width: 72px;
    }

    .footer-qr-card-bottom {
        border-top: none;
        border-left: 1px solid rgba(255,255,255,0.07);
        justify-content: center;
    }
}

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

    .footer-qr-col {
        grid-column: span 1;
    }
}

/* =====================================================
   SCROLL REVEAL — utilitário global
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   SECTION BASE — padrão de seções internas
   ===================================================== */
.pg-section {
    padding: 40px var(--page-pad);
}
.pg-section-dark  { background: var(--color-black); }
.pg-section-muted { background: #0a0a0a; }
.pg-section-white { background: var(--color-white); }
.pg-section-gray  { background: #f4f4f4; }

.section-label {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 14px;
    display: block;
}
.section-label.dark { color: rgba(0,0,0,0.38); }

.section-title {
    font-size: var(--fs-xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    margin-bottom: clamp(14px, 2vw, 24px);
}
.section-title.light { color: var(--color-white); }
.section-title.dark  { color: #0a0a0a; }

.section-sub {
    font-size: var(--fs-base);
    line-height: 1.7;
    max-width: 580px;
}
.section-sub.light { color: rgba(255,255,255,0.58); }
.section-sub.dark  { color: rgba(0,0,0,0.55); }

/* =====================================================
   TWO-COL SPLIT — layout padrão
   ===================================================== */
.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }
.split-img {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.split-img:hover img { transform: scale(1.03); }
.split-text { display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 860px) {
    .split-row, .split-row.reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* =====================================================
   PAGE HERO — hero com imagem (pages internas)
   ===================================================== */
.page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 1.4s ease;
}
.page-hero.loaded .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(0,0,0,0.93) 0%,
        rgba(0,0,0,0.78) 45%,
        rgba(0,0,0,0.38) 100%
    );
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(100px, 14vh, 160px) var(--page-pad) clamp(36px, 4vw, 56px);
    max-width: 820px;
}
.page-hero-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 20px;
}
.page-hero h1 {
    font-size: var(--fs-2xl);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.04;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}
.page-hero p {
    font-size: var(--fs-base);
    color: rgba(255,255,255,0.62);
    line-height: 1.68;
    max-width: 520px;
    margin-bottom: 36px;
}
.page-hero-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    gap: clamp(8px, 1vw, 14px);
    padding: clamp(18px, 2.2vw, 28px) var(--page-pad);
    border-top: 1px solid rgba(255,255,255,0.07);
    background: rgba(0,0,0,0.28);
    backdrop-filter: blur(6px);
}
.page-hero-bar-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: clamp(12px, 1.4vw, 18px) clamp(14px, 1.6vw, 22px);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.page-hero-bar-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.22);
}
.phb-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.page-hero-bar-card p {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 768px) {
    .page-hero h1 { font-size: var(--fs-xl); }
    .page-hero-bar { flex-wrap: wrap; }
    .page-hero-bar-card { flex: 1 1 calc(50% - 8px); }
}

/* =====================================================
   BTN-DARK — botão claro sobre fundo escuro
   ===================================================== */
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-main);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn-dark:hover {
    background: #f0f0f0;
    box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
