/* =========================================
   PÁGINA: ÁCIDO HIALURÔNICO
   Herda style.css — aqui só o que é específico
========================================= */

/* ---- Título da página ---- */
.section-title { padding: 150px 0 40px; }
@media (max-width: 767px) { .section-title { padding: 120px 0 30px; } }

/* =========================================
   HERO: INTRO SPLIT
   Esquerda: texto + destaque numérico
   Direita: foto com tag flutuante
========================================= */
.section-hero {
  float: left;
  width: 100%;
  background: var(--bg);
  padding: 60px 0 70px;
}
.hero-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: center;
  gap: 0;
}
.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-stats {
  display: flex;
  gap: 36px;
  margin: 32px 0 36px;
}
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-top: 4px;
}
@media (max-width: 575px) {
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 32px; }
}

/* Foto com badge flutuante */
.hero-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.hero-photo-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 8px 24px rgba(91,48,0,0.25);
  max-width: 220px;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.hero-badge span {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 3px;
  display: block;
}
@media (max-width: 767px) {
  .hero-badge { left: 10px; bottom: -14px; padding: 12px 16px; max-width: 190px; }
}

/* =========================================
   ÁREAS DE APLICAÇÃO
   Grid de rostos / zonas com hover
========================================= */
.section-areas {
  float: left;
  width: 100%;
  background: #fff;
  padding: 80px 0;
}
.section-areas h4 { color: var(--primary); }
.section-areas h2 { color: var(--dark); margin-bottom: 10px; }
.section-areas .section-intro {
  max-width: 620px;
  margin-bottom: 50px;
  color: var(--text);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.area-card {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) { .area-card { width: 50%; } }
@media (max-width: 400px)  { .area-card { width: 100%; } }

.area-card-inner {
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 22px;
  height: 100%;
  background: var(--bg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.area-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,48,0,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.area-card-inner:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(91,48,0,0.1);
}
.area-card-inner:hover::before { opacity: 1; }

.area-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}
.area-card-inner h3 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 8px;
}
.area-card-inner p {
  font-size: 13px;
  color: var(--text);
  margin: 0;
  line-height: 1.55;
}

/* =========================================
   COMO FUNCIONA — SEÇÃO ESCURA
   Steps horizontais com linha conectora
========================================= */
.section-como {
  float: left;
  width: 100%;
  background: var(--dark);
  padding: 80px 0;
}
.section-como h4 { color: var(--accent); }
.section-como h2 { color: var(--white); margin-bottom: 50px; }

.steps-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  position: relative;
}
/* linha conectora só desktop */
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: rgba(215,157,131,0.3);
  z-index: 0;
}
@media (max-width: 767px) { .steps-row::before { display: none; } }

.step-item {
  width: 25%;
  padding: 0 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .step-item {
    width: 50%;
    margin-bottom: 32px;
  }
}
@media (max-width: 400px) { .step-item { width: 100%; } }

.step-num {
  width: 72px;
  height: 72px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-item h3 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 10px;
}
.step-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* CTA no final da seção */
.como-cta {
  text-align: center;
  margin-top: 56px;
}
.como-cta .bt { justify-content: center; }

/* =========================================
   PERGUNTAS FREQUENTES — ACCORDION
========================================= */
.section-faq {
  float: left;
  width: 100%;
  background: var(--bg);
  padding: 80px 0;
}
.section-faq h4 { color: var(--primary); }
.section-faq h2 { color: var(--dark); margin-bottom: 40px; }

.faq-wrap { max-width: 780px; }

.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item:first-of-type { border-top: 1px solid var(--border-light); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  user-select: none;
  transition: color 0.3s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--primary); }
.faq-question.open { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-icon i { color: var(--white); font-size: 12px; }
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0 0;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 0 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

/* =========================================
   ESPECIALIDADE EM LÁBIOS
========================================= */

.section-labios{
    float:left;
    width:100%;
    padding:90px 0;
    background:linear-gradient(180deg,#fdf8f5 0%,#ffffff 100%);
    position:relative;
}

.section-labios::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
}

.section-labios h4{
    color:var(--primary);
}

.section-labios h2{
    margin-bottom:18px;
}

.section-labios .section-intro{
    max-width:700px;
    margin-bottom:55px;
}

.section-labios .area-card-inner{
    background:#fff;
    border:none;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.section-labios .area-card-inner:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(91,48,0,.12);
}

.section-labios .area-icon{
    background:linear-gradient(135deg,var(--primary),var(--accent));
}

.texto-centro{
    margin:60px auto 0;
    max-width:900px;
    text-align:center;
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.texto-centro h3{
    margin-bottom:18px;
}

.texto-centro strong{
    color:var(--primary);
}