/* =========================================
   PÁGINA: OLHEIRAS
   Herda style.css
   Com foto, sem FAQ
========================================= */

.section-title { padding: 150px 0 40px; }
@media (max-width: 767px) { .section-title { padding: 120px 0 30px; } }

/* =========================================
   HERO: FOTO DIREITA + TEXTO ESQUERDA
   (inverso do bio.html que tem foto direita
   com tag, aqui a foto tem moldura angular)
========================================= */
.section-hero {
  float: left;
  width: 100%;
  background: var(--bg);
  padding: 60px 0 80px;
}
.hero-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: center;
}
.hero-txt { width: 55%; padding: 0 15px; }
.hero-img { width: 45%; padding: 0 15px; }
@media (max-width: 767px) {
  .hero-txt, .hero-img { width: 100%; }
  .hero-img { margin-top: 36px; }
}

.hero-txt h4 { color: var(--primary); }
.hero-txt h2 { color: var(--dark); margin-bottom: 16px; }
.hero-txt p  { color: var(--text); font-size: 15px; line-height: 1.75; margin-bottom: 12px; }

/* Foto com detalhe de borda angular no canto */
.hero-photo-angular {
  position: relative;
}
.hero-photo-angular img {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}

.hero-photo-angular img { position: relative; z-index: 1; }

/* Nota informativa abaixo da foto */
.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}
.hero-note i { color: var(--primary); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.hero-note p { font-size: 13px; color: var(--text); margin: 0; line-height: 1.6; }

/* =========================================
   TIPOS DE OLHEIRA
   Cards horizontais com cor de acento lateral,
   cada um com foto do tratamento
   (diferente do bio que usa timeline)
========================================= */
.section-tipos {
  float: left;
  width: 100%;
  background: var(--white);
  padding: 80px 0;
}
.section-tipos h4 { color: var(--primary); }
.section-tipos h2 { color: var(--dark); margin-bottom: 8px; }
.tipos-intro { color: var(--text); max-width: 600px; margin-bottom: 52px; }

.tipo-bloco {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: stretch;
  margin-bottom: 32px;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 18px rgba(91,48,0,0.05);
  transition: box-shadow 0.3s ease;
}
.tipo-bloco:hover { box-shadow: 0 10px 32px rgba(91,48,0,0.1); }
.tipo-bloco:last-child { margin-bottom: 0; }

.tipo-bloco-accent {
  width: 6px;
  flex-shrink: 0;
  background: var(--accent);
}
.tipo-bloco-accent.accent-dark { background: var(--primary); }
.tipo-bloco-accent.accent-mid  { background: #c47e5a; }

.tipo-bloco-body {
  flex: 1;
  padding: 32px 32px 32px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: flex-start;
}
@media (max-width: 767px) { .tipo-bloco-body { padding: 24px 20px; } }

.tipo-bloco-info { width: 55%; padding-right: 32px; }
.tipo-bloco-tratamentos { width: 45%; padding-left: 20px; border-left: 1px solid var(--border-light); }
@media (max-width: 767px) {
  .tipo-bloco-info, .tipo-bloco-tratamentos { width: 100%; padding: 0; }
  .tipo-bloco-tratamentos { border-left: none; border-top: 1px solid var(--border-light); padding-top: 20px; margin-top: 20px; }
}

.tipo-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.tipo-bloco-info h3 { font-size: 22px; color: var(--dark); margin-bottom: 12px; }
.tipo-bloco-info p  { font-size: 14px; color: var(--text); line-height: 1.7; margin: 0; }

.trat-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 14px;
  display: block;
}
.trat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5;
}
.trat-list li:first-child { padding-top: 0; }
.trat-list li:last-child  { border-bottom: none; padding-bottom: 0; }
.trat-list li i { color: var(--accent); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.trat-list li span { font-size: 12px; color: var(--text); display: block; margin-top: 2px; }

/* =========================================
   DIAGNÓSTICO — SEÇÃO ESCURA
   Texto + pilares em linha horizontal
   (diferente dos cards do bio)
========================================= */
.section-diagnostico {
  float: left;
  width: 100%;
  background: var(--dark);
  padding: 80px 0;
}
.section-diagnostico h4 { color: var(--accent); }
.section-diagnostico h2 { color: var(--white); margin-bottom: 16px; }
.diag-intro { color: rgba(255,255,255,0.75); max-width: 680px; margin-bottom: 52px; }

.diag-pilares {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
}
.diag-pilar {
  width: 33.333%;
  padding: 30px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.diag-pilar:last-child { border-right: none; }
@media (max-width: 767px) {
  .diag-pilar { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .diag-pilar:last-child { border-bottom: none; }
}

.diag-pilar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(215,157,131,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 16px;
}
.diag-pilar h3 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.diag-pilar p  { font-size: 13px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.65; }

.diag-cta { margin-top: 48px; display: flex; }

/* =========================================
   SEGUNDA FOTO + TEXTO (seção clara)
   Foto à direita com texto à esquerda,
   diferente do hero que tem foto à direita
   (aqui a posição é invertida visualmente)
========================================= */
.section-foto2 {
  float: left;
  width: 100%;
  background: var(--bg);
  padding: 80px 0;
}
.foto2-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: center;
}
.foto2-txt { width: 55%; padding: 0 15px; order: 1; }
.foto2-img { width: 45%; padding: 0 15px; order: 2; }
@media (max-width: 767px) {
  .foto2-txt, .foto2-img { width: 100%; order: initial; }
  .foto2-img { margin-bottom: 32px; order: 1; }
  .foto2-txt { order: 2; }
}

.foto2-txt h4 { color: var(--primary); }
.foto2-txt h2 { color: var(--dark); margin-bottom: 16px; }
.foto2-txt p  { color: var(--text); font-size: 15px; line-height: 1.75; margin-bottom: 12px; }
.foto2-txt p:last-of-type { margin-bottom: 24px; }

.foto2-img img {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}
