/* ── BANNER DE COOKIES LGPD ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1C1C1E;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner__text {
  font-size: .875rem;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  flex: 1;
  min-width: 220px;
}
.cookie-banner__text i {
  margin-right: 8px;
  color: #FFD43B;
}
.cookie-banner__text a {
  color: #4db8ff;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
  font-family: inherit;
}
.cookie-btn:hover { opacity: .85; }
.cookie-btn--primary {
  background: #0D2ED3;
  color: #fff;
}
.cookie-btn--outline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
}
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

  /* ── Reset & Base ── */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: 'Poppins', sans-serif;
    color: #1C1C1E;
    background: #fff;
    overflow-x: hidden;
  }

  p, li, span:not(.badge):not(.hero__eyebrow):not(.section-sub) {
    text-align: left;
  }

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

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

  :focus-visible {
    outline: 2px solid #0D2ED3;
    outline-offset: 3px;
    border-radius: 3px;
  }

  .skip-link {
    position: absolute;
    top: -100%;
    left: 8px;
    z-index: 99999;
    background: #0D2ED3;
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 6px 6px;
    font-size: .9rem;
    font-weight: 600;
    transition: top .15s;
  }
  .skip-link:focus {
    top: 0;
  }

  ul {
    list-style: none;
  }

  button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
  }

  /* ── CSS Variables ── */
  :root {
    --blue: #0D2ED3;
    --blue-light: #1a3fe8;
    --yellow: #0599fb;
    --white: #F4F5F7;
    --gray: #8A8F99;
    --dark: #1C1C1E;
    --green: #3FA796;
    --radius: 12px;
    --shadow: 0 8px 32px rgba(13, 46, 211, .12);
    --transition: .3s ease;
  }

  /* ── Utilities ── */
  .container {
    max-width: 1200px;
    /* width: min(92%, 1500px) */
    margin: 0 auto;
    padding: 0 24px;
  }

  .section {
    padding: 30px 0;
    background: #e3ebf0;
  }

  .section--gray {
    background: #F8F9FF;
  }

  .section--dark {
    background: var(--dark);
    color: #fff;
  }

  .section--blue {
    background: linear-gradient(135deg, #060e3a 0%, #0D2ED3 50%, #1a6fc4 100%);
    color: #fff;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 46, 211, .08);
    color: var(--blue);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  .badge--light {
    background: rgba(255, 255, 255, .15);
    color: #fff;
  }

  .section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 1.0625rem;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.7;
  }

  .section-sub--center {
    margin: 0 auto;
    text-align: center;
  }

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

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: .9375rem;
    font-weight: 600;
    transition: var(--transition);
  }

  .btn--primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 20px rgba(13, 46, 211, .35);
  }

  .btn--primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13, 46, 211, .4);
  }

  .btn--yellow {
    background: #fff;
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(255, 255, 255, .25);
  }


  .btn--yellow:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
  }

  .btn--outline {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
  }

  .btn--outline:hover {
    background: var(--blue);
    color: #fff;
  }

  .btn--outline-white {
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    background: transparent;
  }

  .btn--outline-white:hover {
    background: rgba(255, 255, 255, .1);
  }

  /* Fade-in animation */
  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: none;
  }

  .fade-in-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .65s ease, transform .65s ease;
  }

  .fade-in-left.visible {
    opacity: 1;
    transform: none;
  }

  .fade-in-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .65s ease, transform .65s ease;
  }

  .fade-in-right.visible {
    opacity: 1;
    transform: none;
  }

  .delay-1 {
    transition-delay: .1s !important;
  }

  .delay-2 {
    transition-delay: .2s !important;
  }

  .delay-3 {
    transition-delay: .3s !important;
  }

  .delay-4 {
    transition-delay: .4s !important;
  }

  /* ── NAVBAR ── */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background .3s, box-shadow .3s, padding .3s;
  }

  .navbar.scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    padding: 12px 0;
    backdrop-filter: blur(12px);
  }

  .navbar__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
  }

  .navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    transition: color .3s;
  }

  .navbar.scrolled .navbar__logo {
    color: var(--blue);
  }

  .navbar__logo svg {
    width: 36px;
    height: 36px;
  }

  .navbar__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }

  .navbar__link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
    transition: var(--transition);
  }

  .navbar.scrolled .navbar__link {
    color: var(--dark);
  }

  .navbar__link:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
  }

  .navbar.scrolled .navbar__link:hover {
    background: rgba(13, 46, 211, .07);
    color: var(--blue);
  }

  .navbar__link--active {
    color: var(--yellow) !important;
    font-weight: 700;
    position: relative;
  }

  .navbar__link--active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
  }

  .navbar.scrolled .navbar__link--active {
    color: var(--blue) !important;
  }

  .navbar.scrolled .navbar__link--active::after {
    background: var(--blue);
  }

  .navbar__cta {
    margin-left: 8px;
    padding: 10px 22px;
    background: #fff;
    color: var(--dark);
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 700;
    transition: var(--transition);
  }

  .navbar__cta:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
  }

  .navbar.scrolled .navbar__cta {
    background: var(--blue);
    color: #fff;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
  }

  .navbar.scrolled .hamburger span {
    background: var(--dark);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #060e3a 0%, #0D2ED3 50%, #1a6fc4 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800'%3E%3Ccircle cx='1200' cy='200' r='500' fill='rgba(255,255,255,.03)'/%3E%3Ccircle cx='100' cy='700' r='400' fill='rgba(255,255,255,.02)'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
  }

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

  .hero__center {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, .18);
    color: #d4a017;
    border: 1px solid rgba(212, 160, 23, .4);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
  }

  .hero__title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    /* font-weight: 800; */
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
  }

  .hero__title span {
    color: var(--yellow);
  }

  .hero__sub {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
  }

  .hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }


  .page-hero {
    padding: 70px 0 72px;
    background: #e5e8f6;
  }

  .page-hero__content {
    max-width: 760px;
  }

  .page-hero__title {
    /* font-size: clamp(2.25rem, 4vw, 4rem); */
    font-weight: 800;
    line-height: 1.08;
    color: var(--dark);
    margin-bottom: 18px;
  }

  .page-hero__sub {
    max-width: 680px;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--gray);
  }

  .hero--page {
    min-height: 72vh;
    padding: 130px 0 90px;
  }

  .breadcrumb {
    margin-bottom: 24px;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: linear-gradient(135deg, #060e3a 0%, #0D2ED3 50%, #1a6fc4 100%);
    padding: 28px 0;
  }

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

  .stats-bar__item {
    text-align: center;
  }

  .stats-bar__num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
  }

  .stats-bar__label {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .8);
    margin-top: 4px;
  }

  /* ── ABOUT ── */
  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about__img-wrap {
    position: relative;
  }

  .about__img-bg {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #e8ecff, #c3ccff);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .about__img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 30px;
    justify-content: center;
  }

  .about__img-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
  }

  .about__img-card {
    /* flex: 1;
      background: rgba(13, 46, 211, .07);
      border-radius: 12px;
      padding: 20px 16px;
      text-align: center;
      border: 1px solid rgba(13, 46, 211, .1);
       */
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 16px;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);

    border: 1px solid rgba(13, 46, 211, .08);
    transition: .25s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  }

  .about__img-card i {
    font-size: 18px;
    color: var(--blue);
    flex-shrink: 0;
  }

  .about__img-card span {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
  }

  .about__img-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.35);
  }

  .about__img-card-icon,
  .mvv-card__icon {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: #0D2ED3;
  }

  .about__img-card-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--blue);
  }

  .about__mvv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .mvv-card {
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid #e8ecff;
    /* background: #f8f9ff; */
    background: #f1f3f9;
    transition: var(--transition);
  }

  .mvv-card:last-child {
    grid-column: span 2;
  }

  .mvv-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
  }

  .mvv-card__icon {
    font-size: 1.5rem;
    margin-bottom: 8px;

  }

  .mvv-card__title {
    font-size: .9125rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
  }

  .mvv-card__text {
    font-size: .975rem;
    color: #444;
    line-height: 1.6;
  }

  .values-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 8px;
    justify-content: center;
  }

  .value-pill {
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(13, 46, 211, .08);
    color: var(--blue);
    font-size: .8125rem;
    font-weight: 600;
  }

  /* ── SERVICES ── */
  .services__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .services__tab {
    padding: 10px 22px;
    border-radius: 100px;
    background: transparent;
    border: 2px solid #e0e4f0;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
    cursor: pointer;
  }

  .services__tab.active,
  .services__tab:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
  }

  .services__panel {
    display: none;
  }

  .services__panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .services__panel-content {}

  .services__panel-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .services__panel-desc {
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .services__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .services__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .services__check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(13, 46, 211, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: .75rem;
    font-weight: 700;
    margin-top: 1px;
  }

  .services__list-text {
    font-size: .9375rem;
    color: #333;
    line-height: 1.5;
  }

  .services__panel-visual {

    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8ecff, #c3ccff);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .services__panel-visual img {
    width: 100%;
    height: 100%;
    max-height: 420px;

    object-fit: cover;
    /* 🔥 chave do problema */
    border-radius: 24px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  .services__panel-icon-big {
    font-size: 6rem;
  }

  /* ── PLANS ── */
  .plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .plan-card {
    border-radius: 20px;
    padding: 36px 28px;
    border: 2px solid #e8ecff;
    background: #fff;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(13, 46, 211, .15);
    border-color: var(--blue);
  }

  .plan-card--featured {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(13, 46, 211, .35);
  }

  .plan-card--featured:hover {
    transform: translateY(-14px);
  }

  .plan-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--dark);
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
  }

  .plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .plan-card--featured .plan-name {
    color: #fff;
  }

  .plan-desc {
    font-size: .875rem;
    color: var(--gray);
    margin-bottom: 28px;
  }

  .plan-card--featured .plan-desc {
    color: rgba(255, 255, 255, .7);
  }

  .plan-divider {
    border: none;
    border-top: 1px solid rgba(224, 228, 240, .8);
    margin-bottom: 24px;
  }

  .plan-card--featured .plan-divider {
    border-color: rgba(255, 255, 255, .2);
  }

  .plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
  }

  .plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .plan-check {
    font-size: .875rem;
    color: var(--green);
    font-weight: 700;
    min-width: 16px;
    margin-top: 1px;
  }

  .plan-card--featured .plan-check {
    color: var(--yellow);
  }

  .plan-feature-text {
    font-size: .875rem;
    color: #333;
    line-height: 1.4;
  }

  .plan-card--featured .plan-feature-text {
    color: rgba(255, 255, 255, .85);
  }

  .plan-cta {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius);
    font-size: .9375rem;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    margin-top: auto;
    display: block;
  }

  .plan-cta--outline {
    background: var(--blue);
    border: 2px solid var(--blue);
    color: #fff;
  }

  .plan-cta--outline:hover {
    background: var(--blue-light);
    color: #fff;
  }

  .plan-cta--white {
    background: #fff;
    border: none;
    color: var(--blue);
  }

  .plan-cta--white:hover {
    background: var(--yellow);
    color: var(--dark);
  }

  /* ── COMPANY SIZE ── */
  .size__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .size-card {
    padding: 40px 28px;
    border-radius: 20px;
    text-align: center;
    background: #fff;
    border: 2px solid #e8ecff;
    transition: var(--transition);
  }

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

  .size-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
  }

  .size-unit {
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 4px;
  }

  .size-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .size-desc {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.6;
  }

  /* ── HOW IT WORKS ── */
  .how__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .how-card {
    text-align: center;
  }

  .how-step {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .how-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .how-desc {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.6;
  }

  .how__connector {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  /* ── TESTIMONIALS ── */
  .testimonials__slider {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
  }

  .testimonials__track {
    display: flex;
    gap: 24px;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  }

  .testimonial-card {
    min-width: calc(33.333% - 16px);
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #e8ecff;
    box-shadow: 0 4px 20px rgba(13, 46, 211, .06);
  }

  .testimonial-stars {
    color: #d4a017;
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .testimonial-text {
    font-size: .9375rem;
    color: #333;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #6e8bff);

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }

  .testimonial-name {
    font-size: .875rem;
    font-weight: 700;
    color: var(--dark);
  }

  .testimonial-role {
    font-size: .8rem;
    color: var(--gray);
  }

  .testimonials__controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e8ecff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition);
    color: var(--blue);
  }

  .slider-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
  }

  .slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #e0e4f0;
    transition: .3s;
    cursor: pointer;
  }

  .slider-dot.active {
    background: var(--blue);
    width: 24px;
  }

  /* ── CLIENTS LOGOS ── */
  .logos__track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
  }

  .logos__track:hover {
    animation-play-state: paused;
  }

  .logo-item {
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-item img {
    height: 60px;
    width: auto;
    filter: grayscale(100%) opacity(0.55);
    transition: filter .3s;
    object-fit: contain;
  }

  .logo-item img:hover {
    filter: grayscale(0%) opacity(1);
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  .logos__overflow {
    overflow: hidden;
  }

  /* ── CONTACT ── */
  .contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .contact__info {}

  .contact__info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }

  .contact__info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .contact__info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(13, 46, 211, .08);
    color: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
  }

  .contact__info-label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .06em;
  }

  .contact__info-value {
    font-size: .9375rem;
    color: var(--dark);
    margin-top: 2px;
  }

  .contact__form-wrap {
    background: #F8F9FF;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e8ecff;
  }

  .contact__form-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .contact__form-sub {
    font-size: .875rem;
    color: var(--gray);
    margin-bottom: 28px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-label {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    display: block;
  }

  .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8ecff;
    border-radius: 10px;
    font-size: .9375rem;
    font-family: inherit;
    background: #fff;
    transition: border-color .2s;
    outline: none;
    color: var(--dark);
  }

  .form-input:focus {
    border-color: var(--blue);
  }

  .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8F99' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
  }

  textarea.form-input {
    resize: vertical;
    min-height: 100px;
  }

  /* ── LINKS ÚTEIS ── */
  .links__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
  }

  .link-card {
    padding: 28px 28px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e8ecff;
    border-top: 3px solid var(--blue);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
  }

  .link-card:hover {
    box-shadow: 0 12px 40px rgba(13, 46, 211, .13);
    transform: translateY(-5px);
  }

  .link-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(13, 46, 211, .08);
    color: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .link-card__title {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 6px;
  }

  .link-card__desc {
    font-size: .8125rem;
    color: var(--gray);
    line-height: 1.55;
    flex: 1;
  }

  .link-card__action {
    margin-top: 20px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
  }

  .link-card:hover .link-card__action {
    gap: 10px;
  }

  /* ── FOOTER ── */
  .footer {
    background: linear-gradient(135deg, #060e3a 0%, #0D2ED3 50%, #1a6fc4 100%);
    color: rgba(255, 255, 255, .8);
    padding: 30px 0 5px;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 42px;
    align-items: start;
    margin-bottom: 30px;
  }



  .footer__socials {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
    justify-content: start;
  }

  .footer__social {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
  }

  .footer__social:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
  }

  .footer__col-title {
    font-size: .875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
  }

  .footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer__link {
    font-size: .875rem;
    color: rgba(255, 255, 255, 1);
    transition: color .2s;
  }

  .footer__link:hover {
    color: var(--yellow);
  }

  .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer__copy {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .4);
  }

  .footer__bottom-links {
    display: flex;
    gap: 20px;
  }

  .footer__bottom-link {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .4);
  }


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

  /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
    width: 60px !important;
    ;
    height: 60px !important;
    ;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
  }

  .whatsapp-float img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    z-index: 2;
    filter: none;
    /* filter: brightness(0) invert(1); */
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
  }

  .whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-wa 2s ease-out infinite;
    z-index: -1;
  }

  @keyframes pulse-wa {
    0% {
      transform: scale(1);
      opacity: .6;
    }

    100% {
      transform: scale(1.6);
      opacity: 0;
    }
  }

  .whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: #fff;
    white-space: nowrap;
    font-size: .8125rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
  }

  .whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
  }

  /* ── Mobile Menu ── */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(6, 14, 58, .97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(12px);
  }

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

  .mobile-menu__link {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    padding: 12px 24px;
    border-radius: 12px;
    transition: .2s;
  }

  .mobile-menu__link:hover {
    color: var(--yellow);
    background: rgba(255, 255, 255, .05);
  }

  .mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
  }

  /* ── Responsive ── */
  @media (max-width: 1024px) {
    .hero__grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }


    .about__grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .about__img-wrap {
      max-width: 520px;
      margin: 0 auto;
    }

    .plans__grid {
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 480px;
      margin: 48px auto 0;
    }

    .links__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .plan-card--featured {
      transform: none;
    }

    .plan-card--featured:hover {
      transform: translateY(-6px);
    }

    .services__panel.active {
      grid-template-columns: 1fr;
    }

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

    .footer__grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 42px;
      align-items: start;
    }

    .navbar__nav {
      display: none;
    }

    .hamburger {
      display: flex;
    }
  }

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

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

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

    .size__grid {
      grid-template-columns: 1fr;
      max-width: 360px;
      margin: 48px auto 0;
    }

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

    .testimonial-card {
      min-width: calc(100% - 0px);
    }

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

    .form-row {
      grid-template-columns: 1fr;
    }


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

    .mvv-card:last-child {
      grid-column: auto;
    }
  }

  /* #servicos,
    #planos,
    #contato {
      scroll-margin-top: 90px;
    } */

  .about__selos {
    display: flex;
    justify-content: space-between;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 18px;
    padding: 18px 16px 0;
    border-top: 1px solid rgba(13, 46, 211, .12);
    align-items: center;
  }

  .about__selos img {
    height: 80px;
    width: 100%;
    object-fit: contain;
    transition: .3s ease;
    opacity: .95;

  }

  .about__selos img:hover {
    transform: translateY(-4px) scale(1.06);
  }

  .mvv-values span i {
    font-size: 12px;
    opacity: 0.7;

    display: inline-flex;
    align-items: center;
  }

  .mvv-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .value-card {
    align-items: center;
    justify-content: center;
    transition: .2s;
    color: #444;
    font-size: .975rem;
    display: inline-flex;
    gap: 14px 18px;
  }

  .value-card2 {
    transition: .2s;
    color: #444;
    font-size: .975rem;
    display: inline-flex;

  }

  .value-card:hover,
  .value-card2:hover {
    transform: translateY(-2px);
  }


  .nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav__logo img {
    height: 36px;
    /* controla tamanho */
    width: auto;
    display: block;
    border-radius: 10px;
  }

  /* ── GUIA DE ATENDIMENTO ── */

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .channel-card {
    background: #fff;
    border: 2px solid #e8ecff;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
  }

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

  .channel-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--blue);
  }

  .channel-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .channel-card__info {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 6px;
  }

  .channel-card__desc {
    font-size: .8125rem;
    color: var(--gray);
    line-height: 1.6;
  }

  .checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .checklist-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(13, 46, 211, .08);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    margin-top: 1px;
  }

  .checklist-icon--warn {
    background: rgba(5, 153, 251, .1);
    color: #0599fb;
  }

  .checklist-text {
    font-size: .9375rem;
    color: #333;
    line-height: 1.5;
  }

  .checklist-text strong {
    color: var(--dark);
  }

  .prep-timeline {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
  }

  .prep-item {
    display: flex;
    gap: 20px;
    padding-bottom: 28px;
    position: relative;
  }

  .prep-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 38px;
    width: 2px;
    height: calc(100% - 10px);
    background: #e8ecff;
  }

  .prep-dot {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #6e8bff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .prep-title {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
  }

  .prep-desc {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.6;
  }

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

    .three-col {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .three-col {
      grid-template-columns: 1fr;
    }
  }

  .channel-card__btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  /* ── ACCORDION DE EXAMES ── */

  .exam-accordion {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .exam-item {
    background: #fff;
    border: 1px solid rgba(13, 46, 211, 0.10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(13, 46, 211, 0.05);
    transition: 0.25s ease;
  }

  .exam-item:hover {
    border-color: rgba(13, 46, 211, 0.25);
    box-shadow: 0 16px 36px rgba(13, 46, 211, 0.10);
  }

  .exam-header {
    width: 100%;
    padding: 20px 24px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
  }

  .exam-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .exam-header-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(13, 46, 211, 0.08);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .exam-header-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
  }

  .exam-header-badge {
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(13, 46, 211, 0.08);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 700;
  }

  .exam-chevron {
    color: var(--gray);
    transition: transform 0.25s ease;
  }

  .exam-header.open .exam-chevron {
    transform: rotate(180deg);
  }

  .exam-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .exam-body.open {
    max-height: 300px;
    padding: 0 24px 22px 76px;
  }

  @media (max-width: 768px) {
    .exam-header-left {
      align-items: flex-start;
    }

    .exam-header-badge {
      display: none;
    }

    .exam-body.open {
      padding-left: 24px;
    }
  }

  .unit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .unit-card {
    background: #fff;
    border: 2px solid #e8ecff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
  }

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

  .unit-card__map {
    height: 140px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  .unit-card__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(10%) contrast(1.05);
  }

  .unit-card__body {
    padding: 24px;
  }

  .unit-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
  }

  .unit-card__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .unit-info-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--gray);
    font-size: .875rem;
    line-height: 1.5;
  }

  .unit-info-icon {
    color: var(--blue);
    min-width: 16px;
    margin-top: 2px;
  }

  .unit-card__cta {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: var(--blue);
    font-size: .9rem;
    font-weight: 700;
  }

  .unit-card:hover .unit-card__cta {
    transform: translateX(4px);
  }

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

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

  .support-card {
    max-width: 960px;
    margin: 0 auto;
    padding: 28px 32px;
    border-radius: 24px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;

    background: #fff;
    border: 1px solid rgba(13, 46, 211, 0.10);
    box-shadow: 0 16px 42px rgba(13, 46, 211, 0.08);
  }

  .support-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;

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

    background: rgba(13, 46, 211, 0.08);
    color: var(--blue);
    font-size: 1.4rem;
  }

  .support-card__content {
    flex: 1;
    min-width: 0;
  }

  .support-card__eyebrow {
    display: block;
    margin-bottom: 4px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
  }

  .support-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
  }

  .support-card p {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .support-card {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .support-card__icon {
      margin: 0 auto;
    }

    .support-card .btn {
      justify-content: center;
    }
  }

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





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

  /* =========================================================
   PATCH FINAL DE RESPONSIVIDADE E PADRONIZAÇÃO CLIOMED
   Mantém o estilo atual, mas corrige comportamento em telas
   grandes, notebooks, tablets e celulares.
   ========================================================= */

  /* Base fluida */
  /* html {
  scroll-padding-top: 88px;
} */

  body {
    min-width: 320px;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 48px, 1200px);
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 0;
  }

  /* .section {
  padding: clamp(64px, 7vw, 96px) 0;
} */

  .section--gray {
    background: #f4f7fb;
  }

  .section-title {
    font-size: clamp(2rem, 3.3vw, 2.85rem);
    line-height: 1.14;
  }

  .section-sub {
    font-size: clamp(.98rem, 1.25vw, 1.075rem);
  }

  .btn {
    min-height: 48px;
    justify-content: center;
    white-space: nowrap;
  }

  /* Navbar: mesma lógica em todas as páginas */
  .navbar {
    padding: clamp(12px, 1.4vw, 18px) 0;
  }

  .navbar__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
  }

  .navbar__logo,
  .nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
  }

  .nav__logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 auto;
    border-radius: 10px;
  }

  .nav__logo span {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 500;
    line-height: 1;
  }

  .navbar__nav {
    min-width: 0;
    justify-content: center;
    gap: clamp(2px, .75vw, 10px);
  }

  .navbar__link {
    padding: 8px clamp(8px, .9vw, 14px);
    white-space: nowrap;
  }

  .navbar__cta {
    white-space: nowrap;
    margin-left: 0;
  }

  /* Hero desktop e páginas internas */
  .hero {
    min-height: min(100vh, 760px);
    padding: clamp(118px, 13vh, 160px) 0 clamp(70px, 10vh, 105px);
  }

  .hero--page {
    min-height: min(76vh, 680px);
    padding: clamp(118px, 13vh, 160px) 0 clamp(70px, 10vh, 105px);
  }

  .hero__center {
    width: min(100%, 780px);
  }

  .hero__title {
    font-size: clamp(2.55rem, 5vw, 4.35rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero__sub {
    width: min(100%, 660px);
    font-size: clamp(.98rem, 1.35vw, 1.08rem);
  }

  .hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* Grids principais */
  .about__grid,
  .two-col,
  .services__panel.active {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(48px, 6vw, 80px);
    align-items: center;
  }

  .three-col,
  .plans__grid,
  .unit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 28px);
  }

  .unit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ppp-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 28px);
  }

  /* Cards padronizados */
  .channel-card,
  .unit-card,
  .plan-card,
  .info-card,
  .mvv-card,
  .exam-item,
  .support-card {
    min-width: 0;
  }

  .channel-card {
    height: 100%;
  }

  .channel-card__btn {
    width: 100%;
    margin-top: auto;
  }

  .ppp-info-grid .channel-card {
    padding: clamp(24px, 2.4vw, 32px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .ppp-info-grid .channel-card__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(13, 46, 211, .08);
    color: var(--blue);
    font-size: 1.55rem;
  }

  .ppp-info-grid .channel-card__title {
    margin-bottom: 8px;
  }

  .ppp-info-grid .channel-card__desc {
    text-align: left;
    max-width: none;
  }

  /* Serviços */
  .services__tabs {
    gap: 10px;
  }

  .services__tab {
    white-space: nowrap;
  }

  .services__panel-visual {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .services__panel-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* About */
  .about__img-bg {
    aspect-ratio: 1.18 / 1;
    min-height: 0;
  }

  .about__img-inner {
    padding: clamp(22px, 3vw, 34px);
  }

  .about__img-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about__img-row:nth-child(2) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about__selos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
  }

  .about__selos img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
  }

  /* Unidades / mapas */
  .unit-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .unit-card__map {
    height: clamp(125px, 12vw, 155px);
    overflow: hidden;
  }

  .unit-card__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .unit-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .unit-card__cta {
    margin-top: auto;
    padding-top: 18px;
  }

  /* Accordion */
  .exam-accordion {
    width: min(100%, 920px);
    margin-inline: auto;
  }

  .exam-header {
    gap: 18px;
  }

  .exam-header-left {
    min-width: 0;
  }

  .exam-header-title {
    overflow-wrap: anywhere;
  }

  /* CTA */
  .support-card {
    width: min(100%, 960px);
  }

  /* Footer / botão WhatsApp */
  .whatsapp-float {
    right: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 34px);
  }

  /* Telas grandes: evita que tudo fique espalhado demais */
  @media (min-width: 1440px) {
    .container {
      width: min(100% - 72px, 1220px);
    }

    .hero__title {
      font-size: 4.25rem;
    }

    /* .section {
    padding: 92px 0;
  } */

  }

  /* Notebook / monitores menores */
  @media (max-width: 1180px) {
    .container {
      width: min(100% - 40px, 1040px);
    }

    .navbar__nav {
      gap: 2px;
    }

    .navbar__link {
      font-size: .82rem;
      padding-inline: 8px;
    }

    .navbar__cta {
      padding-inline: 18px;
    }

    .about__grid,
    .two-col,
    .services__panel.active {
      gap: 44px;
    }

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

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

    .plan-card--featured {
      transform: none;
    }

    .plan-card--featured:hover {
      transform: translateY(-6px);
    }
  }

  /* Tablet */
  @media (max-width: 940px) {
    .container {
      width: min(100% - 36px, 820px);
    }

    .navbar__nav {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .navbar__inner {
      grid-template-columns: auto auto;
      justify-content: space-between;
    }

    .about__grid,
    .two-col,
    .services__panel.active {
      grid-template-columns: 1fr;
      gap: 42px;
    }

    .about__img-wrap,
    .services__panel-visual {
      max-width: 620px;
      margin-inline: auto;
    }

    .three-col,
    .plans__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .services__tabs {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 6px;
      scrollbar-width: thin;
    }

    .services__tab {
      flex: 0 0 auto;
    }

    .support-card {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .support-card__icon {
      margin-inline: auto;
    }

    .support-card .btn {
      width: fit-content;
      margin-inline: auto;
    }
  }

  /* Celular */
  @media (max-width: 680px) {
    html {
      font-size: 15px;
      /* scroll-padding-top: 74px; */
    }

    .container {
      width: min(100% - 32px, 100%);
    }

    .section {
      padding: 64px 0;
    }

    .navbar {
      padding: 12px 0;
    }

    .nav__logo img {
      width: 32px;
      height: 32px;
    }

    .nav__logo span {
      font-size: 1.2rem;
    }

    .hero,
    .hero--page {
      min-height: auto;
      padding: 108px 0 72px;
    }

    .hero__eyebrow {
      font-size: .66rem;
      max-width: 100%;
      text-align: center;
      justify-content: center;
    }

    /* .hero__title {
      font-size: clamp(2.1rem, 11vw, 3rem);
    } */

    .hero__sub {
      font-size: .95rem;
      margin-bottom: 28px;
    }

    .hero__actions {
      flex-direction: column;
      width: 100%;
    }

    .hero__actions .btn {
      width: 100%;
    }

    .three-col,
    .plans__grid,
    .unit-grid,
    .ppp-info-grid,
    .stats-bar__grid {
      grid-template-columns: 1fr;
    }

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

    .mvv-card:last-child {
      grid-column: auto;
    }

    .about__img-bg {
      aspect-ratio: auto;
    }

    .about__img-row,
    .about__img-row:nth-child(2) {
      grid-template-columns: 1fr;
    }

    .about__selos {
      flex-wrap: wrap;
      justify-content: center;
    }

    .about__selos img {
      max-height: 70px;
    }

    .services__panel-visual {
      aspect-ratio: 16 / 11;
    }

    .exam-header {
      padding: 18px;
    }

    .exam-header-icon {
      width: 34px;
      height: 34px;
      min-width: 34px;
    }

    .exam-body.open {
      padding: 0 18px 20px 18px;
    }

    .support-card {
      padding: 24px 20px;
      border-radius: 20px;
    }

    .support-card .btn {
      width: 100%;
    }

    .whatsapp-float {
      width: 58px;
      height: 58px;
    }
  }

  /* Celulares pequenos */
  @media (max-width: 420px) {
    .container {
      width: min(100% - 24px, 100%);
    }

    .section-title {
      font-size: 1.85rem;
    }

    .btn {
      padding-inline: 20px;
    }

    .channel-card,
    .plan-card,
    .unit-card__body,
    .mvv-card {
      padding-inline: 20px;
    }
  }


  /* =========================
   EFEITO SLIDE ENTRE SEÇÕES
========================= */

  html {
    scroll-behavior: smooth;
  }

  /* Evita cortar seções grandes */
  .section {
    min-height: auto;
  }

  /* Hero principal ocupa a tela toda apenas em desktop */
  @media (min-width: 769px) {
    .hero:not(.hero--page) {
      min-height: 100vh;
    }
  }


  /* Evita travar demais no celular */
  @media (max-width: 768px) {
    html {
      scroll-snap-type: none;
    }
  }




  /* =========================
   CLÍNICAS - CARDS PREMIUM
========================= */

.unit-grid--photos {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: repeat(4, minmax(320px, 1fr));
  gap: 22px;
  margin-top: 60px;
  width: 100%;
  align-items: stretch;
}

.unit-grid--photos .unit-card--clinic {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  transition: .35s ease;
  box-shadow: 0 10px 35px rgba(10, 30, 80, 0.08);
  border: 1px solid rgba(32, 62, 224, .08);
}

.unit-grid--photos .unit-card--clinic:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(10, 30, 80, 0.15);
}

.unit-grid--photos .unit-card__image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #e8ecff;
}

.unit-grid--photos .unit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: .5s ease;
  transform: translateZ(0);
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.unit-grid--photos .unit-card--clinic:hover .unit-card__image img {
  transform: scale(1.05);
}

.unit-grid--photos .unit-card__overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.unit-grid--photos .unit-badge {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.unit-grid--photos .unit-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.unit-grid--photos .unit-card__title {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
}

.unit-grid--photos .unit-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray);
  font-size: .98rem;
  line-height: 1.65;
}

.unit-grid--photos .unit-address i {
  color: var(--blue);
  margin-top: 5px;
}

.unit-grid--photos .unit-card__footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eef2ff;
}

.unit-grid--photos .unit-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  font-weight: 800;
  font-size: .95rem;
  transition: .25s ease;
}

.unit-grid--photos .unit-card--clinic:hover .unit-card__cta {
  gap: 12px;
}

@media (max-width: 1200px) {
  .unit-grid--photos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .unit-grid--photos {
    grid-template-columns: 1fr;
  }

  .unit-grid--photos .unit-card--clinic {
    min-height: auto;
  }

  .unit-grid--photos .unit-card__image {
    height: 260px;
  }
}

/* FILTROS */
.blog-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 42px 0 56px;
}

.filter-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid #dfe6f4;
  background: rgba(255, 255, 255, .65);
  color: var(--gray);
  font-size: .9rem;
  font-weight: 700;
  transition: .3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(13, 46, 211, .22);
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* CARD */
.post-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(13, 46, 211, .08);
  box-shadow: 0 12px 34px rgba(13, 46, 211, .08);
  transition: .35s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 54px rgba(13, 46, 211, .14);
}

/* IMAGENS */
.post-card__img,
.post-card__imgDestaque {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #dfe8ff;
}

.post-card__img img,
.post-card__imgDestaque img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

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

/* CONTEÚDO */
.post-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__cat {
  color: var(--blue);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.post-card__title {
  color: var(--dark);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
}

.post-card__desc {
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: justify;
}

.post-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.post-card__date {
  color: var(--gray);
  font-size: .82rem;
}

.post-card__read {
  color: var(--blue);
  font-size: .82rem;
  font-weight: 800;
}

/* CARD DESTAQUE */
.post-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 450px;
}

.post-card--featured .post-card__imgDestaque {
  height: 100%;
}

.post-card--featured .post-card__body {
  justify-content: center;
  padding: 38px;
}

.post-card--featured .post-card__title {
  font-size: 1.85rem;
  line-height: 1.18;
}

.post-card--featured .post-card__desc {
  font-size: 1rem;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  #posts {
    padding-top: 64px;
  }

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

  .post-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .post-card--featured .post-card__imgDestaque {
    height: 240px;
  }

  .post-card--featured .post-card__body {
    padding: 28px;
  }

  .post-card--featured .post-card__title {
    font-size: 1.45rem;
  }

  .blog-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .filter-btn {
    white-space: nowrap;
  }
}

/* ── Texto justificado nos artigos do blog ── */
.artigo-body p,
.artigo-body li {
  text-align: justify;
}
}