/* =================================================
   LANDING PAGE - TEMPLATE
   Site institucional para profissionais (médicos, dentistas, estética, etc.)

   ▼ COMO USAR ▼
   1. Escolha uma das 4 paletas abaixo (descomente a desejada)
   2. Ou personalize criando sua própria com 4 cores
   3. As variáveis controlam o site INTEIRO — mude aqui e o site todo muda

   ▼ FONTES ▼
   Padrão: Cinzel (serifa elegante) + Raleway (sans-serif moderna)
   Pra trocar, mude também o <link> do Google Fonts no index.html
   ================================================= */

/* Garantir font-display swap em todas as fontes externas */
@font-face { font-family: 'Font Awesome 6 Free'; font-display: swap; }
@font-face { font-family: 'Font Awesome 6 Brands'; font-display: swap; }

/* =================================================
   PALETAS DE CORES — escolha UMA e deixe as outras comentadas
   ================================================= */

/* ▼▼▼ PALETA HELEN MAGALHÃES — Verde-petróleo + Preto (extraída da logo) */
:root {
  --color-primary: #1E948F;        /* verde-petróleo (HM da logo) */
  --color-primary-dark: #126b67;   /* verde-petróleo mais escuro (hover) */
  --color-dark: #0a1a1a;           /* preto suavizado */
  --color-bg-alt: #f0f7f6;         /* fundo claro com leve toque esverdeado */
}

/* ▼▼▼ PALETAS ALTERNATIVAS (deixadas comentadas pra trocas futuras)

PALETA 1 - DOURADO + PRETO (médico premium):
:root {
  --color-primary: #b48e4e;
  --color-primary-dark: #8a6d3a;
  --color-dark: #1a1a1a;
  --color-bg-alt: #f7f5f1;
}

PALETA 2 - AZUL MÉDICO:
:root {
  --color-primary: #2b6cb0;
  --color-primary-dark: #1e4d80;
  --color-dark: #1a202c;
  --color-bg-alt: #f0f5fa;
}

PALETA 3 - VERDE SAÚDE + BEGE:
:root {
  --color-primary: #6b8e6e;
  --color-primary-dark: #4d6b50;
  --color-dark: #2d3a2f;
  --color-bg-alt: #f5f7f3;
}

PALETA 4 - ROSA ESTÉTICA + NUDE:
:root {
  --color-primary: #c89b9b;
  --color-primary-dark: #a47878;
  --color-dark: #2d2528;
  --color-bg-alt: #faf5f5;
}
*/

/* =================================================
   VARIÁVEIS DERIVADAS (geralmente NÃO precisa mexer)
   ================================================= */
:root {
  /* Aliases pra compatibilidade com o código existente */
  --color-gold: var(--color-primary);
  --color-gold-dark: var(--color-primary-dark);

  /* Texto */
  --color-text: #2d3748;
  --color-text-light: #718096;

  /* Fundos */
  --color-bg: #ffffff;
  --color-bg-dark: var(--color-dark);

  /* WhatsApp (cor fixa) */
  --color-whatsapp: #25d366;

  /* Fontes */
  --font-display: 'Cinzel', serif;
  --font-body: 'Raleway', system-ui, sans-serif;

  --container: 1290px;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

/* ===== UTILITÁRIOS ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 1.40rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text-light);
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(180, 142, 78, 0.35);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 2rem;
}

.logo img {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1); /* logo branco sobre fundo escuro */
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.menu {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.menu a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  position: relative;
  padding: 0.4rem 0;
}

.menu a:hover,
.menu a.active {
  color: var(--color-gold);
}

.menu a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 0.85rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-gold);
  font-size: 0.95rem;
}

.social-icons a:hover {
  background: var(--color-gold);
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  min-height: 600px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 100%),
    url('assets/images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 6rem 0;
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero .eyebrow {
  color: var(--color-gold);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ===== DIFERENCIAIS RÁPIDOS ===== */
.quick-benefits {
  background: var(--color-bg-alt);
  padding: 3rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  padding: 0.75rem;
  color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(180, 142, 78, 0.15);
  border: 1px solid rgba(180, 142, 78, 0.2);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.benefit-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.benefit-item p {
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ===== TÉCNICA FUE ===== */
.fue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.video-thumb {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-thumb img {
  width: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(180, 142, 78, 0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all var(--transition);
}

.video-thumb:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-gold);
}

.fue-headline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.fue-text p {
  margin-bottom: 1rem;
}

/* ===== ETAPAS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: linear-gradient(135deg, var(--color-bg-alt), #fff);
  padding: 1.75rem;
  border-radius: var(--radius);
}

.step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  padding: 0.85rem;
  border: 1px solid rgba(180, 142, 78, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(180, 142, 78, 0.15);
}

.step img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step h3 {
  font-family: var(--font-display);
  color: var(--color-gold);
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.step p {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

/* ===== RESULTADOS NATURAIS ===== */
.section-results {
  background: var(--color-bg-alt);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ===== ANTES/DEPOIS - SLIDER COMPARATIVO INTERATIVO ===== */
.image-compare {
  position: relative;
  width: 60%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  user-select: none;
  cursor: ew-resize;
  line-height: 0;
  --compare-pos: 50%;
}

.image-compare img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* Imagem "depois" fica embaixo, definindo a altura natural do container */
.compare-after {
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Imagem "antes" fica por cima, com clip-path controlado pela variável */
.compare-before-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: polygon(0 0, var(--compare-pos) 0, var(--compare-pos) 100%, 0 100%);
  will-change: clip-path;
  overflow: hidden;
}

.compare-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-label {
  position: absolute;
  top: 1rem;
  background: rgba(180, 142, 78, 0.95);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  z-index: 2;
  pointer-events: none;
}

.compare-label-before { left: 1rem; }
.compare-label-after { right: 1rem; }

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos);
  width: 4px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  z-index: 3;
  will-change: left;
  outline: none;
}

.compare-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  font-size: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.image-compare:hover .compare-handle-circle,
.compare-handle:focus-visible .compare-handle-circle {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ===== ANTES/DEPOIS - DUAS IMAGENS LADO A LADO ===== */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.before-after figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.before-after img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.before-after figure:hover img {
  transform: scale(1.04);
}

.before-after figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--color-gold);
  color: #fff;
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===== POR QUE FAZER CONOSCO ===== */
.section-why {
  background: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 50%, #2a2a2a 100%);
  color: #fff;
}

.section-why .section-title {
  color: #fff;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-list-left {
  text-align: right;
}

.why-list-right {
  text-align: left;
}

.why-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.why-list-left li {
  align-items: flex-end;
}

.why-list-right li {
  align-items: flex-start;
}

.why-list img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  
}

.why-list h3 {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 1.2rem;
}

.why-list p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.why-image img {
  max-width: 450px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0);
}

/* ===== DEPOIMENTOS / CARROSSEL ===== */
.section-testimonials {
  background: var(--color-bg-alt);
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 1rem;
}

.testimonial-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.testimonial-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-text h3 {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text p {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-text cite {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-dark);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--color-gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--color-gold-dark);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(180, 142, 78, 0.3);
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--color-gold);
  width: 30px;
  border-radius: 5px;
}

/* ===== VÍDEOS DE DEPOIMENTOS (GRID DE 3) ===== */
.section-video-testimonials {
  background: var(--color-bg-dark);
  color: #fff;
  text-align: center;
}

.section-video-testimonials .eyebrow {
  color: var(--color-gold);
}

.section-video-testimonials .section-title {
  color: #fff;
  margin-bottom: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-card:hover img {
  opacity: 0.9;
  transform: scale(1.05);
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(180, 142, 78, 0.95);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-card:hover .video-card-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-gold);
}

.video-card-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ===== INDICAÇÃO ===== */
.indication-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.check-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.check-list i {
  color: var(--color-gold);
  font-size: 1.25rem;
}

.indication-image img {
  max-width: 100%;
  margin: 0 auto;
}

/* ===== CLÍNICA / GALERIA ===== */
.section-clinic {
  background: var(--color-bg-alt);
}

.clinic-gallery {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.clinic-gallery.is-dragging {
  cursor: grabbing;
}

.clinic-gallery .carousel-track {
  gap: 1rem;
  will-change: transform;
}

.clinic-gallery img {
  flex: 0 0 calc(25% - 0.75rem);
  border-radius: var(--radius);
  height: 300px;
  object-fit: cover;
  pointer-events: none; /* impede drag nativo da imagem; eventos vão pro container */
}

/* ===== SOBRE A DRA ===== */
.section-doctor {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2a2a2a 100%);
  color: #fff;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.doctor-credentials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.doctor-credentials li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(180, 142, 78, 0.2);
}

.doctor-credentials img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  filter: invert(70%) sepia(50%) saturate(400%) hue-rotate(360deg);
}

.doctor-credentials p {
  font-size: 0.95rem;
  margin: 0;
}

.doctor-photo img {
  border-radius: var(--radius);
  width: 100%;
}

.doctor-bio .eyebrow {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.doctor-bio .doctor-crm {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.85rem;
  border: 1px solid rgba(180, 142, 78, 0.4);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  background: rgba(180, 142, 78, 0.08);
}

.doctor-bio p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.doctor-bio .btn {
  margin-top: 1rem;
}

/* ===== CONTATO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 450px;
}

.contact-form {
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-form h3 {
  font-family: var(--font-display);
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.field {
  margin-bottom: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 4rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  max-width: 200px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-col h3 {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--color-gold);
}

.footer-col .social-icons a {
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

/* =================================================
   EFEITOS HOVER (animação grow nos ícones)
   ================================================= */

.benefit-icon img,
.benefit-icon svg,
.step img,
.why-list img,
.doctor-credentials img,
.indication-image img {
  transition: transform 0.4s ease;
}

.benefit-item:hover .benefit-icon img,
.benefit-item:hover .benefit-icon svg,
.step:hover img,
.why-list li:hover img,
.doctor-credentials li:hover img {
  transform: scale(1.1);
}

/* Cards com hover sutil */
.benefit-item,
.step,
.why-list li,
.doctor-credentials li {
  transition: transform 0.3s ease;
}

.benefit-item:hover,
.step:hover,
.why-list li:hover,
.doctor-credentials li:hover {
  transform: translateY(-4px);
}

/* Imagens das galerias de depoimentos com leve zoom no hover */
.testimonial-images img {
  transition: transform 0.5s ease;
}
.testimonial-images img:hover {
  transform: scale(1.03);
}

/* =================================================
   DIVISORES DECORATIVOS
   ================================================= */

.steps {
  position: relative;
}

.step {
  position: relative;
}

.doctor-credentials li {
  position: relative;
}

/* =================================================
   HEADER STICKY COM EFEITO DE SCROLL
   ================================================= */

.site-header {
  transition: box-shadow 0.3s ease, padding 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.95);
}

.site-header.is-scrolled .header-inner {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.site-header.is-scrolled .logo img {
  max-width: 160px;
  transition: max-width 0.3s ease;
}

/* =================================================
   WHATSAPP - WIDGET COMPLETO (TOOLTIP + CHATBOX)
   ================================================= */

.joinchat {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
}

.joinchat-button {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
  animation: joinchat-bounce 2s ease-in-out 1s 2;
}

@keyframes joinchat-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.joinchat-button:hover {
  transform: scale(1.08);
}

.joinchat-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--color-text);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.joinchat-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}

.joinchat:not(.is-open) .joinchat-button:hover .joinchat-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-4px);
}

.joinchat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: #ff3b30;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid #fff;
}

.joinchat.is-open .joinchat-badge { display: none; }

.joinchat-box {
  position: absolute;
  bottom: 78px;
  right: 0;
  width: 320px;
  max-width: calc(100vw - 3rem);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.joinchat.is-open .joinchat-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.joinchat-header {
  background: var(--color-whatsapp);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
}

.joinchat-close {
  color: #fff;
  font-size: 1.1rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.joinchat-close:hover { opacity: 1; }

.joinchat-body {
  padding: 1.25rem;
  background: #ece5dd; /* fundo estilo WhatsApp */
}

.joinchat-bubble {
  background: #fff;
  padding: 0.85rem 1rem;
  border-radius: 0 12px 12px 12px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  position: relative;
}

.joinchat-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
}

.joinchat-open {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--color-whatsapp);
  color: #fff;
  padding: 0.85rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: background 0.2s ease;
}

.joinchat-open:hover {
  background: #1ebe57;
}

/* =================================================
   LIGHTBOX DE VÍDEO
   ================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  width: 100%;
  max-width: 1100px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.is-open .lightbox-content {
  transform: scale(1);
}

.lightbox-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.lightbox-video iframe,
.lightbox-video video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Quando o vídeo é vertical (Reel/TikTok), ajusta proporção */
.lightbox-video:has(video) {
  aspect-ratio: auto;
  max-width: 420px;
  margin: 0 auto;
  background: transparent;
}

.lightbox-video:has(video) video {
  height: auto;
  max-height: 85vh;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Quando o lightbox está aberto, trava scroll do body */
body.lightbox-open {
  overflow: hidden;
}

/* =================================================
   PÁGINA POLÍTICA DE PRIVACIDADE
   ================================================= */

.policy-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 50%, #2a2a2a 100%);
  color: #fff;
  text-align: center;
  padding: 6rem 0 4rem;
  margin-top: 0;
}

.policy-hero .eyebrow {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.policy-update {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.container-narrow {
  max-width: 820px;
}

.policy-content {
  background: #fff;
}

.policy-content .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--color-gold);
  background: rgba(180, 142, 78, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 3rem;
}

.policy-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(180, 142, 78, 0.15);
}

.policy-block:last-of-type {
  border-bottom: none;
}

.policy-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  padding-left: 1.25rem;
}

.policy-block h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 1em;
  background: var(--color-gold);
  border-radius: 2px;
}

.policy-block p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}

.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-block a {
  color: var(--color-gold);
  text-decoration: underline;
  text-decoration-color: rgba(180, 142, 78, 0.4);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.policy-block a:hover {
  color: var(--color-gold-dark);
  text-decoration-color: var(--color-gold);
}

.policy-list {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  line-height: 1.6;
  color: var(--color-text);
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

.policy-contact-list {
  background: rgba(180, 142, 78, 0.05);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.policy-contact-list li {
  padding-left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-contact-list li::before {
  display: none;
}

.policy-contact-list i {
  color: var(--color-gold);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.policy-back {
  margin-top: 2.5rem;
  display: inline-flex;
}

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

/* Tablets */
@media (max-width: 1024px) {
  .section { padding: 4rem 0; }

  .fue-grid,
  .results-grid,
  .indication-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .doctor-credentials li {
    text-align: left;
  }

  .doctor-photo {
    max-width: 800px;
    margin: 0 auto;
  }

  .why-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .why-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: unset;
    gap: 1.5rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  .why-list-left,
  .why-list-right {
    text-align: center;
  }

  .why-list li {
    flex: unset;
    min-width: 0;
    align-items: center !important;
    text-align: center;
  }

  .why-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .why-image img {
    margin: 0 auto;
  }

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

  .clinic-gallery img {
    flex: 0 0 calc(50% - 0.5rem);
  }

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

/* Mobile */
@media (max-width: 768px) {
  body { font-size: 16px; }

  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }

  /* Política de Privacidade no mobile */
  .policy-hero {
    padding: 4rem 0 3rem;
  }

  .policy-content .lead {
    padding: 1.25rem;
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .policy-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .policy-block h2 {
    font-size: 1.25rem;
  }

  .policy-contact-list {
    padding: 1rem;
  }

  .policy-contact-list li {
    padding-left: 0;
  }

  /* Why list no mobile: 3 colunas em linha (3 ícones acima e 3 abaixo da foto) */
  .why-list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: 0.75rem;
  }

  .why-list h3 {
    font-size: 0.95rem;
  }

  .why-list p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .why-list img {
    width: 50px;
    height: 50px;
  }

  .why-image img {
    max-width: 280px;
  }

  /* Header mobile */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

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

  .menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu li:last-child {
    border-bottom: none;
  }

  .menu a {
    display: block;
    padding: 0.85rem 0;
    color: #fff;
  }

  .header-inner {
    position: relative;
  }

  .social-icons {
    display: none;
  }

  /* Hero no mobile: layout vertical — texto em cima, foto inteira embaixo */
  .hero {
    min-height: 0;
    padding: 0;
    background: #000;
    text-align: center;
    display: block;
  }

  .hero-inner {
    display: block;
    padding: 3rem 1.5rem;
  }

  .hero-content {
    margin: 0 auto;
    max-width: 100%;
  }

  /* Foto da Dra. (versão mobile recortada 600x800) abaixo do conteúdo */
  .hero::after {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 600px;
    background-image: url('assets/images/hero-mobile.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  /* Grids */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.25rem;
    gap: 0.85rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 0.5rem;
  }

  .step img {
    width: 44px;
    height: 44px;
  }

  .step h3 {
    font-size: 0.85rem;
  }

  .step p {
    font-size: 0.75rem;
  }

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

  /* Imagens antes/depois lado a lado também no mobile (estilo do site de referência) */
  .before-after {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .before-after figure {
    border-radius: 0;
    box-shadow: none;
    margin: 0;
  }

  .before-after img {
    width: 100%;
    height: auto;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Slider de comparação - alvo maior pra touch */
  .compare-handle-circle {
    width: 56px;
    height: 56px;
  }
  .compare-label { font-size: 0.7rem; padding: 0.25rem 0.7rem; }

  .clinic-gallery img {
    flex: 0 0 100%;
    height: 220px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 1rem;
  }

  .footer-col .social-icons {
    display: flex;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Carrossel de depoimentos: dá espaço lateral pras setas + centraliza */
  .testimonial {
    padding: 1rem 2.5rem;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
  }

  /* Imagens antes/depois lado a lado também no mobile - coladas como referência */
  .testimonial-images {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .testimonial-images img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
  }

  /* Setas mais perto da borda mas sem sobrepor as fotos */
  .carousel-prev { left: 0.25rem; }
  .carousel-next { right: 0.25rem; }

  /* Setas menores no mobile */
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  /* Divisores das etapas só fazem sentido em layout horizontal */
  .step:not(:last-child)::after { display: none; }

  /* Lightbox padding menor */
  .lightbox { padding: 1rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .hero-name { font-size: 1.75rem; }
  .hero-title { font-size: 1.25rem; }
  .btn { padding: 0.85rem 1.5rem; font-size: 0.85rem; }

  .joinchat { bottom: 1rem; right: 1rem; }
  .joinchat-button {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
  .joinchat-box { width: calc(100vw - 2rem); }
}

/* =================================================
   ====== NOVOS LAYOUTS - DESIGN REDESENHADO ======
   ================================================= */

/* ============================================
   SOBRE A HELEN - Layout Editorial
   ============================================ */
.section-about {
  padding: 6rem 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.section-about::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  opacity: 0.04;
  border-radius: 50%;
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.about-photo-accent {
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 2px solid var(--color-primary);
  border-radius: 1rem;
  z-index: 1;
}

.about-content {
  position: relative;
}

.about-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--color-dark);
  margin: 0 0 0.5rem;
}

.about-role {
  font-size: 0.95rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--color-primary);
  opacity: 0.25;
  margin: 0;
  height: 2rem;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.4;
  color: var(--color-dark);
  font-weight: 500;
  margin: 1rem 0 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-primary);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.about-badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1;
}

.about-badge-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

/* ============================================
   TRATAMENTOS - Cards Grandes
   ============================================ */
.section-treatments {
  background: white;
  padding: 6rem 0;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.treatment-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 148, 143, 0.12);
  border-color: rgba(30, 148, 143, 0.2);
}

.treatment-icon {
  width: 60px;
  height: 60px;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.treatment-icon svg {
  width: 100%;
  height: 100%;
}

.treatment-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-dark);
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.treatment-desc {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.treatment-meta {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  background: rgba(30, 148, 143, 0.08);
  border-radius: 50px;
}

/* Card especial CTA (último) */
.treatment-card-cta {
  background: var(--color-primary);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.treatment-card-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 148, 143, 0.3);
}

.treatment-cta-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin: 0 0 1rem;
  font-weight: 500;
}

.treatment-cta-desc {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.treatment-card-cta .btn-primary {
  background: white;
  color: var(--color-primary);
}

.treatment-card-cta .btn-primary:hover {
  background: var(--color-dark);
  color: white;
}

/* ============================================
   ANTES E DEPOIS - Galeria Editorial
   ============================================ */
.section-results {
  background: var(--color-bg-alt);
  padding: 6rem 0;
}

.result-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  margin-bottom: 5rem;
}

.result-featured-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.result-featured-images figure {
  margin: 0;
  position: relative;
}

.result-featured-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.result-featured-images figcaption {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.result-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.result-featured-info h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--color-dark);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.result-featured-info p {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.result-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.result-stats li {
  text-align: center;
}

.result-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--color-primary);
  line-height: 1;
}

.result-stats span {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.results-gallery-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.result-mini-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.result-mini:hover .result-mini-images {
  transform: translateY(-4px);
}

.result-mini-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.result-mini-label {
  font-size: 0.85rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0;
}

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

/* ============================================
   POR QUE ESCOLHER - Números Grandes (fundo escuro)
   ============================================ */
.section-why {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a3030 100%);
  color: white;
  padding: 6rem 0;
}

.section-why .section-title {
  color: white;
}

.section-why .section-lead {
  color: rgba(255,255,255,0.7);
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.why-card:hover {
  background: rgba(30, 148, 143, 0.08);
  border-color: rgba(30, 148, 143, 0.3);
  transform: translateY(-4px);
}

.why-card-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  letter-spacing: -0.05em;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: white;
  margin: 0 0 1rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.why-card p {
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   RESPONSIVO - Mobile
   ============================================ */
@media (max-width: 768px) {
  /* Sobre a Helen */
  .section-about { padding: 4rem 0; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo-accent {
    inset: -10px -10px 10px 10px;
  }

  .about-headline {
    font-size: 1.15rem;
    padding-left: 1rem;
  }

  .about-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .about-badge-number {
    font-size: 1.35rem;
  }

  .about-badge-label {
    font-size: 0.65rem;
  }

  /* Tratamentos */
  .section-treatments { padding: 4rem 0; }

  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .treatment-card {
    padding: 2rem 1.5rem;
  }

  /* Antes/Depois */
  .section-results { padding: 4rem 0; }

  .result-featured {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .result-featured-info h3 {
    font-size: 1.35rem;
  }

  .result-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .result-stats strong {
    font-size: 1.35rem;
  }

  .results-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Por que escolher */
  .section-why { padding: 4rem 0; }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-card {
    padding: 2rem 1.5rem;
  }

  .why-card-number {
    font-size: 4rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .treatments-grid,
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
