/* ============================================================
   SUPREMA ODONTOLOGIA — Identidade derivada do logotipo
   Paleta: sálvia · cinza-azulado · ardósia · off-white · preto arroxeado
   Fontes: Montserrat (peso 400) + Instrument Serif
   Cantos retos · sem bordas cinzas · CTAs verde WhatsApp
   ============================================================ */




:root {
  /* Marca */
  --sage:         #AEBDAA;
  --sage-escura:  #7C8F77;
  --azul-cinza:   #ADC1CC;
  --ardosia:      #6E7B82;
  --ardosia-esc:  #515D65;
  --preto:        #221E27;   /* preto arroxeado institucional */
  --preto-puro:   #17141A;

  /* Superfícies */
  --off-white:    #F4F3EF;
  --off-white-2:  #ECEBE4;
  --sage-tint:    #E8EEE9;
  --azul-tint:    #E7EDF0;
  --branco:       #FFFFFF;

  /* Texto */
  --texto-escuro: #221E27;
  --texto-suave:  #5B585F;
  --texto-claro:  rgba(244, 243, 239, 0.80);

  /* CTA — verde WhatsApp (obrigatório) */
  --cta:          #25D366;
  --cta-hover:    #20BD5A;

  /* Acentos / linhas */
  --acento:       #515D65;   /* ardósia escura — eyebrows, itálico */
  --linha-dark:   rgba(174, 189, 170, 0.16);

  /* Fontes */
  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'Montserrat', sans-serif;

  /* Efeitos */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-suave: all 0.5s var(--ease);
  --t-rapida: all 0.28s ease;
  --sombra-suave: 0 14px 34px rgba(34, 30, 39, 0.07);
  --sombra-media: 0 26px 56px rgba(34, 30, 39, 0.13);
  --sombra-forte: 0 30px 70px rgba(0, 0, 0, 0.5);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans); font-weight: 400;
  background-color: var(--off-white); color: var(--texto-escuro);
  line-height: 1.75; font-size: 1rem;
}
img { display: block; max-width: 100%; }
::selection { background: var(--sage); color: var(--preto); }
:focus-visible { outline: 2px solid var(--ardosia); outline-offset: 3px; }

/* ---------- Cantos retos em tudo ---------- */
img, .btn, input, button,
.category-col, .help-card, .help-illustration, .treatment-banner,
.why-card, .gallery-item, .specialist-img-container, .result-card,
.result-img-wrapper, .testimonial-box,
.ba-card, .ba-split-img, .specialty-card, .hero-badge { border-radius: 0; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4, h5, h6 { font-weight: 400; line-height: 1.12; color: var(--texto-escuro); }
p { color: var(--texto-suave); font-weight: 400; }
a { text-decoration: none; color: inherit; font-weight: 400; transition: var(--t-rapida); }
strong, b { font-weight: 400; color: var(--texto-escuro); }

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--acento); letter-spacing: 0.01em; }

/* ---------- Eyebrows (sem caixa/borda) ---------- */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--acento); margin-bottom: 1.5rem;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background-color: var(--ardosia); }

/* ---------- Títulos ---------- */
.section-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.08;
  letter-spacing: 0.005em; margin-bottom: 1.7rem; max-width: 30ch;
}
@media (min-width: 1024px) {
  .section-title { max-width: 40ch; }
}

/* ---------- Ícones (Lucide + Phosphor) ---------- */
[data-lucide] { stroke-width: 1.6; }
.ph { display: inline-block; }

/* ---------- Botões / CTAs (verde WhatsApp) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  padding: 1.05rem 2.2rem; font-family: var(--sans); font-size: 0.74rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.15em; border: none; cursor: pointer;
  transition: var(--t-suave); white-space: nowrap; color: #fff; background: var(--cta);
}
.btn .wa-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn svg:not(.wa-icon) { width: 17px; height: 17px; }

.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32); }

/* Botão secundário/outline: sólido escuro, sem aspecto de "caixa cinza" */
.btn-outline, .btn-secondary {
  background: transparent; color: var(--texto-escuro);
  box-shadow: inset 0 0 0 1px var(--ardosia);
}
.btn-outline:hover, .btn-secondary:hover { background: var(--preto); color: var(--off-white); box-shadow: inset 0 0 0 1px var(--preto); transform: translateY(-3px); }
.hero .btn-outline { box-shadow: inset 0 0 0 1px var(--ardosia); color: var(--texto-escuro); }
.sobre-escuro .btn-outline, .final-cta .btn-outline { color: var(--off-white); box-shadow: inset 0 0 0 1px var(--linha-dark); }
.sobre-escuro .btn-outline:hover, .final-cta .btn-outline:hover { background: var(--off-white); color: var(--preto); box-shadow: inset 0 0 0 1px var(--off-white); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-item { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible .stagger-item { opacity: 1; transform: translateY(0); }
.reveal.visible .stagger-item:nth-child(1) { transition-delay: 0.08s; }
.reveal.visible .stagger-item:nth-child(2) { transition-delay: 0.16s; }
.reveal.visible .stagger-item:nth-child(3) { transition-delay: 0.24s; }
.reveal.visible .stagger-item:nth-child(4) { transition-delay: 0.32s; }
.reveal.visible .stagger-item:nth-child(5) { transition-delay: 0.40s; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3.2rem); }
section { padding: clamp(5rem, 10vw, 9rem) 0; }

.sobre-escuro { background-color: var(--preto); color: var(--off-white); }
.sobre-escuro .section-title, .sobre-escuro h3, .sobre-escuro h4 { color: var(--off-white); }
.sobre-escuro p { color: var(--texto-claro); }
.sobre-escuro .section-tag { color: var(--sage); }
.sobre-escuro .section-tag::before { background-color: var(--sage); }
.sobre-escuro .serif-italic { color: var(--sage); }

/* ============================================================
   HEADER — logotipo em protagonismo
   ============================================================ */
header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: transparent; transition: var(--t-suave); }
header.scrolled { background: rgba(244, 243, 239, 0.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(34,30,39,0.06); }
header .container { display: flex; align-items: center; justify-content: space-between; height: 104px; transition: var(--t-suave); }
header.scrolled .container { height: 80px; }

.logo img { height: 68px; width: auto; transition: var(--t-suave); }
header.scrolled .logo img { height: 54px; }

.header-right { display: flex; align-items: center; gap: 2.4rem; }
.nav-menu { display: none; }
@media (min-width: 1024px) {
  .nav-menu { display: flex; align-items: center; gap: 2.1rem; }
  .nav-link { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--texto-escuro); position: relative; padding: 0.4rem 0; }
  .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background-color: var(--sage-escura); transition: var(--t-suave); }
  .nav-link:hover::after { width: 100%; }

  /* Logo 50% maior no topo, antes da rolagem */
  header .container { height: 130px; }
  .logo img { height: 102px; }
}

.nav-actions { display: flex; align-items: center; gap: 1.4rem; }

.mobile-nav-toggle { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; width: 26px; height: 16px; z-index: 1100; }
@media (min-width: 1024px) { .mobile-nav-toggle { display: none; } }
.mobile-nav-toggle span { display: block; width: 100%; height: 1.5px; background-color: var(--texto-escuro); transition: var(--t-suave); }
.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--off-white); z-index: 1050; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.7rem; transition: var(--t-suave); padding: 2rem; }
.mobile-menu.active { right: 0; }
.mobile-menu a { font-family: var(--serif); font-size: 2.1rem; color: var(--texto-escuro); }
.mobile-menu a:hover { color: var(--sage-escura); }
.mobile-menu .btn { font-family: var(--sans); margin-top: 1rem; }

/* ============================================================
   HERO — foto de fundo + degradê claro à esquerda
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 130px 0 5rem;
  background-image:
    linear-gradient(90deg,
      var(--off-white) 0%, var(--off-white) 36%,
      rgba(244,243,239,0.92) 48%, rgba(244,243,239,0.55) 64%,
      rgba(244,243,239,0.12) 82%, rgba(244,243,239,0) 100%),
    url('assets/img/robertoetathye.webp');
  background-repeat: no-repeat, no-repeat;
  background-position: left center, calc(100% + 280px) center; /* grupo deslocado à direita */
  background-size: cover, cover;
}
.hero-content { position: relative; z-index: 2; max-width: 620px; display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--acento); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 1.8rem; padding: 0;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--sage-escura); }

.hero-title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.06; color: var(--texto-escuro); margin-bottom: 3rem; max-width: 24ch; }
@media (min-width: 1440px) { .hero-title { max-width: 26ch; } }
.hero-description { color: var(--texto-suave); font-size: 1.08rem; margin-bottom: 2.4rem; max-width: 50ch; }

.hero-features { list-style: none; margin-bottom: 2.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.8rem; }
.hero-features li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--texto-escuro); }
.hero-features li svg { width: 20px; height: 20px; color: var(--sage-escura); flex-shrink: 0; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 1023px) {
  .hero {
    background-image:
      linear-gradient(180deg, var(--off-white) 0%, rgba(244,243,239,0.92) 46%, rgba(244,243,239,0.4) 100%),
      url('assets/img/robertoetathye.webp');
    background-position: top center, center center;
  }
  .hero-content { max-width: 100%; }
  .hero-features { max-width: 480px; }
}

/* ============================================================
   ESPECIALIDADES — 3 colunas × 2 linhas, cards largos, sem bordas
   ============================================================ */
.treatments-general { background-color: var(--off-white); }
.treatments-general .intro { max-width: 780px; margin-bottom: 3.5rem; }
.treatments-general .serif-italic { color: var(--acento); }

.categories-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-bottom: 3.5rem; }
@media (min-width: 600px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .categories-grid { grid-template-columns: repeat(6, 1fr); }
  .category-col { grid-column: span 2; }                 /* linha 1: 3 cards */
  .category-col:nth-child(4), .category-col:nth-child(5) { grid-column: span 3; } /* linha 2: 2 cards largos */
}

.category-col { background-color: var(--branco); padding: 2.6rem 2.2rem; display: flex; flex-direction: column; gap: 1.1rem; box-shadow: var(--sombra-suave); transition: var(--t-suave); }
.category-col:nth-child(2) { background-color: var(--sage-tint); }
.category-col:nth-child(4) { background-color: var(--azul-tint); }
.category-col:hover { transform: translateY(-8px); box-shadow: var(--sombra-media); }
.category-icon { font-size: 2.2rem; color: var(--sage-escura); transition: var(--t-suave); }
.category-col h3 { font-family: var(--sans); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--texto-escuro); }
.category-desc { font-size: 0.9rem; line-height: 1.6; }
.category-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: auto; padding-top: 0.4rem; }
.category-list li { font-size: 0.86rem; color: var(--texto-escuro); display: flex; align-items: flex-start; gap: 0.55rem; line-height: 1.5; }
.category-list li::before { content: ''; width: 6px; height: 6px; background-color: var(--sage-escura); margin-top: 0.5rem; flex-shrink: 0; }
.treatments-general-cta { display: flex; justify-content: center; }

/* ============================================================
   COMO PODEMOS AJUDAR — galeria premium de ilustrações
   ============================================================ */
.treatments { background-color: var(--off-white-2); }
.treatments-header { margin-bottom: 3.5rem; }
.treatments-header .serif-italic { color: var(--acento); }

.help-gallery { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
@media (min-width: 700px) { .help-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) {
  .help-gallery { grid-template-columns: repeat(6, 1fr); }
  .help-card { grid-column: span 2; }                    /* linha 1: 3 */
}

.help-card { background-color: var(--branco); display: flex; flex-direction: column; box-shadow: var(--sombra-suave); transition: var(--t-suave); overflow: hidden; }
.help-card:hover { transform: translateY(-8px); box-shadow: var(--sombra-media); }
.help-illustration { aspect-ratio: 16 / 11; width: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, var(--sage-tint), var(--off-white)); overflow: hidden; }
.help-card:nth-child(2) .help-illustration { background: linear-gradient(150deg, var(--azul-tint), var(--off-white)); }
.help-card:nth-child(3) .help-illustration { background: linear-gradient(150deg, var(--off-white-2), var(--sage-tint)); }
.help-card:nth-child(4) .help-illustration { background: linear-gradient(150deg, var(--azul-tint), var(--off-white)); }
.help-card:nth-child(5) .help-illustration { background: linear-gradient(150deg, var(--sage-tint), var(--azul-tint)); }
.help-card:nth-child(6) .help-illustration { background: linear-gradient(150deg, var(--off-white-2), var(--sage-tint)); }
.help-illustration svg { width: 56%; height: 56%; transition: transform 0.6s var(--ease); }
.help-card:hover .help-illustration svg { transform: scale(1.06); }
.help-body { padding: 2.2rem 2.2rem 2.4rem; display: flex; flex-direction: column; flex-grow: 1; }
.help-body h3 { font-family: var(--serif); font-size: 1.7rem; line-height: 1.12; margin-bottom: 0.8rem; }
.help-body p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.6rem; }
.help-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--acento); margin-top: auto; }
.help-cta svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.help-card:hover .help-cta svg { transform: translateX(4px); }

/* Banner escuro */
.treatment-banner { margin-top: 4rem; background-color: var(--preto); color: var(--off-white); padding: clamp(2.5rem, 5vw, 4.5rem); display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .treatment-banner { grid-template-columns: 1.5fr 1fr; } }
.treatment-banner-content h3 { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--off-white); margin-bottom: 1rem; }
.treatment-banner-content p { color: var(--texto-claro); max-width: 60ch; }
.treatment-banner-actions { display: flex; }
@media (min-width: 1024px) { .treatment-banner-actions { justify-content: flex-end; } }

/* ============================================================
   POR QUE ESCOLHER — faixa escura
   ============================================================ */
.why-choose { background-color: var(--preto); color: var(--off-white); }
.why-choose .section-title { color: var(--off-white); margin-bottom: 3.5rem; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card { display: flex; flex-direction: column; gap: 1rem; padding: 2.4rem 2rem; background-color: rgba(255,255,255,0.03); transition: var(--t-suave); }
.why-card:hover { transform: translateY(-8px); background-color: rgba(255,255,255,0.06); box-shadow: var(--sombra-media); }
.why-number { font-family: var(--serif); font-size: 2.4rem; color: var(--sage); line-height: 1; }
.why-card h3 { font-size: 1.02rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--off-white); }
.why-card p { color: var(--texto-claro); font-size: 0.88rem; }

/* ============================================================
   GALERIA (estrutura) — cantos retos
   ============================================================ */
.gallery { background-color: var(--off-white); }
.gallery .intro { text-align: center; max-width: 740px; margin: 0 auto 3.5rem; }
.gallery .section-tag { justify-content: center; }
.gallery .section-title { margin-left: auto; margin-right: auto; }
.gallery .serif-italic { color: var(--acento); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; gap: 1.2rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; } }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; background-color: var(--off-white-2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--t-suave); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(34,30,39,0.7) 0%, rgba(34,30,39,0) 55%); opacity: 0; display: flex; align-items: flex-end; padding: 1.6rem; transition: var(--t-rapida); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--off-white); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; }
.gallery-grid .col-2 { grid-column: span 2; }
.gallery-grid .row-2 { grid-row: span 2; }
@media (max-width: 767px) { .gallery-grid .row-2 { grid-row: span 1; } }

/* ============================================================
   ESPECIALISTAS — retângulos, sem arredondamento
   ============================================================ */
.specialists { background-color: var(--branco); padding-bottom: 0; }
.specialists-title-area { margin-bottom: 3.5rem; }
.specialists-title-area .serif-italic { color: var(--acento); }
.specialist-card { background-color: var(--branco); overflow: visible; }
.specialist-card:nth-of-type(even) { background-color: var(--off-white); }
.specialist-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.specialist-img-col { position: relative; align-self: stretch; }
.specialist-img-container { width: 100%; height: 500px; overflow: hidden; background-color: var(--off-white-2); }
.specialist-img-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
.specialist-info { display: flex; flex-direction: column; justify-content: center; padding: 2rem 0 4rem; }
.specialist-cro { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--acento); margin-bottom: 1rem; }
.specialist-name { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.04; margin-bottom: 1.3rem; }
.specialist-bio { font-size: 0.95rem; line-height: 1.8; max-width: 56ch; margin-bottom: 2.4rem; }
.specialist-services h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--acento); margin-bottom: 1.6rem; }
.specialty-cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: 3rem; }
@media (min-width: 560px) { .specialty-cards-grid { grid-template-columns: repeat(2, 1fr); } }
.specialty-card { background-color: var(--off-white); padding: 1.8rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; height: 100%; transition: var(--t-suave); }
.specialist-card:nth-of-type(even) .specialty-card { background-color: var(--branco); }
.specialty-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-suave); }
.specialty-card-icon { font-size: 1.9rem; color: var(--sage-escura); align-self: flex-start; transition: var(--t-suave); }
.specialty-card:hover .specialty-card-icon { color: var(--ardosia-esc); }
.specialty-card h5 { font-size: 1.05rem; color: var(--texto-escuro); }
.specialty-card p { font-size: 0.84rem; line-height: 1.55; }
@media (min-width: 1024px) {
  /* O grid estica a coluna da foto até a altura definida pelo conteúdo de texto */
  .specialist-grid { grid-template-columns: 0.85fr 1.15fr; gap: 0; align-items: stretch; }
  .specialist-card:nth-of-type(even) .specialist-grid { grid-template-columns: 1.15fr 0.85fr; }
  .specialist-card:nth-of-type(even) .specialist-img-col { order: 2; }
  .specialist-info { padding: 5rem 4.5rem; }

  /* A coluna da foto estica para acompanhar a altura da coluna de texto.
     O container da imagem é absolutamente posicionado dentro da coluna,
     evitando qualquer dependência circular de altura. */
  .specialist-img-col {
    position: relative;
    align-self: stretch;
    min-height: 0;
  }
  .specialist-img-container {
    position: absolute;
    inset: 0;            /* top:0 right:0 bottom:0 left:0 */
    height: auto;
    min-height: 0;
  }
  .specialist-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}


@media (min-width: 1240px) { .specialist-info { padding: 6rem clamp(1rem, 3vw, 3rem); } }

/* ============================================================
   RESULTADOS (momentos clínicos)
   ============================================================ */
.results { background-color: var(--off-white-2); overflow: hidden; }
.results .intro { text-align: center; max-width: 740px; margin: 0 auto 3.5rem; }
.results .section-tag { justify-content: center; }
.results .section-title { margin-left: auto; margin-right: auto; }
.results .serif-italic { color: var(--acento); }
.results-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
@media (min-width: 768px) { .results-grid { grid-template-columns: repeat(3, 1fr); } }
.result-card { background-color: var(--branco); overflow: hidden; box-shadow: var(--sombra-suave); transition: var(--t-suave); display: flex; flex-direction: column; height: 100%; }
.result-card:hover { transform: translateY(-8px); box-shadow: var(--sombra-media); }
.result-img-wrapper { overflow: hidden; aspect-ratio: 4 / 3; }
.result-img { width: 100%; height: 100%; object-fit: cover; transition: var(--t-suave); }
.result-card:hover .result-img { transform: scale(1.05); }
.result-info { padding: 2rem; flex-grow: 1; }
.result-info h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 0.6rem; }
.result-info p { font-size: 0.86rem; line-height: 1.65; }

/* ============================================================
   DEPOIMENTOS (carrossel — larguras alinhadas ao JS)
   ============================================================ */
.testimonials { background-color: var(--branco); overflow: hidden; }
.testimonials .serif-italic { color: var(--acento); }
.testimonials-slider-container { margin-top: 3.5rem; position: relative; }
.testimonials-track-wrapper { overflow: hidden; width: 100%; }
.testimonials-track { display: flex; transition: transform 0.7s var(--ease); will-change: transform; }
.testimonial-slide { min-width: 100%; padding: 0 0.6rem; }
@media (min-width: 768px) { .testimonial-slide { min-width: 50%; padding: 0 0.8rem; } }
@media (min-width: 1024px) { .testimonial-slide { min-width: 33.333%; padding: 0 0.9rem; } }
.testimonial-box { background-color: var(--off-white); padding: 3rem 2.4rem 2.4rem; height: 100%; min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; position: relative; transition: var(--t-suave); }
.testimonial-box:hover { transform: translateY(-5px); box-shadow: var(--sombra-suave); }
.testimonial-box::before { content: '\201C'; position: absolute; top: 8px; left: 22px; font-family: var(--serif); font-size: 5rem; line-height: 1; color: var(--sage); opacity: 0.4; }
.testimonial-quote { font-size: 0.95rem; line-height: 1.8; color: var(--texto-suave); margin-bottom: 1.8rem; position: relative; z-index: 2; }
.testimonial-author { font-family: var(--serif); font-size: 1.3rem; color: var(--texto-escuro); margin-top: auto; display: flex; align-items: center; gap: 0.8rem; }
.testimonial-author::before { content: ''; width: 22px; height: 1px; background-color: var(--sage-escura); }
.slider-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 3rem; }
.slider-dots { display: flex; gap: 0.6rem; }
.slider-dot { width: 9px; height: 9px; background-color: rgba(34,30,39,0.16); border: none; cursor: pointer; transition: var(--t-rapida); }
.slider-dot.active { background-color: var(--sage-escura); transform: scale(1.3); }
.slider-arrows { display: flex; gap: 0.8rem; }
.slider-arrow { width: 50px; height: 50px; background-color: transparent; box-shadow: inset 0 0 0 1px var(--ardosia); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--texto-escuro); transition: var(--t-rapida); }
.slider-arrow:hover { background-color: var(--preto); color: var(--off-white); box-shadow: inset 0 0 0 1px var(--preto); }

/* ============================================================
   RESULTADOS REAIS — galeria antes/depois (marquee infinito)
   ============================================================ */
.before-after { background-color: var(--off-white); overflow: hidden; }
.before-after .intro { text-align: center; max-width: 740px; margin: 0 auto 3.5rem; }
.before-after .section-tag { justify-content: center; }
.before-after .section-title { margin-left: auto; margin-right: auto; }
.before-after .serif-italic { color: var(--acento); }

.ba-marquee { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.ba-track { display: flex; gap: 1.4rem; width: max-content; animation: ba-scroll 60s linear infinite; }
.ba-marquee:hover .ba-track { animation-play-state: paused; }
/* -50% porque o conteúdo é duplicado: a última conecta na primeira (loop perfeito) */
@keyframes ba-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ba-slide { flex-shrink: 0; width: clamp(220px, 24vw, 320px); margin: 0; background-color: var(--off-white-2); box-shadow: var(--sombra-suave); overflow: hidden; }
.ba-slide img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.ba-slide:hover img { transform: scale(1.05); }

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.location { background-color: var(--off-white-2); }
.location .serif-italic { color: var(--acento); }
.location-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1.15fr; gap: 5rem; } }
.location-info h3 { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 2.6rem); line-height: 1.08; margin-bottom: 1.5rem; }
.location-address { font-size: 1rem; color: var(--texto-escuro); margin-bottom: 2.4rem; line-height: 1.9; }
.location-differentials h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--acento); margin-bottom: 1.5rem; }
.diff-list { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; }
.diff-list li { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.92rem; color: var(--texto-suave); }
.diff-list li svg { width: 22px; height: 22px; color: var(--sage-escura); margin-top: 0.1rem; flex-shrink: 0; }
.diff-list li strong { display: block; color: var(--texto-escuro); margin-bottom: 0.2rem; }
.location-map {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1024px) { .location-map { height: 420px; } }
@media (max-width: 768px)  { .location-map { height: 350px; } }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta { background-color: var(--preto); color: var(--off-white); text-align: center; padding: clamp(5rem, 11vw, 9rem) 0; position: relative; overflow: hidden; }
.final-cta-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.final-cta h2 { font-family: var(--serif); color: var(--off-white); font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.07; margin-bottom: 1.5rem; }
.final-cta h2 .serif-italic { color: var(--sage); }
.final-cta p { color: var(--texto-claro); font-size: 1.08rem; margin-bottom: 2.8rem; max-width: 58ch; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background-color: var(--preto-puro); color: var(--texto-claro); padding: 5rem 0 2.5rem; font-size: 0.88rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.3fr 0.9fr 1fr; gap: 4rem; } }
.footer-logo img { height: 64px; width: auto; margin-bottom: 1.4rem; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-col p { color: var(--texto-claro); line-height: 1.85; }
.footer-col h4 { color: var(--off-white); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.6rem; }
.footer-contact-list, .footer-dentists { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list a { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--texto-claro); transition: var(--t-rapida); }
.footer-contact-list a svg, .footer-contact-list li svg { width: 17px; height: 17px; color: var(--sage); flex-shrink: 0; }
.footer-contact-list li { display: flex; align-items: center; gap: 0.6rem; }
.footer-contact-list a:hover { color: var(--sage); }
.footer-dentists li { line-height: 1.5; }
.footer-dentists strong { display: block; color: var(--off-white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom-links { display: flex; gap: 1.8rem; }
.footer-bottom-links a:hover { color: var(--sage); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; border-radius: 50%; background-color: var(--cta); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); z-index: 999; transition: var(--t-suave); animation: float-entrance 0.9s var(--ease) forwards; }
.whatsapp-float .wa-icon { width: 32px; height: 32px; }
.whatsapp-float:hover { transform: scale(1.08) translateY(-3px); background-color: var(--cta-hover); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5); }
@keyframes float-entrance { from { transform: scale(0) translateY(40px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; width: 100%; height: 100%; background-color: rgba(23,20,26,0.97); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; backdrop-filter: blur(12px); }
.lightbox.active { display: flex; opacity: 1; }
.lightbox-content-wrapper { position: relative; max-width: 90%; max-height: 85%; display: flex; flex-direction: column; align-items: center; }
.lightbox-img { max-width: 100%; max-height: 80vh; object-fit: contain; box-shadow: var(--sombra-forte); transform: scale(0.95); transition: transform 0.4s var(--ease); }
.lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-caption { color: var(--off-white); margin-top: 1.4rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.lightbox-close { position: absolute; top: 28px; right: 28px; background: none; border: none; color: var(--off-white); font-size: 2rem; cursor: pointer; transition: var(--t-rapida); z-index: 2100; }
.lightbox-close:hover { color: var(--sage); transform: scale(1.1); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--off-white); font-size: 2.4rem; cursor: pointer; padding: 1rem; transition: var(--t-rapida); z-index: 2100; }
.lightbox-nav:hover { color: var(--sage); }
.lightbox-prev { left: 16px; } .lightbox-next { right: 16px; }
@media (max-width: 768px) { .lightbox-nav { font-size: 2rem; padding: 0.5rem; } .lightbox-prev { left: 4px; } .lightbox-next { right: 4px; } .lightbox-close { top: 18px; right: 18px; } }

/* ============================================================
   MOBILE: sem quebras forçadas nos títulos
   ============================================================ */
@media (max-width: 600px) { .section-title br, .final-cta h2 br, .location-info h3 br { display: none; } }

/* ============================================================
   Movimento reduzido
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal, .stagger-item { opacity: 1 !important; transform: none !important; }
  .ba-track { animation: none !important; }
}

/* ============================================================
   AJUSTES — rodada de refinamentos
   ============================================================ */

/* ---------- Header: logo sem deformação ---------- */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: none; /* sempre versão original — sem inversão de cor */
  transition: var(--t-suave);
}
header.scrolled .logo img {
  max-height: 48px;
}

/* ---------- Header: ícone Instagram ---------- */
.header-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-escuro);
  width: 40px;
  height: 40px;
  transition: var(--t-rapida);
}
.header-instagram:hover { color: var(--acento); }

/* ---------- Botão outline: texto branco no hover ---------- */
.btn-outline:hover,
.btn-secondary:hover {
  background: var(--preto);
  color: var(--off-white) !important;
  box-shadow: inset 0 0 0 1px var(--preto);
}

/* ---------- Botão "Como Chegar" ---------- */
.btn-como-chegar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  background: transparent;
  color: var(--texto-escuro);
  box-shadow: inset 0 0 0 1px var(--ardosia);
}
.btn-como-chegar:hover {
  background: var(--preto);
  color: var(--off-white) !important;
  box-shadow: inset 0 0 0 1px var(--preto);
}
.btn-como-chegar [data-lucide] { width: 18px; height: 18px; }

/* ---------- Padronizar largura: 100% em todo o site ---------- */
.container {
  max-width: 100%;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
}

/* Especialistas: também full width (remover max-width local) */
.specialists { width: 100%; }
.specialist-grid { width: 100%; }
.specialist-card { width: 100%; }

/* ---------- Todos os títulos alinhados à esquerda ---------- */
.section-title,
.gallery .section-title,
.results .section-title,
.before-after .section-title,
.testimonials .section-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.gallery .section-tag,
.results .section-tag,
.before-after .section-tag,
.testimonials .section-tag {
  justify-content: flex-start;
}
.gallery .intro,
.results .intro,
.before-after .intro,
.testimonials .intro {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* ---------- Quebras de linha: sem forçadas (hero mantém as suas) ---------- */
.section-title br,
.final-cta h2 br,
.location-info h3 br,
h2 br, h3 br {
  display: none;
}
/* Hero mantém as quebras de linha definidas no HTML */
.hero-title br { display: inline; }
@media (max-width: 600px) { .hero-title br { display: none; } }

/* ---------- Especialistas: alternância Branco / Bege / Branco ---------- */
.specialist-branco { background-color: var(--branco); }
.specialist-bege   { background-color: var(--off-white-2); }
.specialist-bege .specialty-card { background-color: var(--branco); }
.specialist-branco .specialty-card { background-color: var(--off-white); }

/* ---------- Nomes dos especialistas em itálico e cor ---------- */
.name-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
/* Roberto: usa cor da seção "Conheça os Especialistas" (preto arroxeado / sage) */
.name-accent--1 { color: var(--sage-escura); }
/* Tati: azul-cinza */
.name-accent--2 { color: var(--ardosia); }
/* Cláudio: sage médio */
.name-accent--3 { color: var(--sage-escura); }

/* ---------- Categorias de tratamento: texto h3 sempre escuro (sem tonal colorido) ---------- */
.category-col h3 { color: var(--texto-escuro); }
/* Remover bg tonal nos nth-child (todos brancos / sombra) */
.category-col:nth-child(2) { background-color: var(--branco); }
.category-col:nth-child(4) { background-color: var(--branco); }

/* ---------- Help-cards: imagem real cobre o container ---------- */
.help-illustration {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.help-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--t-suave);
}
.help-card:hover .help-illustration img { transform: scale(1.04); }


/* ---------- Rodapé: ícones de contato sem texto ---------- */
.footer-contact-list {
  flex-direction: row;
  gap: 1.4rem;
}
.footer-contact-list li { align-items: center; }
.footer-contact-list a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--t-rapida);
}
.footer-contact-list a:hover {
  border-color: var(--sage);
  color: var(--sage);
}
.footer-contact-list .wa-icon { width: 22px; height: 22px; }
.footer-contact-list [data-lucide] { width: 20px; height: 20px; }

/* ---------- Why-choose: h3 branco (sem cor de accent) ---------- */
.why-card h3 { color: var(--off-white); }
.why-number  { color: var(--sage); }

/* ---------- Peso de fonte nos botões: 400 explícito ---------- */
.btn { font-weight: 400; letter-spacing: 0.13em; }

/* ---------- Mobile: logo sem overflow ---------- */
@media (max-width: 400px) {
  .logo img { max-height: 44px; max-width: 160px; }
}

/* ============================================================
   AJUSTES — rodada 3
   ============================================================ */

/* ---------- 1. Pesos de fonte: menu e botões em Montserrat 600 ---------- */
.nav-link,
.mobile-nav-link {
  font-weight: 600 !important;
}
.btn,
.btn-primary,
.btn-outline,
.btn-secondary,
.btn-como-chegar,
.help-cta,
.treatment-card-cta {
  font-weight: 600 !important;
}

/* ---------- 2. Header na home (topo): menu e Instagram brancos ---------- */
.nav-link { color: var(--off-white); }
header.scrolled .nav-link { color: var(--texto-escuro); }

.header-instagram { color: var(--off-white); }
header.scrolled .header-instagram { color: var(--texto-escuro); }
.header-instagram:hover { color: var(--sage); }
header.scrolled .header-instagram:hover { color: var(--acento); }

/* Toggle mobile: branco no topo, escuro ao rolar */
.mobile-nav-toggle span { background-color: var(--off-white); }
header.scrolled .mobile-nav-toggle span { background-color: var(--texto-escuro); }
.mobile-nav-toggle.active span { background-color: var(--texto-escuro); }

/* ---------- 3. Hero ---------- */
/* (bloco antigo hero-headline removido — subtexto não existe mais) */



/* ---------- 4. Especialistas: bloco do Roberto = cor do cabeçalho ---------- */
/* O cabeçalho "Conheça os especialistas" fica sobre --branco.
   Garantimos que o 1º bloco use exatamente --branco, idêntico. */
.specialists,
.specialists-title-area { background-color: var(--branco); }
.specialist-card.specialist-branco { background-color: var(--branco); }
.specialist-card.specialist-bege   { background-color: var(--off-white-2); }
/* (Branco / Bege / Branco — mantido) */

/* ---------- 5. Onde Estamos: endereço + botão lado a lado, base alinhada ---------- */
.location-address-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.6rem;            /* afasta dos "Diferenciais do Local" */
}
.location-address-row .location-address { margin-bottom: 0; }
.location-address-row .btn-como-chegar { margin-top: 0; }

@media (min-width: 768px) {
  .location-address-row {
    flex-direction: row;
    align-items: flex-end;          /* base alinhada */
    justify-content: flex-start;
    gap: 2.5rem;
  }
}

/* ---------- 6. Banner "Ainda não sabe...": botão alinhado pela base ---------- */
@media (min-width: 1024px) {
  .treatment-banner { align-items: end; }   /* base do conteúdo e das ações */
  .treatment-banner-actions { align-items: flex-end; padding-bottom: 0.4rem; }
}

/* ---------- 7. "Agende sua avaliação": totalmente centralizada ---------- */
.final-cta { text-align: center; }
.final-cta-content {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .section-tag { justify-content: center; }

/* ---------- 8. Rodapé: ícone + telefone por extenso embaixo ---------- */
.footer-contact-list {
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-contact-list li { align-items: center; }
.footer-contact-list a {
  flex-direction: column;
  width: auto;
  min-width: 92px;
  height: auto;
  gap: 0.7rem;
  padding: 1rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.footer-contact-list a:hover { border-color: var(--sage); color: var(--sage); }
.footer-contact-list .contact-label {
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--texto-claro);
  line-height: 1.3;
  white-space: nowrap;
}
.footer-contact-list a:hover .contact-label { color: var(--sage); }

/* ---------- 9. Rodapé final sem links (já removidos do HTML) ---------- */
.footer-bottom { justify-content: center; }

/* ============================================================
   AJUSTES — rodada 4
   ============================================================ */

/* ---------- 4. "Suprema Odontologia" (Excelência e Exclusividade): contraste ---------- */
/* O título fica sobre fundo escuro (.why-choose). O serif-italic estava em --sage
   (esverdeado de baixo contraste). Trocar por off-white quente para leitura nítida. */
.why-choose .serif-italic { color: var(--off-white); }

/* ---------- 6. Cards Roberto e Cláudio: deslocar título à direita ---------- */
/* Nesses cards a imagem fica à direita e o texto à esquerda, colado na borda.
   Alinhamos a margem esquerda do texto ao padding lateral do restante da página. */
/* Roberto e Cláudio usam .specialist-branco e têm a imagem à direita.
   Alinhamos o texto ao padding lateral da página. */
@media (min-width: 1024px) {
  .specialist-branco .specialist-info {
    padding-left: clamp(1.5rem, 5vw, 6rem) !important;
    padding-right: 0 !important;
  }
}

/* ---------- 8. Estrelas dos depoimentos (amarelo-mostarda) ---------- */
.testimonial-author {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.testimonial-author::before { display: none; }       /* remove o tracinho antigo */
.testimonial-stars {
  display: inline-flex;
  gap: 3px;
  color: #D4A017;                                     /* amarelo-mostarda */
}
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--texto-escuro);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.testimonial-name::before {
  content: '';
  width: 22px;
  height: 1px;
  background-color: var(--sage-escura);
}

/* ---------- 11. Rodapé "Canais de Contato": lista, sem retângulos ---------- */
.footer-contact-list {
  flex-direction: column;
  gap: 1.1rem;
  flex-wrap: nowrap;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
}
.footer-contact-list a {
  flex-direction: row;          /* ícone à esquerda, texto à direita */
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;                   /* remove caixa */
  border: none;                 /* remove retângulo */
  text-align: left;
  color: var(--texto-claro);
}
.footer-contact-list a:hover { color: var(--sage); border: none; }
.footer-contact-list a .wa-icon,
.footer-contact-list a svg { width: 19px; height: 19px; color: var(--sage); flex-shrink: 0; }
.footer-contact-list a [data-lucide] { width: 19px; height: 19px; color: var(--sage); flex-shrink: 0; }
.footer-contact-list .contact-label {
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--texto-claro);
  white-space: nowrap;
}
.footer-contact-list a:hover .contact-label { color: var(--sage); }

/* ============================================================
   AJUSTES — rodada 5 (animações, carrossel, specialty)
   ============================================================ */

/* ---------- Specialty-cards (Roberto/Cláudio): contraste perceptível ---------- */
/* Os cards .specialist-branco têm fundo --branco; damos aos tópicos um tom
   sage/areia perceptível para diferenciá-los do fundo, mantendo elegância. */
.specialist-branco .specialty-card {
  background-color: #E7EAE4;                 /* areia-sage claro, distinto do branco */
}
.specialist-branco .specialty-card:hover {
  background-color: #DFE4DC;                 /* leve escurecida no hover */
}
.specialist-bege .specialty-card {
  background-color: var(--branco);            /* sobre fundo bege, o branco gera o contraste */
}

/* ---------- Animações de ENTRADA (fade + deslocamento sutil) ---------- */
/* Ícones surgindo com fade e leve subida quando o bloco entra na viewport */
[data-lucide], .ph,
.category-icon, .specialty-card-icon, .why-number {
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.reveal [data-lucide],
.reveal .ph,
.reveal .category-icon,
.reveal .specialty-card-icon,
.reveal .hero-features li svg {
  opacity: 0;
  transform: translateY(12px);
}
.reveal.visible [data-lucide],
.reveal.visible .ph,
.reveal.visible .category-icon,
.reveal.visible .specialty-card-icon,
.reveal.visible .hero-features li svg {
  opacity: 1;
  transform: translateY(0);
}
/* leve atraso escalonado dos ícones da hero */
.reveal.visible .hero-features li:nth-child(1) svg { transition-delay: 0.10s; }
.reveal.visible .hero-features li:nth-child(2) svg { transition-delay: 0.18s; }
.reveal.visible .hero-features li:nth-child(3) svg { transition-delay: 0.26s; }
.reveal.visible .hero-features li:nth-child(4) svg { transition-delay: 0.34s; }

/* Eyebrow + título com fade suave (reforço discreto) */
.reveal .section-tag,
.reveal .section-title,
.reveal .hero-title { transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* ---------- Animações de HOVER nos ícones (refinadas) ---------- */
.category-col:hover .category-icon {
  transform: translateY(-2px) scale(1.06);
  color: var(--ardosia-esc);
}
.specialty-card:hover .specialty-card-icon {
  transform: translateY(-2px) scale(1.06);
  color: var(--ardosia-esc);
}
.hero-features li svg,
.diff-list li svg,
.footer-contact-list a svg,
.footer-contact-list a [data-lucide] {
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}
.hero-features li:hover svg,
.diff-list li:hover svg { transform: translateY(-2px) scale(1.12); }
.footer-contact-list a:hover svg,
.footer-contact-list a:hover [data-lucide] { transform: translateY(-2px) scale(1.12); }
.header-instagram svg { transition: transform 0.35s var(--ease), color 0.3s ease; }
.header-instagram:hover svg { transform: translateY(-1px) scale(1.1); }
.help-cta:hover svg { transform: translateX(5px); }

/* ---------- before-after: título alinhado à esquerda (consistência) ---------- */
.before-after .intro { text-align: left; max-width: none; margin: 0 0 3rem; }
.before-after .section-tag { justify-content: flex-start; }
.before-after .section-title { margin-left: 0; margin-right: 0; }
.before-after .intro p { max-width: 60ch; }

/* Respeitar redução de movimento */
@media (prefers-reduced-motion: reduce) {
  .reveal [data-lucide], .reveal .ph, .reveal .category-icon,
  .reveal .specialty-card-icon, .reveal .hero-features li svg {
    opacity: 1 !important; transform: none !important;
  }
}

/* ============================================================
   AJUSTES EXCLUSIVOS PARA MOBILE
   ============================================================ */

/* ---------- 1. Prevenção de transbordamento horizontal ---------- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ---------- 2. Nova seção de imagem da Hero para Mobile ---------- */
.hero-mobile-image {
  display: none;
}

@media (max-width: 1023px) {
  /* Substituir fundo da Hero por gradiente suave */
  .hero {
    background-image: linear-gradient(180deg, var(--off-white) 0%, var(--off-white-2) 100%) !important;
    background-position: center !important;
    background-size: cover !important;
    min-height: auto !important;
    padding: 140px 0 4rem !important;
  }

  /* Exibir seção de imagem da Hero no mobile — sem padding, foto toca as bordas */
  .hero-mobile-image {
    display: block;
    background-color: var(--off-white-2);
    padding: 0;
  }
  .hero-mobile-image .container {
    padding: 0;
    max-width: 100%;
  }
  .hero-mobile-img-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    line-height: 0; /* remove gap below img */
  }
  .hero-mobile-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* Header: ícones visíveis imediatamente ao abrir a página no mobile */
  .header-instagram {
    color: var(--texto-escuro) !important;
  }
  .mobile-nav-toggle span {
    background-color: var(--texto-escuro) !important;
  }

  /* Especialistas: alinhar conteúdo com padding padrão da página */
  .specialist-info {
    padding: 2rem 1.5rem 4rem !important;
  }
}

@media (max-width: 767px) {
  /* Seção Tratamentos: ajustar largura, fonte e wrapping do botão de WhatsApp */
  #btn-tratamentos-geral-agendar {
    width: 100% !important;
    max-width: 320px !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 1rem 1.2rem !important;
    font-size: 0.68rem !important;
    margin: 0 auto !important;
  }

  /* Bloco "Ainda não sabe...": ajustar espaçamento e botão */
  .treatment-banner {
    padding: 2rem 1.2rem !important;
  }
  .treatment-banner-actions {
    justify-content: center !important;
    width: 100% !important;
  }
  #btn-banner-falar-equipe {
    width: 100% !important;
    max-width: 290px !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 1rem 1.2rem !important;
    font-size: 0.68rem !important;
  }
}
