/* =========================================
   HOME MT HIGIENIZAÇÃO
   Desktop e mobile independentes
========================================= */

.home-page {
  --primary: #062d5b;
  --primary-dark: #021534;
  --primary-soft: #0a417b;
  --blue: #1683e8;
  --cyan: #48baff;
  --blue-light: #eaf4ff;
  --muted: #f2f7fc;
  --dark: #071a33;
  --text: #526176;
  --border: #d9e5f1;
  --white: #ffffff;

  overflow-x: hidden;
  background: #ffffff;
}

/* =========================================
   CABEÇALHO
========================================= */

.home-page .navbar {
  min-height: 76px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 45, 91, 0.08);
  box-shadow: 0 8px 30px rgba(2, 21, 52, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-page .navbar-nav .nav-link {
  color: #102a4b;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.home-page .navbar-nav .nav-link:hover,
.home-page .navbar-nav .nav-link.active {
  color: var(--blue);
}

/* =========================================
   CONTROLE DOS HEROS
========================================= */

.home-page .mt-hero-desktop {
  display: block;
}

.home-page .mt-hero-mobile {
  display: none;
}

/* =========================================
   HERO EXCLUSIVO PARA DESKTOP
========================================= */

.home-page .mt-hero-desktop {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  overflow: hidden;
  padding: 132px 0 70px;

  background:
    linear-gradient(
      90deg,
      rgba(2, 21, 52, 0.99) 0%,
      rgba(4, 40, 80, 0.96) 41%,
      rgba(4, 40, 80, 0.65) 68%,
      rgba(2, 21, 52, 0.12) 100%
    ),
    url("../img/hero/hero-bg.png");

  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-page .mt-hero-desktop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 22% 38%,
      rgba(22, 131, 232, 0.2),
      transparent 35%
    );
}

.home-page .mt-hero-desktop::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(72, 186, 255, 0.6),
    transparent
  );
}

.home-page .mt-hero-desktop__container {
  position: relative;
  z-index: 2;
}

.home-page .mt-hero-desktop__row {
  min-height: 420px;
}

.home-page .mt-hero-desktop__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 9px 14px;

  color: #eaf6ff;
  background: rgba(22, 131, 232, 0.15);
  border: 1px solid rgba(72, 186, 255, 0.4);
  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-page .mt-hero-desktop__badge i {
  color: #53baff;
}

.home-page .mt-hero-desktop h1 {
  max-width: 680px;
  margin: 0 0 20px;

  color: #ffffff;
  font-size: clamp(2.6rem, 4.3vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -2px;
}

.home-page .mt-hero-desktop h1 span {
  display: block;
  color: #58b5ff;
}

.home-page .mt-hero-desktop__text {
  max-width: 600px;
  margin: 0 0 28px;

  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-page .mt-hero-desktop__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.home-page .mt-hero-desktop__actions .btn-whatsapp {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding-inline: 24px;

  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.2);
  font-weight: 800;
}

.home-page .mt-hero-desktop__secondary-btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding-inline: 24px;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  box-shadow: none;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.home-page .mt-hero-desktop__secondary-btn:hover {
  color: var(--primary-dark);
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Benefícios do hero desktop */

.home-page .mt-hero-desktop__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 21px 22px;

  background: rgba(4, 20, 41, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.26);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-page .mt-hero-desktop__benefit {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.home-page .mt-hero-desktop__benefit-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;

  color: #ffffff;
  background: linear-gradient(135deg, #1479ff, #45b8ff);
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(20, 121, 255, 0.26);
}

.home-page .mt-hero-desktop__benefit strong,
.home-page .mt-hero-desktop__benefit span {
  display: block;
}

.home-page .mt-hero-desktop__benefit strong {
  color: #ffffff;
  font-size: 0.86rem;
  line-height: 1.25;
}

.home-page .mt-hero-desktop__benefit span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.71rem;
  line-height: 1.35;
}

/* =========================================
   PADRÃO DAS SEÇÕES
========================================= */

.home-page .section-tag {
  color: #126bc4;
  background: #e4f2ff;
  border: 1px solid #cce6ff;
}

.home-page .section-heading h2,
.home-page .about-preview h2 {
  color: var(--dark);
}

.home-page .section-heading p {
  color: var(--text);
}

/* =========================================
   SOBRE
========================================= */

.home-page .about-preview {
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.98) 37%,
      rgba(255, 255, 255, 0.82) 58%,
      rgba(255, 255, 255, 0.18) 100%
    ),
    url("../img/sobre/dono-mt-costas.png");

  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-page .about-hero-content h2 {
  color: var(--dark);
}

.home-page .about-hero-content p {
  color: var(--text);
}

/* =========================================
   HIGIENE E BEM-ESTAR
========================================= */

.home-page .health-section {
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(72, 186, 255, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #062d5b, #021534);
}

.home-page .health-section .section-tag {
  color: #dff3ff;
  background: rgba(72, 186, 255, 0.14);
  border-color: rgba(72, 186, 255, 0.3);
}

.home-page .health-section h2 {
  color: #ffffff;
}

.home-page .health-section > .container > .row > div > p {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .health-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-page .health-card h3 {
  color: #ffffff;
}

.home-page .health-card p {
  color: rgba(255, 255, 255, 0.67);
}

.home-page .health-card i {
  color: #ffffff;
  background: linear-gradient(135deg, #1683e8, #48baff);
}

/* =========================================
   SERVIÇOS
========================================= */

.home-page .services-preview {
  background: var(--muted);
}

.home-page .service-card {
  background: #ffffff;
  border: 1px solid rgba(6, 45, 91, 0.11);
  box-shadow: 0 14px 35px rgba(2, 21, 52, 0.08);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.home-page .service-card:hover {
  border-color: rgba(22, 131, 232, 0.35);
  box-shadow: 0 22px 48px rgba(2, 21, 52, 0.14);
  transform: translateY(-5px);
}

.home-page .service-card-body h3 {
  color: #092950;
}

.home-page .service-card-body p {
  color: var(--text);
}

.home-page .link-more {
  color: #126bc4;
}

/* =========================================
   ANTES E DEPOIS
========================================= */

.home-page .results-section {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(72, 186, 255, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #062d5b, #021534);
}

.home-page .results-section .section-tag {
  color: #e5f5ff;
  background: rgba(72, 186, 255, 0.14);
  border-color: rgba(72, 186, 255, 0.3);
}

.home-page .results-section .section-heading h2 {
  color: #ffffff;
}

.home-page .results-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .result-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.home-page .results-section .btn-primary-custom {
  color: #062d5b;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
}

.home-page .results-section .btn-primary-custom:hover {
  color: #ffffff;
  background: #1683e8;
  border-color: #1683e8;
}

/* =========================================
   IMPERMEABILIZAÇÃO
========================================= */

.home-page .highlight-section {
  background: #ffffff;
}

.home-page .highlight-box {
  background:
    radial-gradient(
      circle at 86% 18%,
      rgba(72, 186, 255, 0.28),
      transparent 30%
    ),
    linear-gradient(135deg, #0a417b, #021534);

  border: 1px solid rgba(22, 131, 232, 0.17);
  box-shadow: 0 24px 55px rgba(2, 21, 52, 0.2);
}

/* =========================================
   COMO FUNCIONA
========================================= */

.home-page .process-section {
  background: var(--muted);
}

.home-page .process-card {
  background: #ffffff;
  border: 1px solid rgba(6, 45, 91, 0.11);
  box-shadow: 0 12px 32px rgba(2, 21, 52, 0.07);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.home-page .process-card:hover {
  box-shadow: 0 20px 42px rgba(2, 21, 52, 0.12);
  transform: translateY(-4px);
}

.home-page .process-card span {
  color: #ffffff;
  background: linear-gradient(135deg, #126bc4, #48baff);
}

.home-page .process-card h3 {
  color: #092950;
}

.home-page .process-card p {
  color: var(--text);
}

/* =========================================
   CTA FINAL
========================================= */

.home-page .final-cta {
  background: #ffffff;
}

.home-page .final-cta-box {
  color: #ffffff;

  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(72, 186, 255, 0.25),
      transparent 30%
    ),
    linear-gradient(135deg, #062d5b, #021534);

  border: 1px solid rgba(72, 186, 255, 0.18);
  box-shadow: 0 24px 55px rgba(2, 21, 52, 0.2);
}

.home-page .final-cta-box h2 {
  color: #ffffff;
}

.home-page .final-cta-box p {
  color: rgba(255, 255, 255, 0.74);
}

/* =========================================
   RODAPÉ
========================================= */

.home-page .site-footer {
  background: #010e24;
  border-top: 1px solid rgba(72, 186, 255, 0.12);
}

/* =========================================
   TABLETS E TELAS INTERMEDIÁRIAS
========================================= */

@media (min-width: 768px) and (max-width: 1199.98px) {
  .home-page .mt-hero-desktop {
    min-height: 650px;

    background:
      linear-gradient(
        90deg,
        rgba(2, 21, 52, 0.98) 0%,
        rgba(4, 40, 80, 0.93) 52%,
        rgba(4, 40, 80, 0.62) 100%
      ),
      url("../img/hero/hero-bg.png");

    background-position: center;
    background-size: cover;
  }

  .home-page .mt-hero-desktop h1 {
    max-width: 620px;
    font-size: clamp(2.5rem, 5.4vw, 3.7rem);
  }

  .home-page .mt-hero-desktop__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .home-page .navbar-collapse {
    margin-top: 10px;
    padding: 14px;

    background: #ffffff;
    border: 1px solid rgba(6, 45, 91, 0.08);
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(2, 21, 52, 0.12);
  }
}

/* =========================================
   HERO EXCLUSIVO PARA MOBILE
========================================= */

@media (max-width: 767.98px) {
  /* O desktop deixa de existir visualmente no celular */

  .home-page .mt-hero-desktop {
    display: none !important;
  }

  .home-page .mt-hero-mobile {
    display: block;
    overflow: hidden;
    padding-top: 76px;
    background: #062d5b;
  }

  /* VÍDEO */

  .home-page .mt-hero-mobile__media {
    position: relative;
    height: clamp(285px, 82vw, 360px);
    overflow: hidden;
    background: #04172d;
  }

  .home-page .mt-hero-mobile__video {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
  }

  .home-page .mt-hero-mobile__media-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
      linear-gradient(
        180deg,
        rgba(2, 21, 52, 0.08) 0%,
        rgba(2, 21, 52, 0) 48%,
        rgba(6, 45, 91, 0.42) 76%,
        #062d5b 100%
      );
  }

  .home-page .mt-hero-mobile__video-label {
    position: absolute;
    top: 18px;
    left: 18px;

    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;

    color: #ffffff;
    background: rgba(2, 21, 52, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    font-size: 0.67rem;
    font-weight: 700;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .home-page .mt-hero-mobile__video-label i {
    color: #5dc3ff;
    font-size: 0.85rem;
  }

  /* CONTEÚDO MOBILE */

 .home-page .mt-hero-mobile__content {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  padding: 28px 0 25px;

    background:
      radial-gradient(
        circle at 92% 6%,
        rgba(72, 186, 255, 0.2),
        transparent 35%
      ),
      linear-gradient(
        145deg,
        #083b70 0%,
        #062d5b 48%,
        #031d3b 100%
      );

    border-radius: 28px 28px 0 0;
  }

  .home-page .mt-hero-mobile__badge {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    padding: 8px 11px;

    color: #e9f6ff;
    background: rgba(72, 186, 255, 0.12);
    border: 1px solid rgba(105, 198, 255, 0.34);
    border-radius: 999px;

    font-size: 0.65rem;
    font-weight: 750;
  }

  .home-page .mt-hero-mobile__badge i {
    color: #60c5ff;
  }

.home-page .mt-hero-mobile h1 {
  max-width: 340px;
  margin: 0 0 10px;

  color: #ffffff;
  font-size: clamp(1.72rem, 7.8vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -1px;
}

  .home-page .mt-hero-mobile h1 span {
    color: #5cbcff;
  }

.home-page .mt-hero-mobile__text {
  max-width: 335px;
  margin: 0 0 16px;

  color: rgba(255, 255, 255, 0.73);
  font-size: 0.82rem;
  line-height: 1.43;
}

  /* AÇÕES MOBILE */

  .home-page .mt-hero-mobile__actions {
    display: flex;
    flex-direction: column;
    gap: 17px;
  }

  .home-page .mt-hero-mobile__whatsapp {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 0;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.22);

    font-size: 0.91rem;
    font-weight: 800;
  }

  .home-page .mt-hero-mobile__services-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
  }

  .home-page .mt-hero-mobile__services-link i {
    color: #62c6ff;
  }

/* =========================================
   REMOÇÃO DOS CARDS MOBILE (APENAS HERO AZUL)
========================================= */

@media (max-width: 767.98px) {
  /* Oculta totalmente os cards de diferenciais no celular */
  .home-page .mt-hero-mobile__trust {
    display: none !important;
  }

  /* Fecha o bloco azul do hero com bordas arredondadas elegantes embaixo */
  .home-page .mt-hero-mobile__content {
    border-radius: 0 0 32px 32px !important;
    padding-bottom: 40px !important; /* Dá um respiro elegante antes de acabar a seção azul */
  }
}
  /* SOBRE NO MOBILE */

  .home-page .about-preview {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.99) 0%,
        rgba(255, 255, 255, 0.95) 64%,
        rgba(255, 255, 255, 0.8) 100%
      ),
      url("../img/sobre/dono-mt-costas.png");

    background-position: center;
    background-size: cover;
  }

  /* ESPAÇAMENTOS MOBILE */

  .home-page .services-preview,
  .home-page .health-section,
  .home-page .results-section,
  .home-page .process-section,
  .home-page .highlight-section,
  .home-page .final-cta {
    overflow: hidden;
  }
}

/* =========================================
   CELULARES MENORES
========================================= */

@media (max-width: 390px) {
  .home-page .mt-hero-mobile__media {
    height: 275px;
  }

  .home-page .mt-hero-mobile__content {
    margin-top: -36px;
    padding-top: 32px;
  }

  .home-page .mt-hero-mobile h1 {
    font-size: 1.94rem;
  }

  .home-page .mt-hero-mobile__trust {
    padding-inline: 5px;
  }

  .home-page .mt-hero-mobile__trust-item {
    padding-inline: 5px;
  }

  .home-page .mt-hero-mobile__trust-icon {
    width: 43px;
    height: 43px;
    font-size: 1.1rem;
  }

  .home-page .mt-hero-mobile__trust-item strong {
    font-size: 0.62rem;
  }

  .home-page .mt-hero-mobile__trust-item span {
    font-size: 0.52rem;
  }
}
/* =========================================
   SEPARAÇÃO DEFINITIVA DOS HEROS
========================================= */

/* Desktop e tablet */
@media (min-width: 768px) {
  .home-page .hero-section {
    display: block !important;
  }

  .home-page .mt-hero-mobile {
    display: none !important;
  }
}

/* Celular */
@media (max-width: 767.98px) {
  .home-page .hero-section {
    display: none !important;
  }

  .home-page .mt-hero-mobile {
    display: block !important;
  }

  /* Vídeo mais compacto */
  .home-page .mt-hero-mobile__media {
    height: clamp(220px, 62vw, 270px);
  }

  .home-page .mt-hero-mobile__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }

  /* Área de conteúdo mais compacta */
  .home-page .mt-hero-mobile__content {
    margin-top: -30px;
    padding: 26px 0 24px;
  }

  .home-page .mt-hero-mobile__badge {
    margin-bottom: 11px;
    padding: 6px 9px;
    font-size: 0.61rem;
  }

  .home-page .mt-hero-mobile h1 {
    max-width: 340px;
    margin: 0 0 10px;
    font-size: clamp(1.72rem, 7.8vw, 2.15rem);
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .home-page .mt-hero-mobile__text {
    max-width: 335px;
    margin: 0 0 16px;
    font-size: 0.82rem;
    line-height: 1.43;
  }

  .home-page .mt-hero-mobile__actions {
    gap: 11px;
  }

  .home-page .mt-hero-mobile__whatsapp {
    min-height: 49px;
    font-size: 0.86rem;
  }

  .home-page .mt-hero-mobile__services-link {
    font-size: 0.77rem;
  }

  /* Cards mais próximos */
  .home-page .mt-hero-mobile__trust {
    padding: 10px 8px 13px;
  }

  .home-page .mt-hero-mobile__trust-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 7px;
    font-size: 1.05rem;
  }

  .home-page .mt-hero-mobile__trust-item strong {
    min-height: 29px;
    margin-bottom: 3px;
    font-size: 0.63rem;
  }

  .home-page .mt-hero-mobile__trust-item span {
    font-size: 0.52rem;
    line-height: 1.3;
  }
}

/* Celulares menores */
@media (max-width: 390px) {
  .home-page .mt-hero-mobile__media {
    height: 215px;
  }

  .home-page .mt-hero-mobile__content {
    margin-top: -28px;
    padding: 24px 0 22px;
  }

  .home-page .mt-hero-mobile h1 {
    font-size: 1.68rem;
  }
}
/* =========================================
   CARROSSEL — HIGIENE E BEM-ESTAR
========================================= */

.home-page .health-carousel {
  min-width: 0;
  padding: 18px;

  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 8, 28, 0.22);
}

/* Cabeçalho e rodapé */

.home-page .health-carousel__toolbar,
.home-page .health-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-page .health-carousel__toolbar {
  margin-bottom: 12px;
  padding: 0 2px;
}

.home-page .health-carousel__label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Setas e contador */

.home-page .health-carousel__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-page .health-carousel__counter {
  display: inline-flex;
  min-width: 50px;
  align-items: baseline;
  gap: 4px;

  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
}

.home-page .health-carousel__counter strong {
  color: #ffffff;
  font-size: 0.92rem;
}

.home-page .health-carousel__button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.home-page .health-carousel__button:hover:not(:disabled) {
  background: rgba(72, 186, 255, 0.2);
  border-color: rgba(72, 186, 255, 0.44);
  transform: translateY(-2px);
}

.home-page .health-carousel__button:disabled {
  cursor: not-allowed;
  opacity: 0.32;
}

/* Área de rolagem */

.home-page .health-grid {
  --health-gap: 16px;
  --health-slide-width: 86%;

  display: flex;
  grid-template-columns: none;
  gap: var(--health-gap);
  min-width: 0;
  overflow-x: auto;
  padding: 4px 2px 12px;

  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  overscroll-behavior-inline: contain;
}

.home-page .health-grid::-webkit-scrollbar {
  display: none;
}

.home-page .health-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

/* Cards */

.home-page .health-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  flex: 0 0 var(--health-slide-width);
  min-width: 0;
  min-height: 174px;
  height: auto;
  align-content: center;
  column-gap: 18px;
  row-gap: 7px;
  padding: 26px;

  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-page .health-card i {
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  margin: 0;

  box-shadow: 0 12px 26px rgba(22, 131, 232, 0.24);
}

.home-page .health-card h3 {
  align-self: end;
  margin: 0;

  font-size: 1.04rem;
  line-height: 1.3;
}

.home-page .health-card p {
  align-self: start;
  margin: 0;

  font-size: 0.88rem;
  line-height: 1.55;
}

/* Espaço necessário para o último card */

.home-page .health-carousel__spacer {
  flex: 0 0 max(
    0px,
    calc(100% - var(--health-slide-width) - var(--health-gap))
  );
}

/* Indicadores */

.home-page .health-carousel__footer {
  padding: 2px 3px 0;
}

.home-page .health-carousel__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.home-page .health-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;

  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;

  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.home-page .health-carousel__dot.is-active {
  width: 24px;
  background: #48baff;
}

.home-page .health-carousel__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
}

.home-page .health-carousel__hint i {
  color: #5dc3ff;
  font-size: 0.9rem;
}

/* Foco pelo teclado */

.home-page .health-carousel__button:focus-visible,
.home-page .health-carousel__dot:focus-visible,
.home-page .health-grid:focus-visible {
  outline: 3px solid rgba(93, 195, 255, 0.58);
  outline-offset: 3px;
}

/* Ajustes para celular */

@media (max-width: 575.98px) {
  .home-page .health-carousel {
    margin-top: 4px;
    padding: 14px;
    border-radius: 22px;
  }

  .home-page .health-carousel__toolbar {
    margin-bottom: 10px;
  }

  .home-page .health-carousel__label {
    font-size: 0.66rem;
  }

  .home-page .health-carousel__counter {
    display: none;
  }

  .home-page .health-carousel__button {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .home-page .health-grid {
    --health-gap: 12px;
    --health-slide-width: 88%;

    padding-bottom: 10px;
  }

  .home-page .health-card {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 172px;
    column-gap: 13px;
    padding: 21px 18px;
    border-radius: 18px;
  }

  .home-page .health-card i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.16rem;
  }

  .home-page .health-card h3 {
    font-size: 0.94rem;
  }

  .home-page .health-card p {
    font-size: 0.8rem;
    line-height: 1.48;
  }

  .home-page .health-carousel__hint {
    font-size: 0.66rem;
  }
}

/* Redução de animações configurada pelo usuário */

@media (prefers-reduced-motion: reduce) {
  .home-page .health-grid {
    scroll-behavior: auto;
  }

  .home-page .health-carousel__button,
  .home-page .health-carousel__dot {
    transition: none;
  }
}
/* =========================================
   HERO DESKTOP — VÍDEO EM TELA INTEIRA
========================================= */

@media (min-width: 768px) {
  .home-page .hero-video-section {
    position: relative;
    isolation: isolate;
    display: block;
    min-height: 700px;
    padding: 130px 0 72px;
    overflow: visible;
    background: #03152e;
  }

  /* Fundo em vídeo */

  .home-page .hero-video-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #03152e;
  }

  .home-page .hero-video-background video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
  }

  /* Degradê azul mais forte atrás do texto */

.home-page .hero-video-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;

  width: 64%;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    #021330 0%,
    rgba(2, 19, 48, 0.98) 40%,
    rgba(2, 19, 48, 0.85) 58%,
    rgba(2, 19, 48, 0.46) 76%,
    rgba(2, 19, 48, 0.12) 92%,
    transparent 100%
  );
}

  .home-page .hero-video-section .hero-content {
    position: relative;
    z-index: 2;
  }

  .home-page .hero-video-section .hero-row {
    min-height: 420px;
  }

  .home-page .hero-video-section .hero-text-column {
    position: relative;
    z-index: 3;
  }

  /* Localização */

  .home-page .hero-video-section .hero-badge {
    margin-bottom: 20px;
    color: #ffffff;
    background: rgba(7, 55, 111, 0.64);
    border: 1px solid rgba(129, 203, 255, 0.3);
    box-shadow: 0 12px 35px rgba(0, 15, 40, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .home-page .hero-video-section .hero-badge i {
    color: #61c5ff;
  }

  /* Título */

  .home-page .hero-video-section h1 {
    max-width: 720px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(2.8rem, 4.2vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -2px;
    text-shadow: 0 8px 30px rgba(0, 16, 45, 0.2);
  }

  .home-page .hero-video-section h1 span {
    display: block;
    width: fit-content;

    color: transparent;
    background: linear-gradient(
      90deg,
      #49b6ff 0%,
      #168cff 48%,
      #73d4ff 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Descrição */

  .home-page .hero-video-section .hero-text {
    max-width: 570px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
    line-height: 1.65;
    text-shadow: 0 3px 16px rgba(0, 15, 40, 0.24);
  }

  /* Botão secundário */

  .home-page
    .hero-video-section
    .hero-actions
    .btn-primary-custom {
    color: #ffffff;
    background: rgba(12, 101, 201, 0.65);
    border-color: rgba(133, 208, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .home-page
    .hero-video-section
    .hero-actions
    .btn-primary-custom:hover {
    background: #1479e8;
    border-color: #1479e8;
  }

  /* Barra de cards */

  .home-page .hero-video-section .hero-benefits-bar {
    position: relative;
    z-index: 4;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
    padding: 19px 22px;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(1, 21, 51, 0.24);
    transform: translateY(52%);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}

/* Tablets */

@media (min-width: 768px) and (max-width: 991.98px) {
  .home-page .hero-video-section {
    min-height: 760px;
    padding-top: 120px;
  }

  .home-page .hero-video-section .hero-row {
    min-height: 400px;
  }

  .home-page .hero-video-section h1 {
    max-width: 610px;
    font-size: clamp(2.6rem, 6vw, 3.5rem);
  }

  .home-page .hero-video-section .hero-benefits-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: translateY(40%);
  }
}

/* Celular continua usando a hero mobile atual */

@media (max-width: 767.98px) {
  .home-page .hero-video-section {
    display: none !important;
  }
}
/* HERO DESKTOP MAIS COMPACTA */
@media (min-width: 992px) {
  .home-page .hero-video-section {
    min-height: 620px;
    padding: 90px 0 48px;
  }

  .home-page .hero-video-section .hero-row {
    min-height: 355px;
  }

  .home-page .hero-video-section h1 {
    max-width: 650px;
    margin-bottom: 16px;
    font-size: clamp(2.6rem, 3.7vw, 3.65rem);
    line-height: 1.03;
    letter-spacing: -1.5px;
  }

  .home-page .hero-video-section .hero-badge {
    margin-bottom: 16px;
    padding: 10px 17px;
    font-size: 0.83rem;
  }

  .home-page .hero-video-section .hero-text {
    max-width: 610px;
    margin-bottom: 22px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .home-page .hero-video-section .hero-actions {
    gap: 12px;
  }

  .home-page .hero-video-section .hero-actions .btn {
    min-height: 52px;
    padding: 12px 24px;
    font-size: 0.92rem;
  }

  /* Vídeo um pouco menor e alinhado à direita */
  .home-page .hero-video-background {
    background: #021330;
  }

  .home-page .hero-video-background video {
    width: 88%;
    height: 100%;
    margin-left: auto;
    object-fit: cover;
    object-position: center 52%;
    opacity: 1;
    filter: none;
  }

  /* Cards mais compactos */
  .home-page .hero-video-section .hero-benefits-bar {
    gap: 14px;
    margin-top: 10px;
    padding: 16px 18px;
    transform: translateY(38%);
  }

  .home-page .hero-video-section .hero-benefit-item {
    gap: 10px;
  }

  .home-page .hero-video-section .hero-benefit-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .home-page .hero-video-section .hero-benefit-item strong {
    font-size: 0.83rem;
    line-height: 1.2;
  }

  .home-page .hero-video-section .hero-benefit-item span {
    font-size: 0.68rem;
    line-height: 1.3;
  }
}
@media (min-width: 1200px) {
  .home-page .hero-video-section .hero-text-column {
    flex: 0 0 70%;
    width: 70%;
    max-width: 70%;
  }

  .home-page .hero-video-section h1 {
    width: 820px;
    max-width: none;
    font-size: 3.55rem;
  }

  .home-page .hero-video-section h1 .hero-title-main {
    display: block;
    width: auto;
    color: #ffffff;
    background: none;
    white-space: nowrap;
    -webkit-text-fill-color: #ffffff;
  }

  .home-page .hero-video-section h1 .hero-title-highlight {
    display: block;
    width: fit-content;
    white-space: nowrap;
    background: linear-gradient(90deg, #49b6ff, #168cff, #73d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media (min-width: 1200px) {
  .home-page .hero-video-section .hero-text-column {
    flex: 0 0 76% !important;
    width: 76% !important;
    max-width: 76% !important;
  }

  .home-page .hero-video-section h1 {
    width: max-content !important;
    max-width: none !important;
    font-size: 3.15rem !important;
    line-height: 1.05 !important;
  }

  .home-page .hero-video-section .hero-title-main {
    display: block !important;
    white-space: nowrap !important;
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  .home-page .hero-video-section .hero-title-highlight {
    display: block !important;
    width: fit-content !important;
    white-space: nowrap !important;
    background: linear-gradient(90deg, #49b6ff, #168cff, #73d4ff) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
}
@media (min-width: 992px) {
  .home-page .hero-video-section {
    min-height: calc(100vh - 92px) !important;
  }

  .home-page .hero-video-section .hero-content {
    min-height: max(
      482px,
      calc(100vh - 230px)
    );

    display: flex;
    flex-direction: column;
  }

  .home-page .hero-video-section .hero-benefits-bar {
    margin-top: auto !important;
    transform: translateY(38%) !important;
  }
}

/* =========================================
   HERO DESKTOP — REGRA FINAL CONSOLIDADA
   Mantém a hero até o final da tela.
========================================= */

@media (min-width: 992px) {
  .home-page .hero-video-section {
    position: relative !important;
    box-sizing: border-box !important;
    display: block !important;

    width: 100% !important;
    height: calc(100vh - 76px) !important;
    height: calc(100svh - 76px) !important;
    min-height: 680px !important;
    padding: 52px 0 28px !important;

    overflow: hidden !important;
    background: #021330 !important;
  }

  .home-page .hero-video-background {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .home-page .hero-video-background video {
    display: block !important;
    width: 88% !important;
    height: 100% !important;
    margin-left: auto !important;

    object-fit: cover !important;
    object-position: center 52% !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .home-page .hero-video-gradient {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 64% !important;
    height: 100% !important;
  }

  .home-page .hero-video-section .hero-content {
    position: relative !important;
    z-index: 2 !important;

    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
  }

  .home-page .hero-video-section .hero-row {
    display: flex !important;
    flex: 1 1 auto !important;
    align-items: center !important;
    min-height: 0 !important;
    margin-block: 0 !important;
  }

  .home-page .hero-video-section .hero-benefits-bar {
    flex: 0 0 auto !important;
    margin-top: 18px !important;
    padding: 16px 18px !important;
    transform: none !important;
  }
}

@media (min-width: 1200px) {
  .home-page .hero-video-section .hero-text-column {
    flex: 0 0 76% !important;
    width: 76% !important;
    max-width: 76% !important;
  }

  .home-page .hero-video-section h1 {
    width: max-content !important;
    max-width: 100% !important;
    font-size: 3.15rem !important;
    line-height: 1.05 !important;
  }

  .home-page .hero-video-section h1 > span {
    display: block !important;
    width: fit-content !important;
    white-space: nowrap !important;
  }
}
@media (min-width: 768px) {
  .home-page .hero-video-background img {
    display: block;
    width: 88%;
    max-width: none;
    height: 100%;
    margin-left: auto;
    object-fit: cover;
    object-position: center;
  }
}
@media (min-width: 768px) {
  .home-page .hero-video-background img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;

    /* Enquadramento */
    object-position: 52% center !important;

    /* Aproxima levemente a imagem */
    transform: scale(1.05);
    transform-origin: center right;
  }
}
/* =========================================
   CARDS DE ANTES E DEPOIS (INTERATIVO)
========================================= */
.results-section {
  background-color: #f9fbfd;
  padding: 100px 0;
}

.result-card {
  background: #ffffff;
  border: 1px solid rgba(6, 45, 91, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(2, 21, 52, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(2, 21, 52, 0.08);
}

/* =========================================
   LÓGICA DO SLIDER ANTES E DEPOIS
========================================= */
.before-after-compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: ew-resize;
  /* O JavaScript controla esta variável exata declarada no seu script: */
  --compare-position: 50%;
  touch-action: pan-y; /* Permite rolar a página verticalmente, mas captura o arraste lateral */
}

.before-after-compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Camada Inferior (Imagem do ANTES) */
.before-after-compare .result-image:nth-child(1) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Camada Superior (Imagem do DEPOIS) - Recortada dinamicamente pelo valor do JS */
.before-after-compare .result-image:nth-child(2) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: polygon(var(--compare-position) 0, 100% 0, 100% 100%, var(--compare-position) 100%);
}

/* A Linha Divisória que se move */
.result-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 4px;
  background-color: #ffffff;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}

/* O Botão central com o ícone de setas */
.result-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-blue, #1683e8);
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.before-after-compare:hover .result-divider span {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Rótulos Flutuantes (Antes / Depois) */
.label-before, 
.label-after {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  background: rgba(2, 21, 52, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 4;
  pointer-events: none;
}

.label-before { left: 16px; }
.label-after { right: 16px; }

/* Conteúdo Textual do Card */
.result-content {
  padding: 40px 24px 28px 24px;
  position: relative;
  flex-grow: 1;
}

.result-icon {
  position: absolute;
  top: -24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary, #062d5b), var(--color-accent-blue, #1683e8));
  color: #ffffff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 20px rgba(22, 131, 232, 0.25);
  z-index: 5;
}

.result-content h3 {
  color: var(--color-primary-dark, #021534);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.result-content p {
  color: var(--color-text-body, #526176);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.results-actions {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 767.98px) {
  .results-actions {
    flex-direction: column;
    padding: 0 16px;
  }
  .results-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
