/* =========================================================
     01. RESET / BASE
  ========================================================= */

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 120px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #06245c;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
}

section {
    padding: 64px 0;
}

/* =========================================================
     02. GRID / CONTAINER
  ========================================================= */

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    align-items: center;
}

.col-12 {
    grid-column: span 12;
}

.col-6 {
    grid-column: span 6;
}

.col-4 {
    grid-column: span 4;
}

.col-3 {
    grid-column: span 3;
}

.col-2 {
    grid-column: span 2;
}

/* =========================================================
     03. CLASSES UTILITÁRIAS DE DISPLAY
  ========================================================= */

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-grid {
    display: grid !important;
}

@media (max-width: 767px) {
    .d-mobile-none {
        display: none !important;
    }

    .d-mobile-block {
        display: block !important;
    }

    .d-mobile-flex {
        display: flex !important;
    }

    .d-mobile-grid {
        display: grid !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .d-tablet-none {
        display: none !important;
    }

    .d-tablet-block {
        display: block !important;
    }

    .d-tablet-flex {
        display: flex !important;
    }

    .d-tablet-grid {
        display: grid !important;
    }
}

@media (min-width: 1024px) {
    .d-desktop-none {
        display: none !important;
    }

    .d-desktop-block {
        display: block !important;
    }

    .d-desktop-flex {
        display: flex !important;
    }

    .d-desktop-grid {
        display: grid !important;
    }
}

/* =========================================================
     04. HEADER
  ========================================================= */

.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: 0.3s ease;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}

.header-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 115px;
}

.logo-mobile {
    display: none;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 14px;
}

.main-menu a {
    background: #13c9c3;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================================================
     05. BOTÃO MENU MOBILE
  ========================================================= */

.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 2000;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 5px auto;
    background: #303030;
    border-radius: 4px;
    transition: 0.25s ease;
}

.menu-toggle.is-open {
    position: fixed;
    top: 28px;
    right: 28px;
    z-index: 2000;
    background: transparent;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================================================
     06. HERO / SLIDER
     Ajustado para imagem ter altura correta no desktop
  ========================================================= */

.hero-slider {
    position: relative;
    height: 810px;
    overflow: hidden;
    background: #13c9c3;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 645px;
    opacity: 0;
    background-size: cover;
    background-position: center center;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-green-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    z-index: 4;
    background: #13c9c3;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1180px;
    margin: 0 auto;
    padding: 135px 24px 0;
}

.hero-content h1 {
    max-width: 370px;
    margin: 0;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 400;
    color: #06245c;
}

.hero-content strong {
    font-weight: 900;
}

/* =========================================================
     07. BOLINHAS DO HERO
     Ajustadas para não ficarem em cima dos cards
  ========================================================= */

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 288px;
    z-index: 30;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.dot {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 0;
}

.dot.active {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* =========================================================
     08. CARDS DO HERO
  ========================================================= */

.hero-cards {
    position: absolute;
    left: 50%;
    bottom: 70px;
    z-index: 20;
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 48px));
}

.hero-cards-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.hero-card {
    min-height: 150px;
    padding: 26px 32px;
    background: #ffffff;
    border-radius: 28px;
    border: 0;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.hero-card-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 auto;
}

.hero-card h2 {
    margin: 0;
    font-size: 24px;
    color: #06245c;
    font-weight: 900;
    line-height: 1;
}

.hero-card p {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.12;
    color: #333333;
}

.hero-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #efb247;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
}

.hero-card-arrow {
    display: none;
}

/* =========================================================
     09. SEÇÃO SERVIÇOS
  ========================================================= */

.services-section {
    background: #13c9c3;
    padding-top: 64px;
}

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

/* =========================================================
     10. CARDS GENÉRICOS / ESTADOS / BENEFÍCIOS
  ========================================================= */

.service,
.stat,
.benefit,
.box,
.solution,
.reduction,
.card {
    padding: 24px;
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #ffffff;
}

.stats {
    margin-top: -32px;
    position: relative;
    z-index: 3;
}

.wave-section {
    padding: 80px 0;
}

/* =========================================================
     11. FOOTER
  ========================================================= */

footer {
    padding: 48px 0;
    background: #06245c;
    color: #ffffff;
}

/* =========================================================
     12. RESPONSIVO TABLET
  ========================================================= */

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

    .main-menu a {
        font-size: 14px;
        padding: 9px 16px;
    }
}

/* =========================================================
     13. RESPONSIVO MOBILE
  ========================================================= */

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

    .col-12,
    .col-6,
    .col-4,
    .col-3,
    .col-2 {
        grid-column: span 4;
    }

    section {
        padding: 48px 0;
    }

    /* HEADER MOBILE */

    .site-header {
        background: #13c9c3;
    }

    .site-header.scrolled {
        background: #ffffff;
    }

    .header-container {
        padding: 18px 20px;
    }

    .logo img {
        width: 112px;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .site-header.scrolled .logo-mobile {
        display: none;
    }

    .site-header.scrolled .logo-desktop {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .main-menu {
        position: fixed;
        inset: 0;
        z-index: 1500;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 34px;
        padding-top: 120px;
        background: rgba(255, 255, 255, 0.96);
    }

    .main-menu.is-open {
        display: flex;
    }

    .main-menu a {
        background: transparent;
        color: #13c9c3;
        padding: 0;
        border-radius: 0;
        font-size: 20px;
        font-weight: 900;
        text-transform: uppercase;
    }

    /* HERO MOBILE */

    .hero-slider {
        height: 665px;
        padding-top: 86px;
    }

    .hero-slide {
        top: 86px;
        height: 418px;
        inset-inline: 0;
        bottom: auto;
        background-size: cover;
        background-position: center center;
    }

    .hero-green-band {
        height: 160px;
    }

    .hero-content {
        padding: 34px 20px 0;
        text-align: center;
    }

    .hero-content h1 {
        max-width: 285px;
        margin: 0 auto;
        font-size: 22px;
        line-height: 1.08;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }

    /* BOLINHAS MOBILE */

    .hero-dots {
        bottom: 204px;
        gap: 10px;
    }

    .dot {
        width: 18px;
        height: 18px;
    }

    /* CARDS HERO MOBILE */

    .hero-cards {
        width: calc(100% - 48px);
        bottom: 24px;
    }

    .hero-cards-track {
        display: block;
    }

    .hero-card {
        display: none;
        min-height: 138px;
        padding: 20px;
        border-radius: 20px;
    }

    .hero-card.active {
        display: block;
    }

    .hero-card h2 {
        font-size: 18px;
    }

    .hero-card p {
        font-size: 12px;
        line-height: 1.18;
    }

    .hero-card a {
        font-size: 12px;
        padding: 7px 18px;
    }

    .hero-card-icon {
        width: 30px;
        height: 30px;
    }

    .hero-card-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        z-index: 25;
        width: 34px;
        height: 34px;
        border: 0;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        background: #06245c;
        color: #ffffff;
        font-size: 28px;
        line-height: 1;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .hero-card-prev {
        left: -14px;
    }

    .hero-card-next {
        right: -14px;
    }

    /* SERVIÇOS MOBILE */

    .services-section {
        padding-top: 56px;
    }

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



.hero-bg {
    background: linear-gradient(to bottom,
            #18c9c7 0%,
            #18c9c7 51%,
            #f4f2f2 34%,
            #f4f2f2 100%);
}


/* =========================================================
   SEÇÃO BENEFÍCIOS + EMPRESAS
========================================================= */

.beneficios-empresas-section {
    background: #f4f2f2;
    padding: 70px 0 40px;
    overflow: hidden;
}

.beneficios-empresas-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
   GRID PRINCIPAL
========================================================= */

.beneficios-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

/* =========================================================
   COLUNA ESQUERDA - BENEFÍCIOS
========================================================= */

.beneficios-content h2 {
    max-width: 430px;
    margin: 0 0 44px;
    color: #06245c;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 900;
}

.beneficios-list {
    display: grid;
    gap: 26px;
}

.beneficio-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;

}

.beneficio-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ff5f64;

    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficio-icon svg {
    width: 18px;
    height: 18px;
}

.beneficio-icon svg path {
    fill: #ffffff;
}

.beneficio-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.beneficio-item h3 {
    margin: 0 0 4px;
    color: #ff5f64;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
}

.beneficio-item p {
    margin: 0;
    color: #222222;
    font-size: 19px;
    line-height: 1.08;
}

/* =========================================================
   COLUNA DIREITA - IMAGEM MÉDICA
========================================================= */

.beneficios-image-area {
    position: relative;
}

.beneficios-image {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.beneficios-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   LINHAS DECORATIVAS DA IMAGEM
========================================================= */

.beneficios-line-red {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.beneficios-line-red img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   BLOCO IMND PARA EMPRESAS
========================================================= */

.empresas-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: start;
    margin-top: 80px;
}

.empresas-text-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.empresas-text h2 {
    margin: 0;
    color: #06245c;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
}

.empresas-text .btn-saiba-mais {
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #13c9c3;
    color: #06245c;
    border-radius: 999px;
    padding: 9px 26px;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
}

.empresas-text p {
    margin: 0 0 22px;
    color: #222222;
    font-size: 20px;
    line-height: 1.45;
}

/* =========================================================
   ALERTA NR-1
========================================================= */

.nr1-area {
    position: relative;
    min-height: 520px;
}

.nr1-loop {
    position: absolute;
    top: -120px;
    left: 80px;
    width: 230px;
    z-index: 1;
}

.nr1-alerta {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 470px;
    z-index: 2;
}

.nr1-alerta img,
.nr1-loop img {
    width: 100%;
    height: auto;
}

/* =========================================================
   RESPONSIVO TABLET
========================================================= */

@media (max-width: 1024px) {

    .beneficios-grid,
    .empresas-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .beneficios-image {
        margin: 0 auto;
    }

    .nr1-area {
        min-height: 460px;
    }

    .nr1-alerta {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 420px;
    }

    .nr1-loop {
        left: 50%;
        transform: translateX(-70%);
    }
}

/* =========================================================
   RESPONSIVO MOBILE
========================================================= */

@media (max-width: 768px) {
    .beneficios-empresas-section {
        padding: 48px 0 32px;
    }

    .beneficios-empresas-container {
        padding: 0 22px;
    }

    .beneficios-content h2 {
        font-size: 25px;
        margin-bottom: 34px;
    }

    .beneficios-list {
        gap: 22px;
    }

    .beneficio-item {
        grid-template-columns: 40px 1fr;
        gap: 14px;
    }

    .beneficio-icon {
        width: 40px;
        height: 40px;
    }

    .beneficio-item h3 {
        font-size: 21px;
    }

    .beneficio-item p {
        font-size: 16px;
        line-height: 1.18;
    }

    .beneficios-image img {
        height: 330px;
    }

    .empresas-grid {
        margin-top: 54px;
        gap: 34px;
    }

    .empresas-text-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .empresas-text h2 {
        font-size: 25px;
    }

    .empresas-text .btn-saiba-mais {
        font-size: 16px;
        padding: 9px 24px;
    }

    .empresas-text p {
        font-size: 17px;
        line-height: 1.45;
    }

    .nr1-area {
        min-height: 360px;
    }

    .nr1-loop {
        top: -70px;
        left: 50%;
        width: 150px;
        transform: translateX(-70%);
    }

    .nr1-alerta {
        width: 310px;
    }
}


/* =========================================================
   SEÇÃO SERVIÇOS COM ONDA
========================================================= */

.servicos-onda-section {
    width: 100%;
    background: #14c9c4;
    padding: 0;
    overflow: hidden;
}

/* =========================================================
   ÁREA DA COMPOSIÇÃO
========================================================= */

.servicos-onda-wrap {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

/* =========================================================
   FUNDO TURQUESA
========================================================= */

.servicos-onda-bg {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    min-width: 1838px;
    height: 186px;
    transform: translateX(-50%);
    object-fit: cover;

}

/* =========================================================
   ONDA CINZA INFERIOR
========================================================= */

.servicos-onda-corte {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    min-width: 1920px;
    height: 236px;
    transform: translateX(-50%);
    object-fit: cover;
    z-index: 2;
}

/* =========================================================
   CARDS COM ÍCONES E TEXTOS
========================================================= */

.servicos-onda-cards {
    position: absolute;
    left: 50%;
    top: 55px;
    width: 1040px;
    max-width: 72vw;
    transform: translateX(-50%);
    z-index: 0;
}

/* =========================================================
   RESPONSIVO TABLET
========================================================= */

@media (max-width: 1024px) {
    .servicos-onda-wrap {
        height: 330px;
    }

    .servicos-onda-bg {
        top: 68px;
        min-width: 1400px;
    }

    .servicos-onda-corte {
        min-width: 1450px;
    }

    .servicos-onda-cards {
        width: 920px;
        max-width: 90vw;
        top: 58px;
    }
}

/* =========================================================
   RESPONSIVO MOBILE
========================================================= */

@media (max-width: 768px) {
    .servicos-onda-section {
        overflow-x: auto;
    }

    .servicos-onda-wrap {
        width: 1200px;
        height: 320px;
    }

    .servicos-onda-bg {
        top: 66px;
        width: 1200px;
        min-width: 1200px;
    }

    .servicos-onda-corte {
        width: 1200px;
        min-width: 1200px;
    }

    .servicos-onda-cards {
        width: 760px;
        max-width: none;
        top: 58px;
    }
}

/* =========================================================
   SEÇÃO REDUÇÃO
========================================================= */

.reducao-section {
    background: #f4f2f2;
    height: 580px;


}

.reducao-container {
    position: relative;
    width: 100%;
    max-width: 1180px;
    min-height: 430px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
   TÍTULO
========================================================= */

.reducao-container h2 {
    margin: 0 0 28px;
    text-align: center;
    color: #ff5f64;
    font-size: 30px;
    line-height: 0.95;
    font-weight: 900;
}

/* =========================================================
   CARDS
========================================================= */

.reducao-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: 850px;
    margin: 0 auto;
}

.reducao-card {
    min-height: 175px;
    background: #13c9c3;
    border-radius: 30px;
    padding: 26px 18px 20px;
    color: #06245c;
}

.reducao-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 38px;
    line-height: 0.95;
    font-weight: 900;
}

.reducao-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
}

.reducao-card small {
    display: block;
    margin-top: 28px;
    font-size: 8px;
    line-height: 1.1;
    font-weight: 400;
}

/* =========================================================
   LINHA DECORATIVA VERMELHA
========================================================= */

.reducao-linha {
    position: relative;
    top: -249px;
    left: 50%;
    bottom: 0;
    z-index: 1;
    max-width: none;
    transform: translateX(-50%);
    pointer-events: none;
    width: 100%;

}

/* =========================================================
   RESPONSIVO TABLET
========================================================= */

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

    .reducao-linha {
        width: 1300px;
        bottom: -20px;
    }
}

/* =========================================================
   RESPONSIVO MOBILE
========================================================= */

@media (max-width: 768px) {
    .reducao-section {
        padding: 60px 0 80px;
    }

    .reducao-container {
        min-height: auto;
        padding: 0 22px;
    }

    .reducao-container h2 {
        font-size: 24px;
        margin-bottom: 26px;
    }

    .reducao-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 14px;
    }

    .reducao-card {
        min-height: 120px;
        padding: 18px 16px;
        border-radius: 20px;
    }

    .reducao-card strong {
        font-size: 30px;
    }

    .reducao-card p {
        font-size: 13px;
        line-height: 1.25;
    }

    .reducao-card small {
        margin-top: 10px;
        font-size: 7px;
        line-height: 1.1;
    }

    .reducao-card:last-child {
        grid-column: span 2;
        max-width: calc(50% - 7px);
    }

    .reducao-linha {
        position: relative;
        top: -400px;
        left: 50%;
        bottom: 0;
        z-index: 1;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
        width: 100%;

    }

}



/* =========================================================
   SEÇÃO FAMÍLIA
========================================================= */

.familia-section {
    background: #f4f2f2;
    padding: 70px 0 80px;
}

.familia-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.familia-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.familia-content h2 {
    max-width: 540px;
    margin: 0 0 24px;
    color: #06245c;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 900;
}

.familia-content p {
    max-width: 550px;
    margin: 0 0 38px;
    color: #262626;
    font-size: 20px;
    line-height: 1.45;
}

.familia-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    min-height: 36px;
    padding: 8px 24px;
    background: #ff5f64;
    color: #ffffff;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
}

.familia-image {
    border-radius: 34px;
    overflow: hidden;
}

.familia-image img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 768px) {
    .familia-section {
        padding: 54px 0 64px;
    }

    .familia-container {
        padding: 0 22px;
    }

    .familia-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .familia-content h2 {
        font-size: 25px;
    }

    .familia-content p {
        font-size: 17px;
        line-height: 1.45;
        margin-bottom: 28px;
    }

    .familia-image img {
        height: 230px;
    }
}

/* =========================================================
   SEÇÃO CTA EQUIPE
========================================================= */

.cta-equipe-section {
    padding: 22px 0;
    overflow: hidden;

    background: linear-gradient(to bottom,
            #f4f2f2 0%,
            #f4f2f2 48%,
            #18c9c7 48%,
            #18c9c7 100%);
}

/* =========================================================
   CONTAINER
========================================================= */

.cta-equipe-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
   BOX AZUL
========================================================= */

.cta-equipe-box {
    width: 100%;
    min-height: 82px;

    background: #06245c;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px 40px;
}

/* =========================================================
   TEXTO
========================================================= */

.cta-equipe-box h2 {
    margin: 0;

    color: #ffffff;

    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    text-align: center;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 768px) {
    .cta-equipe-section {
        padding: 18px 0;
    }

    .cta-equipe-container {
        padding: 0 22px;
    }

    .cta-equipe-box {
        min-height: 72px;
        border-radius: 24px;
        padding: 18px 24px;
    }

    .cta-equipe-box h2 {
        font-size: 22px;
        line-height: 1.15;
    }
}

/* =========================================================
   SEÇÃO PROFISSIONAIS
========================================================= */

.profissionais-section {
    background: linear-gradient(to bottom,
            #18c9c7 0%,
            #18c9c7 72%,
            #f4f2f2 72%,
            #f4f2f2 100%);
    padding: 18px 0 42px;
    overflow: hidden;
}

.profissionais-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
   GRID
========================================================= */

.profissionais-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: start;
}

/* =========================================================
   IMAGEM
========================================================= */

.profissionais-image {
    border-radius: 26px;
    overflow: hidden;
}

.profissionais-image img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   TEXTO E BOTÕES
========================================================= */

.profissionais-content {
    padding-top: 2px;
}

.profissionais-content>p {
    max-width: 560px;
    margin: 0 0 34px;
    color: #06245c;
    font-size: 20px;
    line-height: 1.35;
}

.profissionais-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

.profissionais-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 24px;
    border-radius: 999px;
    background: #06245c;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}

/* =========================================================
   CARROSSEL
========================================================= */

.profissionais-carousel {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-top: 24px;
}

.profissionais-slider {
    overflow: hidden;
    width: 100%;
}

.profissionais-track {
    display: flex;
    gap: 12px;
    transition: transform .4s ease;
}

/* =========================================================
   CARD
========================================================= */

.profissionais-card {
    flex: 0 0 calc(50% - 6px);

    min-height: 180px;

    padding: 28px 24px;

    border-radius: 28px;

    background: #ff6469;

    color: #ffffff;
}

.profissionais-card p {
    margin: 0;

    font-size: 18px;
    line-height: 1.45;
}

/* =========================================================
   SETAS
========================================================= */

.profissionais-arrow {
    position: absolute;
    top: 50%;

    width: 28px;
    height: 28px;

    border: none;
    border-radius: 50%;

    background: #06245c;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    line-height: 1;

    transform: translateY(-50%);

    cursor: pointer;

    z-index: 5;
}

.profissionais-prev {
    left: -38px;
}

.profissionais-next {
    right: -38px;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .profissionais-card {
        flex: 0 0 100%;
    }

    .profissionais-prev {
        left: -12px;
    }

    .profissionais-next {
        right: -12px;
    }

}


/* =========================================================
           99. CORREÇÕES FINAIS MOBILE / PROFISSIONAIS / FOOTER
           Mantém o layout desktop e corrige o estouro lateral no mobile
        ========================================================= */

.profissionais-slider {
    overflow: hidden;
}

.profissionais-track {
    will-change: transform;
}

.profissionais-card {
    box-sizing: border-box;
}

.site-footer {
    background: #06245c;
    color: #ffffff;
    padding: 42px 0 32px;
}

.footer-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 0.8fr;
    gap: 64px;
    align-items: start;
}

.footer-links {
    display: grid;
    gap: 20px;
}

.footer-links a {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.footer-contact-group+.footer-contact-group {
    margin-top: 48px;
}

.footer-contact strong,
.footer-legal strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.footer-contact a,
.footer-contact span {
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 34px;
}

.footer-seal {
    width: 132px;
    height: auto;
}

.footer-logo {
    width: 128px;
    height: auto;
}

.footer-legal {
    margin-top: 80px;
}

.footer-legal p {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 900;
}

@media (max-width: 768px) {
    .profissionais-section {
        background: linear-gradient(to bottom,
                #18c9c7 0%,
                #18c9c7 76%,
                #f4f2f2 76%,
                #f4f2f2 100%);
        padding: 28px 0 48px;
        overflow: hidden;
    }

    .profissionais-container {
        padding: 0 22px;
        max-width: 100%;
        overflow: hidden;
    }

    .profissionais-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .profissionais-image {
        border-radius: 22px;
    }

    .profissionais-image img {
        height: 260px;
        object-fit: cover;
    }

    .profissionais-content {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding-top: 0;
    }

    .profissionais-content>p {
        max-width: 100%;
        margin: 0 0 24px;
        font-size: 17px;
        line-height: 1.45;
        overflow-wrap: break-word;
    }

    .profissionais-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 24px;
    }

    .profissionais-btn {
        min-height: 32px;
        padding: 8px 20px;
        font-size: 15px;
        white-space: nowrap;
    }

    .profissionais-carousel {
        width: calc(100vw - 88px);
        max-width: calc(100vw - 88px);
        margin: 24px auto 0;
    }

    .profissionais-slider {
        overflow: hidden;
        width: 100%;
    }

    .profissionais-track {
        gap: 12px;
    }

    .profissionais-card {
        flex: 0 0 100%;
        min-height: 150px;
        padding: 24px 20px;
        border-radius: 24px;
    }

    .profissionais-card p {
        font-size: 15px;
        line-height: 1.4;
    }

    .profissionais-prev {
        left: -14px;
    }

    .profissionais-next {
        right: -14px;
    }

    .site-footer {
        padding: 40px 0 32px;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-contact-group+.footer-contact-group {
        margin-top: 28px;
    }

    .footer-brand {
        align-items: flex-start;
        gap: 24px;
    }

    .footer-seal {
        width: 112px;
    }

    .footer-logo {
        width: 116px;
    }

    .footer-legal {
        margin-top: 42px;
    }

    .footer-legal p {
        font-size: 13px;
        line-height: 1.45;
    }
}