@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* ---- Paleta Ultra Saúde Premium (Baseada na seleção HSL do novo site) ---- */
    --primary: hsl(215, 65%, 20%);          /* Azul Escuro Principal */
    --primary-light: hsl(215, 60%, 28%);    /* Azul Escuro Secundário */
    --primary-dark: hsl(215, 60%, 12%);     /* Azul Escuro Profundo */
    
    --secondary: #e61e26;        /* Vermelho Oficial da Logo */
    --secondary-dark: #be141a;   /* Vermelho Escuro */
    --secondary-light: #ffffff;  /* Branco */
    --secondary-ultra-light: #eef3fc; /* Azul Hospitalar Suave */
    
    /* ---- Acento Quente Acolhedor (Laranja Suave - Toque Humano) ---- */
    --accent: hsl(25, 85%, 55%);            /* Laranja Acolhimento */
    --accent-light: hsl(25, 75%, 65%);
    --accent-bg: hsl(25, 60%, 95%);
    
    /* ---- Neutros e Textos ---- */
    --ink: hsl(215, 50%, 15%);              /* Texto Principal Escuro */
    --ink-soft: hsl(215, 20%, 45%);         /* Texto Secundário Muted */
    --muted: #bbbbbd;                        /* Cinza Médio da Logo */
    --line: #bbbbbd;                         /* Borda padrão com Cinza Médio */
    --line-soft: #e2e2e4;                    /* Borda suave baseada no Cinza Médio */
    --cream: hsl(210, 30%, 98%);            /* Fundo geral da página */
    --paper: hsl(0, 0%, 100%);              /* Fundo de cards (Branco) */
    --white: #ffffff;
    
    /* ---- Tipografia ---- */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* ---- Bordas e Sombras ---- */
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    --shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 35px -5px rgba(23, 43, 77, 0.08), 0 10px 15px -5px rgba(23, 43, 77, 0.04);
    
    --maxw: 1200px;
    --gutter: clamp(20px, 5vw, 64px);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { 
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
}

html { 
    scroll-behavior: smooth; 
    -webkit-text-size-adjust: 100%; 
    text-size-adjust: 100%; 
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

p { 
    color: var(--ink-soft);
}

a { 
    color: inherit; 
    text-decoration: none; 
}

img { 
    display: block; 
    max-width: 100%; 
}

/* ---------------- Layout ---------------- */
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section { 
    padding-block: clamp(60px, 8vw, 120px); 
}

.section-sm { 
    padding-block: clamp(44px, 6vw, 80px); 
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary);
}

.eyebrow::before {
    content: "";
    width: 22px; 
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.eyebrow.on-dark { 
    color: var(--secondary-light); 
}

.eyebrow.on-dark::before { 
    background: var(--secondary-light); 
}

.lead { 
    font-size: clamp(17px, 1.4vw, 20px); 
    color: var(--ink-soft); 
    line-height: 1.6; 
}

/* ---------------- Buttons ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
    padding: 15px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn svg { 
    width: 19px; 
    height: 19px; 
}

.btn:active { 
    transform: translateY(1px); 
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(20, 37, 65, 0.15);
}

.btn-primary:hover { 
    background: var(--secondary); 
    color: white;
    transform: translateY(-2px); 
    box-shadow: 0 12px 28px rgba(230, 30, 38, 0.25); 
}

.btn-wa { 
    background: #1faa55; 
    color: #fff; 
    box-shadow: 0 8px 22px rgba(31, 170, 85, 0.2); 
}

.btn-wa:hover { 
    background: #198f47; 
    transform: translateY(-2px); 
    box-shadow: 0 12px 30px rgba(25, 143, 71, 0.3); 
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(230, 30, 38, 0.15);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(230, 30, 38, 0.25);
}

.btn-ghost { 
    background: transparent; 
    color: var(--primary); 
    border-color: var(--secondary-light); 
}

.btn-ghost:hover { 
    background: var(--secondary-ultra-light); 
    border-color: var(--secondary); 
    transform: translateY(-2px); 
}

.btn-light { 
    background: #fff; 
    color: var(--primary); 
    box-shadow: var(--shadow-sm); 
}

.btn-light:hover { 
    transform: translateY(-2px); 
    box-shadow: var(--shadow); 
}

.btn-lg { 
    padding: 17px 32px; 
    font-size: 17px; 
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.link-arrow:hover { 
    gap: 12px; 
    color: var(--secondary); 
}

.link-arrow svg { 
    width: 17px; 
    height: 17px; 
}

/* ---------------- Header / Nav ---------------- */
.site-header {
    position: sticky; 
    top: 0; 
    z-index: 90;
    background: rgba(245, 247, 250, 0.82);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.site-header.scrolled { 
    border-bottom-color: var(--line); 
    box-shadow: 0 6px 24px rgba(20, 37, 65, 0.05); 
    background: rgba(255, 255, 255, 0.92); 
}

.nav {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    gap: 24px; 
    min-height: 96px;
    padding-block: 8px;
}

.brand { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
}

.brand-logo {
    max-height: 90px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.site-footer .brand-logo {
    max-height: 90px;
}

.mobile-menu .brand-logo {
    max-height: 50px;
}

.brand-mark {
    width: 44px; 
    height: 44px; 
    border-radius: 13px;
    background: linear-gradient(150deg, var(--primary), var(--secondary));
    display: grid; 
    place-items: center;
    box-shadow: 0 6px 16px rgba(20, 37, 65, 0.15);
    position: relative; 
    flex: none;
}

.brand-mark::before, .brand-mark::after {
    content: ""; 
    position: absolute; 
    background: #fff; 
    border-radius: 2px;
}

.brand-mark::before { 
    width: 18px; 
    height: 5px; 
}

.brand-mark::after { 
    width: 5px; 
    height: 18px; 
}

.brand-name { 
    font-family: var(--font-display); 
    font-weight: 800; 
    font-size: 20px; 
    line-height: 1; 
    letter-spacing: -0.02em; 
    color: var(--ink); 
}

.brand-name b { 
    color: var(--secondary); 
    font-weight: 800; 
}

.brand-name span { 
    display: block; 
    font-size: 10.5px; 
    letter-spacing: 0.32em; 
    text-transform: uppercase; 
    color: var(--muted); 
    font-weight: 700; 
    margin-top: 4px; 
}

.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 4px; 
}

.nav-links a {
    font-family: var(--font-display); 
    font-weight: 600; 
    font-size: 15.5px;
    color: var(--ink-soft); 
    padding: 9px 12px; 
    border-radius: 10px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active { 
    color: var(--secondary); 
    background: var(--secondary-ultra-light); 
}

.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.nav-phone {
    display: inline-flex; 
    align-items: center; 
    gap: 9px;
    font-family: var(--font-display); 
    font-weight: 700; 
    color: var(--ink);
    font-size: 15.5px; 
    white-space: nowrap;
    transition: var(--transition);
}

.nav-phone:hover {
    color: var(--secondary);
}

.nav-phone svg { 
    width: 18px; 
    height: 18px; 
    color: var(--secondary); 
}

.nav-wa-link {
    display: inline-flex; 
    align-items: center; 
    gap: 9px;
    font-family: var(--font-display); 
    font-weight: 700; 
    color: var(--ink);
    font-size: 15.5px; 
    white-space: nowrap;
    transition: var(--transition);
}

.nav-wa-link:hover {
    color: #1faa55;
}

.nav-wa-link svg { 
    width: 18px; 
    height: 18px; 
    color: #1faa55; 
}

.nav-toggle { 
    display: none; 
}

@media (max-width: 1300px) { 
    .nav-phone, .nav-wa-link { 
        display: none; 
    } 
}

@media (max-width: 1040px) { 
    .nav-links a { 
        font-size: 14.5px; 
        padding: 8px 9px; 
    } 
}

@media (max-width: 940px) {
    .nav-links, .nav-actions { 
        display: none; 
    }
    .nav-toggle {
        display: inline-grid; 
        place-items: center; 
        width: 46px; 
        height: 46px;
        border-radius: 12px; 
        border: 1px solid var(--line); 
        background: #fff; 
        cursor: pointer;
    }
    .nav-toggle span { 
        width: 20px; 
        height: 2px; 
        background: var(--ink); 
        border-radius: 2px; 
        position: relative; 
        transition: var(--transition);
    }
    .nav-toggle span::before, .nav-toggle span::after { 
        content:""; 
        position: absolute; 
        left: 0; 
        width: 20px; 
        height: 2px; 
        background: var(--ink); 
        border-radius: 2px; 
        transition: var(--transition);
    }
    .nav-toggle span::before { 
        top: -6px; 
    }
    .nav-toggle span::after { 
        top: 6px; 
    }
    
    .nav-toggle.active span {
        background: transparent;
    }
    .nav-toggle.active span::before {
        transform: rotate(45deg);
        top: 0;
    }
    .nav-toggle.active span::after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.mobile-menu {
    position: fixed; 
    inset: 0; 
    z-index: 100;
    background: var(--cream);
    padding: 24px var(--gutter);
    display: none; 
    flex-direction: column; 
    gap: 6px;
}

.mobile-menu.open { 
    display: flex; 
}

.mobile-menu .mm-top { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin-bottom: 18px; 
}

.mobile-menu a.mm-link { 
    font-family: var(--font-display); 
    font-weight: 700; 
    font-size: 26px; 
    padding: 14px 0; 
    border-bottom: 1px solid var(--line); 
    color: var(--ink); 
}

.mm-close { 
    width: 46px; 
    height: 46px; 
    border-radius: 12px; 
    border: 1px solid var(--line); 
    background: #fff; 
    font-size: 24px; 
    cursor: pointer; 
    line-height: 1; 
}

/* ---------------- Hero A Section ---------------- */
.heroA {
    position: relative;
    background:
      radial-gradient(120% 90% at 85% -10%, var(--secondary-ultra-light), transparent 55%),
      radial-gradient(80% 70% at -10% 110%, var(--accent-bg), transparent 50%),
      var(--cream);
    overflow: hidden;
}

.heroA-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
    padding-block: clamp(48px, 6vw, 88px) clamp(60px, 7vw, 104px);
}

.heroA-copy { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
}

.heroA h1 { 
    font-size: clamp(34px, 4vw, 52px); 
    font-weight: 800; 
    margin-top: 22px; 
}

.heroA h1 em { 
    font-style: normal; 
    color: var(--secondary); 
    position: relative; 
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heroA .lead { 
    margin-top: 22px; 
    max-width: 32em; 
    font-size: clamp(17px, 1.4vw, 20px); 
}

.heroA-cta { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 14px; 
    margin-top: 34px; 
}

.heroA-trust { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px 22px; 
    margin-top: 34px; 
}

.heroA-trust .t { 
    display: inline-flex; 
    align-items: center; 
    gap: 9px; 
    font-weight: 700; 
    font-family: var(--font-display); 
    font-size: 15px; 
    color: var(--ink-soft); 
}

.heroA-trust svg { 
    width: 19px; 
    height: 19px; 
    color: var(--secondary); 
    flex: none; 
}

.heroA-media { 
    position: relative; 
}

.heroA-media-mobile {
    display: none !important;
}

.heroA-photo { 
    aspect-ratio: 4/5; 
    border-radius: var(--radius-xl); 
    box-shadow: var(--shadow-lg); 
}

.heroA-badge {
    position: absolute; 
    left: -26px; 
    bottom: 40px;
    background: #fff; 
    border-radius: var(--radius-lg); 
    padding: 18px 22px;
    box-shadow: var(--shadow); 
    display: flex; 
    align-items: center; 
    gap: 14px;
    border: 1px solid var(--line-soft);
}

.heroA-badge .ic { 
    width: 48px; 
    height: 48px; 
    border-radius: 14px; 
    background: #1faa55; 
    color: #fff; 
    display: grid; 
    place-items: center; 
    flex: none; 
}

.heroA-badge .ic svg { 
    width: 26px; 
    height: 26px; 
}

.heroA-badge b { 
    font-family: var(--font-display); 
    font-size: 17px; 
    display: block; 
}

.heroA-badge span { 
    font-size: 13.5px; 
    color: var(--muted); 
}

.heroA-badge2 {
    position: absolute; 
    right: -18px; 
    top: 34px;
    background: #fff; 
    border-radius: var(--radius); 
    padding: 14px 18px;
    box-shadow: var(--shadow); 
    border: 1px solid var(--line-soft);
    display: flex; 
    align-items: center; 
    gap: 12px;
}

.heroA-badge2 .av { 
    display: flex; 
}

.heroA-badge2 .av span { 
    width: 32px; 
    height: 32px; 
    border-radius: 50%; 
    border: 2px solid var(--white); 
    margin-left: -10px; 
    background: var(--secondary-light); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.heroA-badge2 .av span:first-child { 
    margin-left: 0; 
}

.heroA-badge2 b { 
    font-family: var(--font-display); 
    font-size: 14px; 
}

.heroA-badge2 small { 
    display:block; 
    color: var(--muted); 
    font-size: 12px; 
}

@media (max-width: 900px) {
    .heroA-grid { 
        grid-template-columns: 1fr; 
    }
    .heroA-media-desktop {
        display: none !important;
    }
    .heroA-media-mobile {
        display: block !important;
        width: 100%;
        margin-block: 28px;
    }
    .heroA-media-mobile .heroA-photo {
        aspect-ratio: 16/10 !important;
    }
}

@media (max-width: 480px) {
    .heroA-badge, .heroA-badge2 {
        display: none !important;
    }
}

/* ---------------- Partners Strip ---------------- */
.partners { 
    background: var(--paper); 
    border-block: 1px solid var(--line-soft); 
}

.partners .wrap { 
    display: flex; 
    align-items: center; 
    gap: 28px; 
    flex-wrap: wrap; 
    padding-block: 24px; 
}

.partners .label { 
    font-family: var(--font-display); 
    font-weight: 700; 
    font-size: 13px; 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
    color: var(--muted); 
}

.partners .logos { 
    display: flex; 
    gap: 14px; 
    flex-wrap: wrap; 
    flex: 1; 
}

.logo-ph { 
    height: 40px; 
    min-width: 110px; 
    flex: 1; 
    max-width: 150px; 
    border-radius: 8px; 
    background: repeating-linear-gradient(135deg, var(--line) 0 8px, var(--line-soft) 8px 16px); 
    display:grid; 
    place-items:center; 
    font-size: 11px; 
    color: var(--muted); 
    font-weight: 700; 
    font-family: var(--font-display); 
    border: 1px solid var(--line-soft);
}

@media (max-width: 600px) {
    .partners .logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
    }
    .logo-ph {
        max-width: none;
        min-width: 0;
    }
}

/* ---------------- Section heads ---------------- */
.sec-head { 
    max-width: 640px; 
}

.sec-head.center { 
    margin-inline: auto; 
    text-align: center; 
}

.sec-head h2 { 
    font-size: clamp(30px, 3.6vw, 46px); 
    margin-top: 16px; 
    color: var(--primary);
}

.sec-head p { 
    margin-top: 16px; 
}

.quem-somos-top {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    margin-bottom: 52px;
}

@media (max-width: 900px) {
    .quem-somos-top {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }
}

/* ---------------- Cards ---------------- */
.card {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover { 
    transform: translateY(-4px); 
    box-shadow: var(--shadow); 
    border-color: var(--secondary-light); 
}

/* ---------------- Diferenciais ---------------- */
.feat-grid { 
    margin-top: 52px; 
}

.feat-card h3 { 
    font-size: 21px; 
    margin-bottom: 10px; 
    color: var(--primary);
}

.feat-card p { 
    color: var(--ink-soft); 
    font-size: 15.5px; 
}

.feature-ico {
    width: 56px; 
    height: 56px; 
    border-radius: 16px;
    display: grid; 
    place-items: center;
    background: var(--secondary-ultra-light); 
    color: var(--secondary);
    margin-bottom: 22px;
}

.feature-ico svg { 
    width: 28px; 
    height: 28px; 
}

.chip {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    background: white; 
    border: 1px solid var(--line); 
    border-radius: 999px;
    padding: 9px 16px; 
    font-family: var(--font-display); 
    font-weight: 700; 
    font-size: 14px; 
    color: var(--ink-soft);
}

.chip svg { 
    width: 16px; 
    height: 16px; 
    color: var(--secondary); 
}

/* ---------------- Serviços Section ---------------- */
.servicos { 
    background: #bababc; 
    color: var(--ink); 
    position: relative; 
    overflow: hidden; 
}

.servicos::before { 
    content:""; 
    position:absolute; 
    inset:0; 
    background: radial-gradient(70% 60% at 90% 0%, rgba(255, 255, 255, 0.4), transparent 60%); 
}

.servicos .wrap { 
    position: relative; 
    z-index: 2;
}

.servicos h2 { 
    color: var(--primary-dark); 
}

.servicos .sec-head p { 
    color: var(--ink); 
}

.serv-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px; 
    margin-top: 50px; 
}

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

.serv-item {
    display: flex; 
    gap: 18px; 
    align-items: flex-start;
    background: #ffffff; 
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius); 
    padding: 24px; 
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.serv-item:hover { 
    background: #ffffff; 
    transform: translateY(-3px); 
    border-color: var(--secondary);
    box-shadow: var(--shadow);
}

.serv-item .si-ic { 
    width: 50px; 
    height: 50px; 
    border-radius: 14px; 
    background: #e61e26; 
    color: #ffffff; 
    display: grid; 
    place-items: center; 
    flex: none; 
}

.serv-item .si-ic svg { 
    width: 25px; 
    height: 25px; 
}

.serv-item h3 { 
    color: var(--primary); 
    font-size: 18.5px; 
    margin-bottom: 6px; 
}

.serv-item p { 
    color: var(--ink-soft); 
    font-size: 14.5px; 
    line-height: 1.5; 
}

.serv-cta { 
    margin-top: 40px; 
    display: flex; 
    gap: 14px; 
    flex-wrap: wrap; 
}

.servicos .btn-light {
    background: #ffffff;
    color: #0c1c31;
}

.servicos .btn-light:hover {
    background: #f4f6f8;
    color: #0c1c31;
}

/* ---------------- Operadoras (B2B) ---------------- */
.b2b-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: clamp(32px, 5vw, 72px); 
    align-items: center; 
}

.b2b-media { 
    aspect-ratio: 5/4; 
    width: 100%;
}

.b2b-media-mobile {
    display: none !important;
}

.b2b-list { 
    margin-top: 28px; 
    display: grid; 
    gap: 14px; 
}

.b2b-list li { 
    display: flex; 
    gap: 14px; 
    align-items: flex-start; 
}

.b2b-list .ck { 
    width: 26px; 
    height: 26px; 
    border-radius: 8px; 
    background: var(--secondary-ultra-light); 
    color: var(--secondary); 
    display: grid; 
    place-items: center; 
    flex: none; 
    margin-top: 2px; 
}

.b2b-list .ck svg { 
    width: 16px; 
    height: 16px; 
}

.b2b-list b { 
    font-family: var(--font-display); 
    display: block; 
    font-size: 16.5px; 
    color: var(--primary);
}

.b2b-list span { 
    color: var(--ink-soft); 
    font-size: 14.5px; 
}

.b2b-cta { 
    margin-top: 32px; 
    display: flex; 
    gap: 14px; 
    flex-wrap: wrap; 
}

@media (max-width: 900px) {
    .b2b-grid {
        grid-template-columns: 1fr;
    }
    .b2b-media-desktop {
        display: none !important;
    }
    .b2b-media-mobile {
        display: block !important;
        width: 100%;
        margin-block: 28px;
    }
    .b2b-media-mobile img {
        aspect-ratio: 16/10 !important;
    }
}

@media (max-width: 600px) {
    .b2b-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .b2b-cta .btn {
        width: 100%;
        justify-content: center;
    }
    .b2b-cta .link-arrow {
        justify-content: center;
        margin-top: 10px;
    }
}

/* ---------------- Números (Stats) ---------------- */
.stats { 
    background: var(--secondary-ultra-light); 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 28px; 
    text-align: center; 
}

.stat .n { 
    font-family: var(--font-display); 
    font-weight: 800; 
    font-size: clamp(40px, 5vw, 60px); 
    color: var(--primary); 
    line-height: 1; 
    letter-spacing: -0.03em; 
}

.stat .l { 
    margin-top: 12px; 
    font-weight: 600; 
    color: var(--ink-soft); 
    font-size: 15px; 
}

@media (max-width: 700px) { 
    .stats-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 32px; 
    } 
}

/* ---------------- Depoimentos ---------------- */
.quote-grid { 
    margin-top: 50px; 
}

.quote-card { 
    display: flex; 
    flex-direction: column; 
}

.quote-card .stars { 
    display: flex; 
    gap: 3px; 
    color: var(--accent); 
    margin-bottom: 16px; 
}

.quote-card .stars svg { 
    width: 18px; 
    height: 18px; 
}

.quote-card blockquote { 
    font-size: 18px; 
    line-height: 1.55; 
    color: var(--ink); 
    margin: 0 0 22px; 
    font-weight: 500; 
}

.quote-card .who { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-top: auto; 
}

.quote-card .who .av { 
    width: 46px; 
    height: 46px; 
    border-radius: 50%; 
    background: var(--secondary-ultra-light); 
    flex: none; 
}

.quote-card .who b { 
    font-family: var(--font-display); 
    font-size: 15.5px; 
    color: var(--primary);
}

.quote-card .who span { 
    display: block; 
    color: var(--muted); 
    font-size: 13.5px; 
}

.ph-note { 
    margin-top: 18px; 
    font-size: 13px; 
    color: var(--muted); 
    font-style: italic; 
    text-align: center; 
}

/* ---------------- Trabalhe Conosco (Recruit) ---------------- */
.recruit { 
    position: relative; 
    overflow: hidden; 
    background: #bababc; 
    color: var(--ink); 
}

.recruit::after { 
    content:""; 
    position:absolute; 
    right:-100px; 
    top:-100px; 
    width: 380px; 
    height: 380px; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.4); 
}

.recruit::before { 
    content:""; 
    position:absolute; 
    left:-80px; 
    bottom:-120px; 
    width: 300px; 
    height: 300px; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.3); 
}

.recruit .wrap { 
    position: relative; 
    z-index: 2;
}

.recruit-grid { 
    display: grid; 
    grid-template-columns: 1.1fr 0.9fr; 
    gap: clamp(32px, 5vw, 64px); 
    align-items: center; 
}

.recruit-media-mobile {
    display: none !important;
}

.recruit h2 { 
    color: var(--primary-dark); 
    font-size: clamp(30px, 4vw, 48px); 
}

.recruit p { 
    color: var(--ink); 
    margin-top: 18px; 
    font-size: 18px; 
}

.recruit-perks { 
    display: grid; 
    gap: 12px; 
    margin-top: 28px; 
}

.recruit-perks li { 
    display: flex; 
    gap: 12px; 
    align-items: center; 
    font-family: var(--font-display); 
    font-weight: 700; 
    font-size: 16px; 
}

.recruit-perks svg { 
    width: 22px; 
    height: 22px; 
    flex: none; 
    color: var(--secondary);
}

.recruit-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

@media (max-width: 600px) {
    .recruit-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.recruit-cta { 
    margin-top: 32px; 
    display: flex; 
    gap: 14px; 
    flex-wrap: wrap; 
}

.recruit-cta .btn-light {
    background: #ffffff;
    color: #0c1c31;
}

.recruit-cta .btn-light:hover {
    background: #f4f6f8;
    color: #0c1c31;
}

.recruit-cta .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.recruit-cta .btn-ghost:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.recruit-card { 
    background: #fff; 
    border-radius: var(--radius-lg); 
    padding: 32px; 
    box-shadow: var(--shadow-lg); 
    color: var(--ink); 
}

.recruit-card h3 { 
    font-size: 22px; 
    color: var(--primary);
}

.recruit-card p { 
    color: var(--ink-soft); 
    margin-top: 8px; 
    font-size: 15px; 
}

.rc-form { 
    display: grid; 
    gap: 12px; 
    margin-top: 20px; 
}

.rc-form input, .rc-form select { 
    font-family: var(--font-body); 
    font-size: 15px; 
    padding: 13px 15px; 
    border-radius: 12px; 
    border: 1.5px solid var(--line); 
    background: var(--cream); 
    color: var(--ink); 
    width: 100%; 
    transition: var(--transition);
}

.rc-form input:focus, .rc-form select:focus { 
    outline: none; 
    border-color: var(--secondary); 
    box-shadow: 0 0 0 3px rgba(180, 75%, 40%, 0.15); 
}

.form-ok { 
    display: none; 
    align-items: center; 
    gap: 8px; 
    color: #1faa55; 
    font-weight: 700; 
    font-family: var(--font-display); 
    font-size: 14px; 
    margin-top: 4px; 
}

@media (max-width: 900px) {
    .recruit-grid {
        grid-template-columns: 1fr;
    }
    .recruit-media-desktop {
        display: none !important;
    }
    .recruit-media-mobile {
        display: block !important;
        width: 100%;
        margin-block: 28px;
    }
    .recruit-media-mobile img {
        aspect-ratio: 16/10 !important;
    }
}

/* ---------------- Área de atendimento ---------------- */
.area-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: clamp(28px, 4vw, 56px); 
    align-items: center; 
}

.area-map { 
    aspect-ratio: 16/11; 
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line-soft);
}

.area-info .chip { 
    margin-bottom: 18px; 
}

.area-list { 
    display: grid; 
    gap: 18px; 
    margin-top: 24px; 
}

.area-list .ai { 
    display: flex; 
    gap: 16px; 
    align-items: flex-start; 
}

.area-list .ai .ic { 
    width: 46px; 
    height: 46px; 
    border-radius: 13px; 
    background: var(--secondary-ultra-light); 
    color: var(--secondary); 
    display: grid; 
    place-items: center; 
    flex: none; 
}

.area-list .ai .ic svg { 
    width: 22px; 
    height: 22px; 
}

.area-list .ai b { 
    font-family: var(--font-display); 
    font-size: 16px; 
    color: var(--primary);
}

.area-list .ai p { 
    color: var(--ink-soft); 
    font-size: 14.5px; 
    margin-top: 2px; 
}

@media (max-width: 900px) {
    .area-grid {
        grid-template-columns: 1fr;
    }
    .area-map {
        max-width: 500px;
        margin-inline: auto;
    }
}

/* ---------------- Final CTA band ---------------- */
.cta-band { 
    background: linear-gradient(135deg, var(--primary), var(--primary-light)); 
    color: #fff; 
    border-radius: var(--radius-xl); 
    padding: clamp(36px, 5vw, 64px); 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
    box-shadow: var(--shadow-lg);
}

.cta-band::before { 
    content:""; 
    position:absolute; 
    inset:0; 
    background: radial-gradient(60% 100% at 50% 0%, rgba(230, 30, 38, 0.15), transparent 70%); 
}

.cta-band > * { 
    position: relative; 
    z-index: 2;
}

.cta-band h2 { 
    color: #fff; 
    font-size: clamp(28px, 4vw, 46px); 
}

.cta-band p { 
    color: hsl(215, 20%, 90%); 
    margin-top: 16px; 
    max-width: 38em; 
    margin-inline: auto; 
    font-size: 18px; 
}

.cta-band .btns { 
    margin-top: 32px; 
    display: flex; 
    gap: 14px; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.cta-band .btn-light {
    background: white;
    color: var(--primary);
}

.cta-band .btn-light:hover {
    background: var(--secondary-ultra-light);
}

/* Modificador de CTA Band Clara */
.cta-band-light {
    background: #bababc !important;
    color: var(--ink) !important;
    box-shadow: var(--shadow-sm);
}

.cta-band-light::before {
    background: radial-gradient(60% 100% at 50% 0%, rgba(255, 255, 255, 0.4), transparent 70%) !important;
}

.cta-band-light h2 {
    color: var(--primary-dark) !important;
}

.cta-band-light p {
    color: var(--ink) !important;
}

.cta-band-light .btn-light {
    background: var(--primary) !important;
    color: #ffffff !important;
}

.cta-band-light .btn-light:hover {
    background: var(--primary-light) !important;
    color: #ffffff !important;
}

/* ---------------- Footer ---------------- */
.site-footer { 
    background: var(--primary-dark); 
    color: hsl(215, 20%, 80%); 
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.site-footer a { 
    color: hsl(215, 20%, 80%); 
    transition: var(--transition);
}

.footer-top { 
    display: grid; 
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr; 
    gap: 40px; 
    padding-block: 72px 48px; 
}

.site-footer .brand-name { 
    color: #fff; 
}

.site-footer .brand-name span { 
    color: hsl(215, 20%, 65%); 
}

.footer-col h4 { 
    color: #fff; 
    font-size: 15px; 
    letter-spacing: 0.04em; 
    text-transform: uppercase; 
    margin-bottom: 18px; 
}

.footer-col a { 
    display: block; 
    padding: 6px 0; 
    font-size: 15.5px; 
    opacity: .85; 
}

.footer-col a:hover { 
    opacity: 1; 
    color: var(--secondary-light); 
}

.footer-label {
    display: block;
    font-size: 11px;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 10px;
    margin-bottom: 1px;
    font-family: var(--font-display);
    color: #fff;
}

.footer-bottom { 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    padding-block: 26px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 18px; 
    font-size: 14px; 
    opacity: .75; 
    flex-wrap: wrap; 
}

.soc { 
    display: inline-flex; 
    gap: 10px; 
}

.soc a { 
    width: 40px; 
    height: 40px; 
    border-radius: 12px; 
    display: grid; 
    place-items: center; 
    background: rgba(255, 255, 255, 0.05); 
    transition: var(--transition); 
}

.soc a:hover { 
    background: var(--secondary); 
    color: white;
    transform: translateY(-2px); 
}

.soc svg { 
    width: 19px; 
    height: 19px; 
}

@media (max-width: 860px) { 
    .footer-top { 
        grid-template-columns: 1fr 1fr; 
        gap: 32px; 
    } 
}

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

/* ---------------- Scroll reveal ---------------- */
.reveal { 
    opacity: 0; 
    transform: translateY(22px); 
    transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); 
}

.reveal.in { 
    opacity: 1; 
    transform: none; 
}

@media (prefers-reduced-motion: reduce) { 
    .reveal { 
        opacity: 1; 
        transform: none; 
        transition: none; 
    } 
}

/* ---------------- Floating WhatsApp ---------------- */
.wa-float {
    position: fixed; 
    right: 22px; 
    bottom: 22px; 
    z-index: 80;
    width: 60px; 
    height: 60px; 
    border-radius: 50%;
    background: #1faa55; 
    color: #fff; 
    display: grid; 
    place-items: center;
    box-shadow: 0 10px 30px rgba(31, 170, 85, 0.35);
    transition: var(--transition);
}

.wa-float:hover { 
    transform: scale(1.07); 
}

.wa-float svg { 
    width: 30px; 
    height: 30px; 
}

/* ---------------- Utility Grid Layouts ---------------- */
.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
}

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

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

@media (max-width: 900px) { 
    .grid-3, .grid-4 { 
        grid-template-columns: 1fr 1fr; 
    } 
}

@media (max-width: 600px) { 
    .grid-2, .grid-3, .grid-4 { 
        grid-template-columns: 1fr; 
    } 
}

/* ---------------- Generic Form Fields ---------------- */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
}

.form-control {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    width: 100%;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(180, 75%, 40%, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.success-message {
    display: none;
    background: #e8f5e9;
    border: 1.5px solid #1faa55;
    color: #1b5e20;
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 600;
    font-family: var(--font-display);
    text-align: center;
}

.success-message.active {
    display: block;
}

/* ---------------- Contact Page Layout ---------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ---------------- Recruitment Form Layout & Elements ---------------- */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group-full {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--line);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    background: var(--cream);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.file-upload-wrapper:hover {
    border-color: var(--secondary);
    background: var(--secondary-ultra-light);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 28px;
}

.upload-text {
    font-size: 14px;
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.4;
}

.upload-text span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

/* ---------------- Modal de WhatsApp ---------------- */
.wa-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.wa-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.wa-modal-content {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: clamp(24px, 4vw, 40px);
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--line-soft);
}

.wa-modal-overlay.active .wa-modal-content {
    transform: scale(1);
}

.wa-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

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

.wa-modal-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    color: var(--primary-dark);
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 8px;
}

.wa-modal-subtitle {
    color: var(--ink-soft);
    font-size: 15px;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.wa-form-group {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
    text-align: left;
}

.wa-form-group label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
}

.wa-form-group input, .wa-form-group select {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    width: 100%;
    transition: var(--transition);
}

.wa-form-group input:focus, .wa-form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(230, 30, 38, 0.1);
}

.wa-modal-footer {
    color: var(--muted);
    font-size: 12px;
    text-align: center;
    margin-top: 18px;
    line-height: 1.4;
}
