/* ==============================================================
   DR. LEVIR LIMA — ODONTOLOGIA DO SONO & ORTODONTIA
   Design System & Styling — High Standard Editorial Luxury
   ============================================================== */

:root {
  /* Cores Principais Extraídas da Identidade Visual */
  --azul-royal: #0C1E42;
  --azul-escuro: #08142C;
  --azul-profundo: #061124;
  --azul-suave: #E8EEF8;
  --azul-subtil: #F1F5FB;

  --dourado-areia: #C9A165;
  --dourado-hover: #B58C50;
  --dourado-suave: #FDF9F3;
  --dourado-borda: rgba(201, 161, 101, 0.32);
  --dourado-glow: rgba(201, 161, 101, 0.22);

  --branco: #FFFFFF;
  --cinza-fundo: #F8FAFD;
  --cinza-card: #FFFFFF;
  --cinza-grafite: #262626;
  --cinza-subtexto: #4F5563;
  --cinza-borda: #E2E8F0;

  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5D;

  /* Tipografia Obrigatória */
  --font-title: 'Josefin Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Elevações e Sombras */
  --shadow-sm: 0 4px 12px rgba(12, 30, 66, 0.04);
  --shadow-md: 0 10px 30px rgba(8, 20, 44, 0.07);
  --shadow-lg: 0 20px 48px rgba(8, 20, 44, 0.12);
  --shadow-gold: 0 10px 30px rgba(201, 161, 101, 0.18);

  /* Transições e Bordas */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==============================================================
   RESET & BASE
   ============================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--cinza-grafite);
  background-color: var(--branco);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Tipografia de Títulos */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--cinza-grafite);
  line-height: 1.25;
  font-weight: 600;
}

/* Destaque em H2 / Títulos (Dourado Areia sem itálico, mesmo peso do restante do título) */
.highlight {
  color: var(--dourado-areia);
  font-style: normal;
  font-weight: inherit;
  position: relative;
  display: inline;
}

/* Eyebrows Elegantes */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azul-royal);
  margin-bottom: 0.875rem;
  padding: 0.35rem 0.85rem;
  background: var(--azul-suave);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(12, 30, 66, 0.15);
  white-space: nowrap;
}

.eyebrow.eyebrow-gold {
  color: var(--dourado-areia);
  background: var(--dourado-suave);
  border-color: var(--dourado-borda);
}

/* Seções Gerais */
.section-padding {
  padding: 5.5rem 0;
  position: relative;
}

.bg-light {
  background-color: var(--cinza-fundo);
}

.bg-white {
  background-color: var(--branco);
}

.bg-royal {
  background: linear-gradient(145deg, var(--azul-profundo) 0%, var(--azul-royal) 100%);
  color: var(--branco);
}

.bg-royal h2,
.bg-royal h3,
.bg-royal p {
  color: var(--branco);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-header.text-left {
  text-align: left;
  margin: 0 0 2.5rem 0;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--cinza-subtexto);
  line-height: 1.6;
}

/* Botões de Ação — Design Refinado Estilo Referência com Ícone WhatsApp à Direita */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.btn:not(.btn-header-cta):not(.btn-secondary) {
  min-width: 260px;
  justify-content: space-between;
}

.btn:not(.btn-header-cta) svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.btn:not(.btn-header-cta):hover svg {
  transform: scale(1.12);
}

.btn-royal {
  background-color: var(--azul-royal);
  color: var(--branco);
  box-shadow: 0 8px 24px rgba(12, 30, 66, 0.28);
}

.btn-royal:hover {
  background-color: var(--azul-escuro);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 30, 66, 0.35);
  color: var(--branco);
}

.btn-gold {
  background-color: var(--dourado-areia);
  color: var(--branco);
  box-shadow: 0 8px 24px rgba(201, 161, 101, 0.32);
}

.btn-gold:hover {
  background-color: var(--dourado-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 161, 101, 0.4);
  color: var(--branco);
}

.btn-secondary {
  background-color: transparent;
  color: var(--azul-royal);
  border: 1.5px solid var(--azul-royal);
}

.btn-secondary:hover {
  background-color: var(--azul-suave);
  transform: translateY(-2px);
}

.btn-secondary-light {
  background-color: transparent;
  color: var(--branco);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--branco);
  color: var(--branco);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--branco);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  color: var(--branco);
}



/* ==============================================================
   TOP UTILITY BAR
   ============================================================== */
.topbar {
  background-color: var(--azul-profundo);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left {
  display: flex;
  align-items: center;
}

.topbar-instagram {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  transition: color 0.2s ease;
}

.topbar-item:hover {
  color: var(--dourado-areia);
}

.topbar-icon {
  width: 15px;
  height: 15px;
  fill: var(--dourado-areia);
  flex-shrink: 0;
}

/* ==============================================================
   HEADER & NAVBAR
   ============================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .nav-links {
    gap: 1.05rem;
  }
}

@media (min-width: 1200px) {
  .nav-links {
    gap: 1.35rem;
  }
}

@media (min-width: 1400px) {
  .nav-links {
    gap: 1.65rem;
  }
}

.nav-link {
  font-family: var(--font-title);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cinza-grafite);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

@media (min-width: 1200px) {
  .nav-link {
    font-size: 0.92rem;
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--dourado-areia);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--azul-royal);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
}

@media (min-width: 992px) {
  .header-cta {
    display: inline-flex;
    align-items: center;
  }
}

.btn-header-cta {
  padding: 0.65rem 1.25rem !important;
  font-size: 0.875rem !important;
  white-space: nowrap !important;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .btn-header-cta {
    padding: 0.72rem 1.4rem !important;
    font-size: 0.9rem !important;
  }
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--cinza-grafite);
  background: var(--azul-suave);
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: var(--branco);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  padding: clamp(0.75rem, 2vh, 1.25rem) clamp(1rem, 4vw, 1.35rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-sizing: border-box;
}

.mobile-drawer::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.mobile-drawer > div:first-child {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.mobile-drawer.is-open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 44, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(0.25rem, 1vh, 0.5rem);
  border-bottom: 1px solid var(--cinza-borda);
  padding-bottom: clamp(0.4rem, 1.2vh, 0.75rem);
  flex-shrink: 0;
}

.drawer-header .logo-img {
  height: clamp(26px, 4vh, 32px);
  width: auto;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cinza-fundo);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-grafite);
}

.drawer-close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex: 1;
  min-height: 0;
  margin: 0;
  padding: clamp(0.2rem, 1vh, 0.5rem) 0;
  gap: 0;
}

.drawer-nav li {
  display: flex;
  align-items: center;
  flex: 1;
  width: 100%;
  min-height: 0;
}

.drawer-link {
  font-family: var(--font-title);
  font-size: clamp(0.95rem, 2.2vh, 1.05rem);
  font-weight: 500;
  color: var(--cinza-grafite);
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  line-height: 1.2;
  transition: all 0.2s ease;
}

.drawer-link:hover {
  color: var(--azul-royal);
  padding-left: 0.5rem;
}

.drawer-footer {
  margin-top: clamp(0.5rem, 1.5vh, 1rem);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding-top: clamp(0.25rem, 1vh, 0.5rem);
}

.drawer-footer .btn {
  padding: clamp(0.65rem, 1.8vh, 0.85rem) 1.25rem !important;
  font-size: clamp(0.88rem, 2vh, 0.95rem) !important;
  width: 100% !important;
}

/* ==============================================================
   7.1 HERO SECTION
   ============================================================== */
.hero {
  position: relative;
  background-color: #030a1c;
  background-image: url('../hero section/hero-levir-desktop.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 180px 0 200px 0;
  border-bottom: 10px solid var(--azul-profundo);
  overflow: visible;
}

.hero-grid {
  display: block;
}

@media (min-width: 992px) {
  .hero-grid {
    display: flex;
    align-items: center;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-content {
    width: 50%;
    max-width: 50%;
    padding-right: 1.5rem;
  }
}

.hero-content .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-h1 {
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-h1 {
    font-size: 3.25rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #CBD5E1;
  line-height: 1.68;
  margin-bottom: 2rem;
  max-width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .hero-actions {
    flex-wrap: nowrap;
    gap: 0.85rem;
  }

  .hero-actions .btn {
    min-width: auto;
    padding: 0.85rem 1.35rem;
    white-space: nowrap;
    font-size: 0.92rem;
  }
}

.hero-actions .btn-royal {
  background-color: var(--dourado-areia);
  color: #0A1633;
  box-shadow: 0 8px 24px rgba(201, 161, 101, 0.35);
}

.hero-actions .btn-royal:hover {
  background-color: var(--dourado-hover);
  color: #0A1633;
  box-shadow: 0 12px 28px rgba(201, 161, 101, 0.45);
}

.hero-actions .btn-secondary {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.45);
  background-color: rgba(255, 255, 255, 0.05);
}

.hero-actions .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* Card Sobreposto Hero / Seção Seguinte */
.hero-stats-overlap {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 2.5rem auto 0 auto;
  z-index: 15;
}

@media (min-width: 992px) {
  .hero-stats-overlap {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    width: 85%;
    transform: translate(-50%, 50%);
    margin: 0;
  }

  .hero-stats-overlap.reveal {
    opacity: 0;
    transform: translate(-50%, calc(50% + 20px));
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hero-stats-overlap.reveal.is-visible {
    opacity: 1;
    transform: translate(-50%, 50%);
  }
}

.hero-stats-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: 0 16px 45px rgba(8, 20, 44, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.85);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .hero-stats-card {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    padding: 2.25rem 2.5rem;
  }
}

.stat-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--azul-suave);
  color: var(--azul-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.stat-card-item:hover .stat-card-icon {
  background: var(--azul-royal);
  color: var(--branco);
  transform: translateY(-3px);
}

.stat-card-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.stat-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--azul-profundo);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cinza-subtexto);
  margin-top: 0.35rem;
}

.stat-card-divider {
  display: none;
}

@media (min-width: 992px) {
  .stat-card-divider {
    display: block;
    width: 1px;
    height: 54px;
    background-color: var(--cinza-borda);
  }
}

/* Visual Hero */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.doctor-card-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.doctor-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8, 20, 44, 0.16);
  border: 4px solid var(--branco);
  background: linear-gradient(180deg, #EBF1FA 0%, #D6E2F5 100%);
}

.doctor-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.doctor-image-wrapper:hover .doctor-hero-img {
  transform: scale(1.03);
}

.doctor-backdrop-ring {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px dashed var(--dourado-areia);
  opacity: 0.45;
  z-index: -1;
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Floating Authority Badge */
.hero-float-card {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 161, 101, 0.35);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
}

@media (max-width: 640px) {
  .hero-float-card {
    left: 10px;
    bottom: 10px;
    padding: 0.65rem 0.95rem;
  }
}

.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dourado-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado-areia);
  flex-shrink: 0;
}

.float-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.float-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cinza-grafite);
}

.float-desc {
  font-size: 0.78rem;
  color: var(--cinza-subtexto);
}

/* ==============================================================
   7.2 DIFERENCIAIS / AUTORIDADE
   ============================================================== */
#diferenciais {
  padding-top: 10.5rem;
  background-color: var(--branco);
}

@media (max-width: 991px) {
  #diferenciais {
    padding-top: 8rem;
  }
}

@media (max-width: 639px) {
  .hero-stats-overlap {
    width: 92%;
  }
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .diferenciais-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.diferencial-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 24px rgba(8, 20, 44, 0.04);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.diferencial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(8, 20, 44, 0.08);
  border-color: rgba(12, 30, 66, 0.25);
}

.diferencial-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--azul-suave);
  border: 1px solid rgba(12, 30, 66, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--azul-royal);
  transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon-box {
  background-color: var(--azul-royal);
  color: var(--branco);
  transform: scale(1.05);
}

.diferencial-icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.diferencial-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cinza-grafite);
  line-height: 1.35;
}

.diferencial-card p {
  font-size: 0.925rem;
  color: var(--cinza-subtexto);
  line-height: 1.62;
}

/* ==============================================================
   7.3 DUAS FRENTES DE ATUAÇÃO (CARROSSEL SHOWCASE CARDS ESTILO REFERÊNCIA)
   ============================================================== */
.frentes-carousel-wrapper {
  position: relative;
  max-width: 1240px;
  margin: 1.5rem auto 0;
  padding: 0 4.5rem;
}

@media (max-width: 768px) {
  .frentes-carousel-wrapper {
    padding: 0 0.85rem;
  }
}

.frentes-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 0.5rem 0;
}

.frentes-grid-showcase {
  display: flex;
  gap: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  margin-top: 0;
}

/* Card Showcase com duas colunas (Imagem à esquerda + Conteúdo à direita) */
.frente-showcase-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, #0C1E42 0%, #08142C 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(12, 30, 66, 0.25);
  box-shadow: 0 16px 45px rgba(10, 22, 51, 0.12);
}

/* Setas de navegação laterais externas/sobrepostas */
.frentes-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(12, 30, 66, 0.15);
  color: var(--azul-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(12, 30, 66, 0.18);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.frentes-prev {
  left: 0.5rem;
}

.frentes-next {
  right: 0.5rem;
}

.frentes-arrow:hover {
  background: var(--azul-royal);
  color: #FFFFFF;
  border-color: var(--azul-royal);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 28px rgba(12, 30, 66, 0.3);
}

.frentes-arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Indicadores de dots do carrossel */
.frentes-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.frentes-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.frentes-dot.active {
  width: 32px;
  border-radius: var(--radius-pill);
  background: var(--dourado-areia);
}

@media (max-width: 768px) {
  .frentes-carousel-wrapper {
    padding: 0 0.75rem;
  }

  .frentes-arrow {
    width: 44px;
    height: 44px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    box-shadow: 0 6px 20px rgba(12, 30, 66, 0.22);
  }

  /* Metade dentro do card e metade no fundo branco */
  .frentes-prev {
    left: -12px;
  }

  .frentes-next {
    right: -12px;
  }

  .frentes-arrow:hover {
    transform: translateY(-50%) scale(1.08);
  }

  .frentes-dots {
    margin-top: 1.5rem;
  }
}

@media (min-width: 992px) {
  .frente-showcase-card {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 420px;
    max-height: 440px;
  }
}

/* Área de Mídia (Foto de meia largura) */
.frente-showcase-media {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  background-color: #0A1633;
}

.frente-showcase-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .frente-showcase-media {
    height: 100%;
    min-height: 100%;
  }
}

.frente-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Área de Conteúdo do Card */
.frente-showcase-content {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}

@media (min-width: 1200px) {
  .frente-showcase-content {
    padding: 2rem 2.5rem;
  }
}

/* Títulos do Card */
.frente-showcase-titles {
  margin-bottom: 0.85rem;
}

.frente-showcase-main-title {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.frente-showcase-sub {
  font-family: var(--font-title);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dourado-areia);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.frente-title-divider {
  display: none;
}

/* Parágrafos de Copy */
.frente-showcase-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.frente-showcase-desc-secondary {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  margin-bottom: 1.15rem;
}

/* Tags em Pílula (Pills de Atributos) */
.frente-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}

.frente-tag-pill {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #E2E8F0;
  font-size: 0.825rem;
  font-weight: 500;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.25s ease;
}

.frente-showcase-card:hover .frente-tag-pill {
  border-color: rgba(201, 161, 101, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

/* Botão de Ação Estilo Referência com Seta Inclinada */
.frente-showcase-action {
  margin-top: auto;
}

.frente-showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 320px;
}

.frente-showcase-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--dourado-areia);
  transition: transform 0.3s ease, color 0.3s ease;
}

.frente-showcase-btn:hover {
  background: var(--azul-royal);
  border-color: var(--azul-royal);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 30, 66, 0.35);
}

.frente-showcase-btn:hover svg {
  color: #FFFFFF;
  transform: translate(2px, -2px);
}

/* ==============================================================
   7.4 ODONTOLOGIA DO SONO
   ============================================================== */
.sono-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .sono-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.sono-lead {
  font-size: 1.15rem;
  color: var(--cinza-grafite);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  font-size: 0.98rem;
  color: var(--cinza-grafite);
  line-height: 1.55;
}

.benefit-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--azul-suave);
  color: var(--azul-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 2px 6px rgba(12, 30, 66, 0.15);
  transition: all 0.25s ease;
}

.benefit-item:hover .benefit-icon {
  background: var(--azul-royal);
  color: #FFFFFF;
  transform: scale(1.08);
}

.benefit-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.benefit-item span:last-child {
  flex: 1;
}

.sono-cta-wrap {
  margin-top: 0.5rem;
}

/* Sono Visual Side - Foto alinhada à altura exata do container de textos */
.sono-media {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.sono-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10, 22, 51, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
}

.sono-photo-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.sono-photo-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 992px) {
  .sono-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }

  .sono-media {
    height: 100%;
    min-height: 0;
  }

  .sono-photo-wrap {
    height: 100%;
    min-height: 0;
  }

  .sono-photo-wrap picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .sono-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 20%;
  }
}

.sono-photo-wrap:hover .sono-photo-img {
  transform: scale(1.03);
}

/* ==============================================================
   NOVO BLOCO: SINAIS QUE MERECEM ATENÇÃO (Cards com Ícones Centralizados)
   ============================================================== */
.sinais-section-block {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.sinais-header {
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.sinais-title {
  font-size: 2.25rem;
  color: var(--cinza-grafite);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
  text-align: center;
}

@media (min-width: 768px) {
  .sinais-title {
    font-size: 2.75rem;
  }
}

.sinais-subtitle {
  font-size: 1.0625rem;
  color: var(--cinza-subtexto);
  line-height: 1.6;
  text-align: center;
}

/* Grade de Cards de Sintomas — Centralizados com flex-wrap (últimos 3 centralizados perfeitamente) */
.sinais-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
}

/* Card Individual de Sinal — Idêntico à Referência */
.sinal-card {
  position: relative;
  background: #FAF8F5;
  border: 1px solid #EFECE6;
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 1rem;
  width: 100%;
  max-width: 260px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  overflow: hidden;
}

@media (max-width: 599px) {
  .sinal-card {
    max-width: 100%;
  }
}

/* Detalhe superior em tom terroso/dourado na borda superior */
.sinal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  transform: none;
  width: 42px;
  height: 3.5px;
  background: #A67C48;
  border-radius: 0 0 3px 3px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.sinal-card:hover {
  transform: translateY(-3px);
  background: #FFFFFF;
  border-color: rgba(12, 30, 66, 0.25);
  box-shadow: 0 8px 24px rgba(8, 20, 44, 0.07);
}

.sinal-card:hover::before {
  width: 60px;
  background: var(--azul-royal);
}

/* Container quadrado arredondado para o ícone */
.sinal-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #EFE8DE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #8C6527;
  transition: all 0.25s ease;
}

.sinal-card:hover .sinal-card-icon {
  background: var(--azul-suave);
  color: var(--azul-royal);
  transform: scale(1.05);
}

.sinal-card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.sinal-card-name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: #2D3139;
  line-height: 1.35;
  text-align: left;
  transition: color 0.25s ease;
}

.sinal-card:hover .sinal-card-name {
  color: var(--azul-profundo);
}

/* ==============================================================
   7.5 APARELHO ORAL X CPAP/BIPAP & 7.6 COMO FUNCIONA — BLOCO AZUL CONTÍNUO
   ============================================================== */
#cpap-bipap,
#ortodontia {
  background: linear-gradient(180deg, #0A1B3B 0%, #081630 100%);
  padding-bottom: 3.5rem;
  position: relative;
}

#cpap-bipap .section-header .eyebrow,
#ortodontia .section-header .eyebrow {
  background: rgba(12, 30, 66, 0.22);
  color: #B5CEFA;
  border-color: rgba(181, 206, 250, 0.3);
}

#cpap-bipap .section-title,
#ortodontia .section-title {
  color: #FFFFFF;
}

#cpap-bipap .section-subtitle,
#ortodontia .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.orto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .orto-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .orto-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.orto-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.orto-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 161, 101, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.orto-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(12, 30, 66, 0.25);
  border: 1px solid rgba(147, 180, 255, 0.25);
  color: #B5CEFA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  transition: all 0.3s ease;
}

.orto-card:hover .orto-icon {
  background: var(--azul-royal);
  color: #FFFFFF;
  border-color: var(--azul-royal);
  transform: scale(1.08);
}

.orto-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.orto-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
  font-family: var(--font-title);
  font-weight: 600;
}

.orto-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.orto-cta-wrapper {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

/* ==============================================================
   7.6 COMO FUNCIONA (TIMELINE SOBRE O MESMO FUNDO AZUL ELEGANTE)
   ============================================================== */
.steps-scroll-section {
  position: relative;
  background: linear-gradient(180deg, #081630 0%, #061126 100%);
  padding: 70px 0 90px 0;
}

.steps-scroll-section .section-header .eyebrow {
  background: rgba(12, 30, 66, 0.22);
  color: #B5CEFA;
  border-color: rgba(181, 206, 250, 0.3);
}

.steps-scroll-section .section-title {
  color: #FFFFFF;
}

.steps-scroll-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.steps-sticky-wrapper {
  position: relative;
  width: 100%;
}

.steps-timeline-container {
  position: relative;
  margin-top: 4rem;
}

/* --- LINHA CONECTORA NO DESKTOP --- */
@media (min-width: 992px) {
  .timeline-track {
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    z-index: 1;
  }

  .timeline-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1C3B78 0%, var(--dourado-areia) 100%);
    border-radius: 3px;
    transition: width 0.15s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 0 12px rgba(201, 161, 101, 0.5);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
  }
}

/* --- LINHA CONECTORA NO MOBILE --- */
@media (max-width: 991px) {
  .steps-timeline-container {
    padding-left: 3.25rem;
  }

  .timeline-track {
    position: absolute;
    top: 28px;
    bottom: 40px;
    left: 27px;
    width: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    z-index: 1;
  }

  .timeline-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #1C3B78 0%, var(--dourado-areia) 100%);
    border-radius: 3px;
    transition: height 0.15s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 0 12px rgba(201, 161, 101, 0.5);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    position: relative;
    z-index: 2;
  }
}

/* Item individual do Passo a Passo */
.step-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s ease;
  position: relative;
}

@media (min-width: 992px) {
  .step-card {
    text-align: center;
    align-items: center;
    padding: 0 0.5rem;
  }
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.step-number-wrap {
  position: relative;
  z-index: 3;
  margin-bottom: 1.5rem;
}

/* Círculo do número do passo em tema escuro */
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Quando ativo / preenchido pelo scroll */
.step-card.is-active .step-number {
  background: var(--azul-royal);
  color: #FFFFFF;
  border-color: #B5CEFA;
  box-shadow: 0 0 20px rgba(12, 30, 66, 0.65);
  transform: scale(1.08);
}

.step-card h3 {
  font-family: var(--font-title);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: #FFFFFF;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.step-card.is-active h3 {
  color: var(--dourado-areia);
}

.step-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* ==============================================================
   7.7 SOBRE O DR. LEVIR LIMA
   ============================================================== */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .sobre-grid {
    grid-template-columns: 380px 1fr;
    gap: 2.75rem;
    align-items: stretch;
  }
}

@media (min-width: 1200px) {
  .sobre-grid {
    grid-template-columns: 460px 1fr;
    gap: 3.5rem;
  }
}

.sobre-media {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.sobre-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(8, 20, 44, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.85);
  width: 100%;
  height: 100%;
  display: flex;
}

.sobre-image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.sobre-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.sobre-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  max-width: 620px;
}

.sobre-content .eyebrow {
  margin-bottom: 0.85rem;
}

.sobre-content .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}

.sobre-body-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--cinza-subtexto);
  margin-bottom: 1.85rem;
  text-align: left;
}

.sobre-highlights-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-bottom: 2.25rem;
  width: 100%;
}

@media (min-width: 640px) {
  .sobre-highlights-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Design dos Cards de Tópicos Idêntico à Referência */
.sobre-highlight-item {
  position: relative;
  background: #FAF8F5;
  border: 1px solid #EFECE6;
  border-radius: var(--radius-md);
  padding: 1.15rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  overflow: hidden;
}

/* Detalhe superior em tom marrom/dourado suave como na referência */
.sobre-highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  width: 42px;
  height: 3.5px;
  background: #A67C48;
  border-radius: 0 0 3px 3px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.sobre-highlight-item:hover {
  transform: translateY(-3px);
  background: #FFFFFF;
  border-color: rgba(12, 30, 66, 0.25);
  box-shadow: 0 8px 24px rgba(8, 20, 44, 0.07);
}

.sobre-highlight-item:hover::before {
  width: 60px;
  background: var(--azul-royal);
}

/* Container quadrado arredondado para o ícone */
.sobre-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EFE8DE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.sobre-highlight-item:hover .sobre-item-icon {
  background: var(--azul-suave);
  transform: scale(1.05);
}

.sobre-item-icon svg {
  width: 20px;
  height: 20px;
  fill: #8C6527;
  transition: fill 0.25s ease;
}

.sobre-highlight-item:hover .sobre-item-icon svg {
  fill: var(--azul-royal);
}

.sobre-highlight-item span {
  font-family: var(--font-title);
  font-size: 0.925rem;
  font-weight: 600;
  color: #2D3139;
  line-height: 1.35;
  text-align: left;
}

/* ==============================================================
   7.8 CTA INTERMEDIÁRIO
   ============================================================== */
.cta-inter-section {
  position: relative;
  background-color: var(--azul-profundo);
  color: var(--branco);
  text-align: center;
  padding: 6rem 0;
  overflow: hidden;
}

/* Imagem de fundo com transparência nítida e visível */
.cta-inter-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/cta-bg-clinic.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  filter: saturate(1.15) brightness(1.05);
  z-index: 1;
  pointer-events: none;
}

/* Gradiente azul da marca com menor opacidade para a imagem no fundo aparecer perfeitamente */
.cta-inter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 20, 44, 0.72) 0%, rgba(12, 30, 66, 0.65) 100%);
  z-index: 2;
  pointer-events: none;
}

.cta-inter-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.cta-inter-content h2 {
  color: var(--branco);
  font-size: 2.35rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .cta-inter-content h2 {
    font-size: 3rem;
  }
}

.cta-inter-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2.25rem;
}

/* ==============================================================
   7.9 DEPOIMENTOS (CARROSSEL INTERATIVO)
   ============================================================== */
.testimonials-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1.5rem 0.5rem;
  z-index: 5;
}

.testimonials-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding: 0.5rem 0;
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 10px 30px rgba(8, 20, 44, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 360px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(8, 20, 44, 0.1);
  border-color: rgba(12, 30, 66, 0.25);
  z-index: 4;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.875rem);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 1.17rem);
  }
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.star-icon {
  width: 16px;
  height: 16px;
  fill: #FBBC05;
}

.testimonial-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--azul-suave);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(12, 30, 66, 0.12);
}

.google-icon {
  width: 15px;
  height: 15px;
}

.testimonial-google-badge span {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--azul-profundo);
  letter-spacing: 0.02em;
}

.testimonial-quote-box {
  flex-grow: 1;
  max-height: 140px;
  overflow-y: auto;
  padding-left: 1.15rem;
  padding-right: 0.65rem;
  margin-bottom: 1.25rem;
  border-left: 3px solid rgba(12, 30, 66, 0.25);
  scrollbar-gutter: stable;
}

/* Custom scrollbar suave para textos longos */
.testimonial-quote-box::-webkit-scrollbar {
  width: 4px;
}
.testimonial-quote-box::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
}
.testimonial-quote-box::-webkit-scrollbar-thumb {
  background: var(--azul-royal);
  border-radius: 4px;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--cinza-grafite);
  font-style: normal;
  font-weight: 500;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

/* Avatar circular neutro com tom azul sofisticado */
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--azul-suave);
  color: var(--azul-profundo);
  border: 1px solid rgba(12, 30, 66, 0.15);
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--azul-profundo);
}

.author-role {
  font-size: 0.78rem;
  color: var(--cinza-subtexto);
  font-weight: 500;
}

/* Controles do Carrossel */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  color: var(--azul-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.carousel-arrow:hover {
  background: var(--azul-royal);
  color: var(--branco);
  border-color: var(--azul-royal);
  transform: translateY(-2px);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  transition: var(--transition);
  cursor: pointer;
}

.carousel-dot.active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--dourado-areia);
}

/* ==============================================================
   7.12 FAQ (LAYOUT SPLIT EM 2 COLUNAS & ACORDEÃO INTERATIVO)
   ============================================================== */
#faq {
  background-color: var(--cinza-fundo);
}

#depoimentos,
#sobre,
#contato {
  background-color: var(--branco);
}

.faq-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .faq-split-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
  }
}

.faq-left-col {
  position: sticky;
  top: 120px;
}

.faq-title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--cinza-grafite);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 2.75rem;
  }
}

.faq-accent-line {
  display: none;
}

.faq-desc {
  font-size: 1.05rem;
  color: var(--cinza-subtexto);
  line-height: 1.68;
  margin-bottom: 2.25rem;
  max-width: 460px;
}

.faq-action .btn {
  padding: 0.95rem 2rem;
  box-shadow: 0 10px 24px rgba(12, 30, 66, 0.28);
}

.faq-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--branco);
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 16px rgba(8, 20, 44, 0.03);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(12, 30, 66, 0.3);
  box-shadow: 0 8px 24px rgba(8, 20, 44, 0.06);
}

.faq-trigger {
  width: 100%;
  padding: 1.35rem 1.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  background: none;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cinza-grafite);
  cursor: pointer;
  border: none;
  transition: color 0.2s ease;
}

.faq-question-text {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.faq-num {
  color: var(--azul-royal);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-trigger:hover {
  color: var(--azul-royal);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--azul-royal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-active {
  border-color: rgba(12, 30, 66, 0.35);
  box-shadow: 0 10px 28px rgba(12, 30, 66, 0.08);
}

.faq-item.is-active .faq-chevron {
  transform: rotate(180deg);
  color: var(--dourado-areia);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.65rem;
}

.faq-item.is-active .faq-content {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-content p {
  font-size: 0.95rem;
  color: var(--cinza-subtexto);
  line-height: 1.68;
}

/* ==============================================================
   7.11 LOCALIZAÇÃO E CONTATO
   ============================================================== */
.contato-grid-reference {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .contato-grid-reference {
    grid-template-columns: 1.15fr 1.85fr;
    gap: 2rem;
  }
}

/* Card Esquerdo com Foto, Overlay e Título */
.contato-feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.contato-feature-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contato-feature-card:hover .contato-feature-img {
  transform: scale(1.04);
}

.contato-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 2.25rem 2rem;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 51, 0) 0%,
    rgba(10, 22, 51, 0.04) 25%,
    rgba(10, 22, 51, 0.22) 45%,
    rgba(10, 22, 51, 0.55) 65%,
    rgba(10, 22, 51, 0.85) 85%,
    rgba(10, 22, 51, 0.94) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.25rem;
  box-sizing: border-box;
}

.contato-feature-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--azul-royal);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(12, 30, 66, 0.4);
}

.contato-feature-badge svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contato-feature-title {
  color: var(--branco);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.01em;
  margin: 0;
}

@media (min-width: 768px) {
  .contato-feature-title {
    font-size: 1.5rem;
  }
}

/* Grid 2x2 da Direita */
.contato-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .contato-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contato-card-item {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 6px 20px rgba(10, 22, 51, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contato-card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 30, 66, 0.09);
  border-color: rgba(12, 30, 66, 0.25);
}

.contato-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--azul-suave);
  color: var(--azul-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contato-card-item:hover .contato-icon {
  background: var(--azul-royal);
  color: var(--branco);
}

.contato-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contato-card-info {
  flex: 1;
}

.contato-card-item h4 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--cinza-grafite);
}

.contato-card-item p,
.contato-card-item a {
  font-size: 0.9rem;
  color: var(--cinza-subtexto);
  line-height: 1.55;
  margin: 0;
}

.contato-card-item a {
  transition: color 0.2s ease;
  font-weight: 500;
}

.contato-card-item a:hover {
  color: var(--azul-royal);
}

/* Botão Centralizado Abaixo do Grid */
.contato-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.btn-contato-cta {
  padding: 1rem 3rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 25px rgba(12, 30, 66, 0.3);
}

/* Mapa em Largura Total acima do Rodapé */
.map-fullwidth-section {
  width: 100%;
  height: 350px;
  line-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.map-fullwidth-section iframe {
  width: 100%;
  height: 350px;
  display: block;
  border: 0;
}

/* ==============================================================
   7.12 RODAPÉ
   ============================================================== */
.footer {
  background-color: #0A1633;
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-slogan {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-link:hover {
  color: var(--dourado-areia);
  padding-left: 0.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  transition: color 0.2s ease;
}

.footer-contact-icon {
  width: 17px;
  height: 17px;
  fill: var(--dourado-areia);
  flex-shrink: 0;
  margin-top: 3px;
  transition: transform 0.2s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  fill: var(--dourado-areia);
  transform: none;
}

.footer-contact-item .footer-link {
  transition: color 0.2s ease;
}

.footer-contact-item:hover .footer-link {
  color: var(--dourado-areia);
  padding-left: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  text-align: center;
  margin: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

.agency-credit a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.agency-credit a:hover {
  color: var(--dourado-areia);
}

/* Assinatura do desenvolvedor (Locmídia) */
.footer-dev-signature {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 0.75rem 0;
  text-align: center;
}

.footer-dev-signature a {
  display: inline-block;
  opacity: 0.8;
  transition: opacity 0.25s ease;
}

.footer-dev-signature a:hover {
  opacity: 1;
}

.footer-dev-signature img {
  height: 22px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .footer-dev-signature img {
    height: 18px;
  }
}

/* ==============================================================
   8. BOTÃO FLUTUANTE DE WHATSAPP
   ============================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  position: relative;
}

.whatsapp-float-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6);
  color: var(--branco);
}

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulseWa 2.2s infinite;
  opacity: 0.7;
}

@keyframes pulseWa {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

.whatsapp-tooltip {
  background: var(--branco);
  color: var(--cinza-grafite);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cinza-borda);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==============================================================
   ANIMAÇÕES DE REVEAL AO SCROLL
   ============================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==============================================================
   9. REFINAMENTOS EXCLUSIVOS MOBILE (MAX-WIDTH: 767px & 991px)
   ============================================================== */

@media (max-width: 991px) {
  /* FAQ: desativa position sticky no título para não sobrepor os cards no scroll */
  .faq-left-col {
    position: static !important;
    top: auto !important;
    margin-bottom: 2rem;
  }

  /* Cards de Áreas de Atuação: imagem sempre em cima, texto embaixo */
  .frente-showcase-card,
  .frente-showcase-card.frente-showcase-reverse {
    display: flex !important;
    flex-direction: column !important;
  }

  .frente-showcase-card .frente-showcase-media,
  .frente-showcase-card.frente-showcase-reverse .frente-showcase-media {
    order: 1 !important;
    width: 100% !important;
    min-height: 260px !important;
    height: 260px !important;
  }

  .frente-showcase-card .frente-showcase-content,
  .frente-showcase-card.frente-showcase-reverse .frente-showcase-content {
    order: 2 !important;
    width: 100% !important;
    padding: 2.25rem 1.5rem !important;
  }

  /* Seção Sobre: imagem proporcional em cima */
  .sobre-media {
    height: 380px !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  /* Faixa superior (Topbar): apenas Instagram à esquerda e WhatsApp à direita */
  .topbar-container {
    justify-content: space-between !important;
    padding: 0 1rem !important;
  }

  .topbar-location {
    display: none !important;
  }

  .topbar-right {
    gap: 0 !important;
  }

  .topbar-item {
    font-size: 0.75rem !important;
  }

  /* Sobretítulos (eyebrows): sem quebra de linha em nenhuma tela */
  .eyebrow {
    white-space: nowrap !important;
    max-width: 100% !important;
    font-size: 0.72rem !important;
    padding: 0.3rem 0.75rem !important;
    letter-spacing: 0.08em !important;
  }

  /* Botões de CTA no mobile: largura total da seção e sem quebra de linha */
  .btn:not(.btn-header-cta):not(.whatsapp-float-btn),
  .frente-showcase-btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.92rem !important;
  }

  .btn span,
  .frente-showcase-btn span {
    white-space: nowrap !important;
  }

  .btn svg,
  .frente-showcase-btn svg {
    margin-left: 0.5rem !important;
    flex-shrink: 0 !important;
  }

  .sono-cta-wrap,
  .orto-cta-wrapper,
  .frente-showcase-action,
  .faq-action {
    width: 100% !important;
  }

  /* Hero Section no Mobile: elementos centralizados e alinhados ao centro */
  .hero {
    background-color: #030a1c !important;
    background-image: url('../hero section/hero-levir-mobile.webp') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    padding: 250px 0 310px 0 !important;
  }

  .hero-grid {
    gap: 1rem !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .hero-content .eyebrow {
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
    font-size: 0.65rem !important;
    padding: 0.25rem 0.65rem !important;
    margin-bottom: 0.6rem !important;
  }

  .hero-h1 {
    text-align: center !important;
    font-size: 1.65rem !important;
    line-height: 1.15 !important;
    margin-bottom: 0.6rem !important;
  }

  .hero-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1.15rem !important;
    max-width: 92% !important;
  }

  .hero-actions {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.65rem !important;
    margin-bottom: 1rem !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    padding: 0.7rem 1.15rem !important;
    font-size: 0.86rem !important;
  }

  /* Stats overlap no mobile: 95% de largura, centralizado e sobreposto 50/50 entre hero e por que tratar */
  .hero-stats-overlap {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 0 !important;
    width: 95% !important;
    max-width: 95% !important;
    transform: translate(-50%, 50%) !important;
    margin: 0 auto !important;
    z-index: 15 !important;
  }

  .hero-stats-overlap.reveal {
    opacity: 0;
    transform: translate(-50%, calc(50% + 20px)) !important;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hero-stats-overlap.reveal.is-visible {
    opacity: 1;
    transform: translate(-50%, 50%) !important;
  }

  .hero-stats-card {
    padding: 1.25rem 1.5rem !important;
    gap: 1.25rem !important;
  }

  .stat-card-item {
    gap: 0.5rem !important;
  }

  .stat-number {
    font-size: 1.65rem !important;
  }

  .stat-card-icon {
    width: 44px !important;
    height: 44px !important;
  }

  #diferenciais {
    padding-top: 290px !important;
  }

  /* Ajuste no rodapé: centralizar apenas a logo e o texto do slogan abaixo dela */
  .footer-brand {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-logo {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-slogan {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 320px !important;
  }

  /* Seção de Ronco / Sono no Mobile */
  #sono {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  #sono .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .sono-grid {
    gap: 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .sono-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .sono-content .section-title,
  .sono-lead {
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .benefits-list {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 0 1.5rem 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
  }

  .benefit-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .benefit-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
  }

  .benefit-icon svg {
    width: 13px !important;
    height: 13px !important;
  }

  .benefit-item span:last-child {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .sono-cta-wrap {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0.5rem auto 0 auto !important;
  }

  .sono-cta-wrap .btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    white-space: normal !important;
  }

  .sono-media {
    width: 100% !important;
    max-width: 100% !important;
    height: 380px !important;
    min-height: 380px !important;
    box-sizing: border-box !important;
    margin-top: 1.5rem !important;
  }

  .sono-photo-wrap {
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .sono-photo-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .sinais-section-block {
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .sinais-cards-grid {
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 0.85rem !important;
  }

  .sinal-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ==============================================================
   AJUSTE EXCLUSIVO 1024px: Cabeçalho e Hero
   ============================================================== */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Cabeçalho: espaçamentos otimizados, logo e botão mais compactos */
  .header-container {
    max-width: 100% !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    gap: 0.5rem !important;
  }

  .logo-link {
    margin-right: 0.5rem !important;
    flex-shrink: 0 !important;
  }

  .logo-img {
    height: 26px !important;
  }

  .nav-desktop {
    flex: 1 !important;
    justify-content: center !important;
  }

  .nav-links {
    gap: 0.45rem !important;
    justify-content: center !important;
  }

  .nav-link {
    font-size: 0.75rem !important;
    padding: 0.2rem 0.1rem !important;
    letter-spacing: -0.01em !important;
  }

  .header-cta {
    margin-left: 0.5rem !important;
    flex-shrink: 0 !important;
  }

  .btn-header-cta {
    padding: 0.45rem 0.8rem !important;
    font-size: 0.75rem !important;
    border-radius: var(--radius-pill) !important;
    white-space: nowrap !important;
  }

  /* Botões de CTA da Hero lado a lado */
  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.85rem !important;
    width: auto !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-actions .btn {
    width: auto !important;
    max-width: none !important;
    min-width: auto !important;
    flex: 0 1 auto !important;
    padding: 0.8rem 1.15rem !important;
    font-size: 0.88rem !important;
    white-space: nowrap !important;
  }

  .hero {
    background-color: #030a1c !important;
    background-image: url('../hero section/hero-levir-desktop.webp') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}


/* ==============================================================
   CORREÇÃO MOBILE EXTRA-PEQUENO (≤390px)
   Seção Ronco/Sono: impede overflow lateral causado pelo eyebrow nowrap
   ============================================================== */
@media (max-width: 390px) {

  /* RAIZ: sela o overflow na própria seção */
  #sono {
    overflow: hidden !important;
    max-width: 100vw !important;
  }

  /* Container interno com padding apertado */
  #sono .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  /* section-header recorta o eyebrow se ele exceder */
  #sono .section-header,
  .sono-content .section-header {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* CAUSA RAIZ: eyebrow com white-space:nowrap quebra o layout.
     Muda para block com ellipsis, ou permite quebra de linha. */
  #sono .eyebrow,
  .sono-content .eyebrow {
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.06em !important;
    padding: 0.3rem 0.7rem !important;
    box-sizing: border-box !important;
  }

  /* Itens de benefício */
  .benefits-list {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .benefit-item {
    width: 100% !important;
    max-width: 100% !important;
    gap: 0.6rem !important;
    font-size: 0.88rem !important;
    overflow: hidden !important;
  }

  .benefit-item span:last-child {
    min-width: 0 !important;
    flex: 1 1 0% !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  /* Botão CTA */
  .sono-cta-wrap,
  .sono-cta-wrap .btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}
