/* =========================================
   PÁGINA: MELASMA E PROTOCOLO CLEAR SKIN
   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 ESQUERDA + TEXTO DIREITA
   (inverso da olheiras.html)
   Foto com detalhe diferente: recorte
   com canto marcado + pill flutuante
========================================= */
.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-img { width: 45%; padding: 0 15px; }
.hero-txt { width: 55%; padding: 0 15px; }
@media (max-width: 767px) {
  .hero-img, .hero-txt { width: 100%; }
  .hero-img { margin-bottom: 32px; }
}

/* Foto com pill flutuante no canto superior */
.hero-photo-pill {
  position: relative;
}
.hero-photo-pill img {
  width: 100%;
  height: 450px; /* aumenta pra cima */
  border-radius: 20px;
  display: block;
  object-fit: cover;
}
.hero-pill-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 40px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(91,48,0,0.3);
}

/* Texto hero */
.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; }

/* Bloco de alerta sobre melasma */
.hero-alerta {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 24px 0 28px;
  padding: 18px 22px;
  background: #fff3ec;
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
}
.hero-alerta i { color: var(--primary); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.hero-alerta p { font-size: 13px; color: var(--text); margin: 0; line-height: 1.65; }
.hero-alerta strong { color: var(--primary); }

/* =========================================
   PROTOCOLO CLEAR SKIN — SEÇÃO BRANCA
   Cards em linha com ícone grande e número
   (diferente de qualquer outra página)
========================================= */
.section-protocolo {
  float: left;
  width: 100%;
  background: var(--white);
  padding: 80px 0;
}
.section-protocolo h4 { color: var(--primary); }
.section-protocolo h2 { color: var(--dark); margin-bottom: 8px; }
.protocolo-intro { color: var(--text); max-width: 660px; margin-bottom: 52px; }

/* Nome do protocolo em destaque */
.protocolo-nome {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  padding: 16px 28px;
  margin-bottom: 40px;
}
.protocolo-nome i { font-size: 22px; }
.protocolo-nome strong {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.protocolo-nome span {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 2px;
  display: block;
  font-weight: 400;
}

/* Grid de pilares do protocolo */
.pilares-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.pilar-card {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 991px) { .pilar-card { width: 50%; } }
@media (max-width: 575px)  { .pilar-card { width: 100%; } }

.pilar-card-inner {
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  background: var(--bg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pilar-card-inner:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(91,48,0,0.08);
}

.pilar-num-bg {
  position: absolute;
  top: -10px;
  right: 12px;
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 700;
  color: rgba(215,157,131,0.12);
  line-height: 1;
  pointer-events: none;
}
.pilar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.pilar-card-inner h3 { font-size: 15px; color: var(--dark); margin-bottom: 8px; }
.pilar-card-inner p  { font-size: 13px; color: var(--text); margin: 0; line-height: 1.65; }

/* =========================================
   POR QUE COMBINAR — SEÇÃO ESCURA
   Layout de texto central + 2 colunas abaixo
========================================= */
.section-porque {
  float: left;
  width: 100%;
  background: var(--dark);
  padding: 80px 0;
}
.section-porque h4 { color: var(--accent); }
.section-porque h2 { color: var(--white); margin-bottom: 16px; }
.porque-intro { color: rgba(255,255,255,0.75); max-width: 720px; margin-bottom: 48px; }

.porque-cols {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.porque-col {
  width: 50%;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .porque-col { width: 100%; margin-bottom: 32px; }
  .porque-col:last-child { margin-bottom: 0; }
}

.porque-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.porque-item:first-child { padding-top: 0; }
.porque-item:last-child  { border-bottom: none; padding-bottom: 0; }

.porque-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}
.porque-item h3 { font-size: 14px; color: var(--white); margin-bottom: 4px; }
.porque-item p  { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.6; }

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

/* =========================================
   SEGUNDA FOTO + CUIDADOS
   Foto à direita, texto à esquerda
   (igual ao hero mas sem pill e com lista)
========================================= */
.section-cuidados {
  float: left;
  width: 100%;
  background: var(--bg);
  padding: 80px 0;
}
.cuidados-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: center;
}
.cuidados-txt { width: 90%; padding: 0 15px; }
.cuidados-img { width: 45%; padding: 0 15px; }
@media (max-width: 767px) {
  .cuidados-txt, .cuidados-img { width: 100%; }
  .cuidados-img { margin-top: 32px; }
}

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

.cuidados-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
}
.cuidados-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.cuidados-list li:first-child { padding-top: 0; }
.cuidados-list li:last-child  { border-bottom: none; padding-bottom: 0; }
.cuidados-list li i { color: var(--accent); font-size: 14px; margin-top: 3px; flex-shrink: 0; }

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