/* =========================================
   PÁGINA: SKINBOOSTER E HIDRATAÇÃO INJETÁVEL
   Herda style.css — aqui só o que é específico
========================================= */

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

/* =========================================
   HERO: foto à esquerda, texto à direita
========================================= */
.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-img { width: 45%; padding: 0 15px; }
.hero-txt { width: 55%; padding: 0 15px; }

@media (max-width: 767px) {
  .hero-txt, .hero-img { width: 100%; }
  .hero-img { margin-bottom: 36px; }
}

/* Foto com badge flutuante */
.hero-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.hero-photo-wrap img {
  width: 90%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  right: -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 { right: 10px; bottom: -14px; padding: 12px 16px; max-width: 190px; }
}

/* =========================================
   BENEFÍCIOS
========================================= */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 50px;
}
.benefit-item {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.benefit-icon {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 14px;
}
.benefit-item h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.benefit-item p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .benefit-item { flex: 1 1 calc(50% - 12px); }
}
@media (max-width: 480px) {
  .benefit-item { flex: 1 1 100%; }
}

/* =========================================
   TABS: SKINBOOSTER | HIDRATAÇÃO INJETÁVEL
========================================= */
.section-tabs {
  float: left; width: 100%;
  background: var(--white);
  padding: 80px 0;
}
.section-tabs h4 { color: var(--primary); }
.section-tabs h2 { color: var(--dark); margin-bottom: 8px; }
.tabs-intro { color: var(--text); max-width: 580px; margin-bottom: 40px; }

.tab-nav {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 40px;
}
.tab-btn {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: var(--text);
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 14px 28px; cursor: pointer;
  border: none; background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.tab-btn:hover  { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
@media (max-width: 575px) { .tab-btn { font-size: 12px; padding: 12px 16px; } }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-content-row {
  display: flex; flex-wrap: wrap;
  margin: 0 -15px; align-items: flex-start;
}
.tab-col-txt  { width: 50%; padding: 0 15px; }
.tab-col-list { width: 50%; padding: 0 15px; }
@media (max-width: 767px) {
  .tab-col-txt, .tab-col-list { width: 100%; }
  .tab-col-txt { margin-bottom: 32px; }
}
.tab-col-txt h3 { font-size: 26px; color: var(--dark); margin-bottom: 16px; }
.tab-col-txt p  { color: var(--text); font-size: 15px; line-height: 1.7; }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.feature-list li:first-child { padding-top: 0; }
.feature-list li:last-child  { border-bottom: none; }
.feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--primary);
}
.feature-txt h4 { font-size: 14px; color: var(--dark); margin-bottom: 4px; text-transform: none; font-family: var(--font-head); }
.feature-txt p  { font-size: 13px; color: var(--text); margin: 0; line-height: 1.55; }

/* =========================================
   COMO FUNCIONA — SEÇÃO ESCURA
   Numeração grande lateral
========================================= */
.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: 48px; }

.como-steps { display: flex; flex-direction: column; gap: 0; max-width: 820px; }
.como-step {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.como-step:first-child { padding-top: 0; }
.como-step:last-child  { border-bottom: none; }
.como-step-num {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 700;
  color: rgba(215,157,131,0.25);
  line-height: 1; min-width: 60px; flex-shrink: 0;
  transition: color 0.3s ease;
}
.como-step:hover .como-step-num { color: var(--accent); }
.como-step-body h3 { font-size: 18px; color: var(--white); margin-bottom: 8px; }
.como-step-body p  { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.7; }

.como-cta { margin-top: 52px; }
.como-cta .bt { justify-content: flex-start; }

/* =========================================
   INDICAÇÕES — CHIPS/TAGS
========================================= */
.section-indicacoes {
  float: left; width: 100%;
  background: var(--bg);
  padding: 80px 0;
}
.section-indicacoes h4 { color: var(--primary); }
.section-indicacoes h2 { color: var(--dark); margin-bottom: 8px; }
.ind-sub { color: var(--text); max-width: 560px; margin-bottom: 40px; }

.ind-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.ind-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 14px; color: var(--text);
  font-family: var(--font-head); font-weight: 700;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.ind-chip i { color: var(--accent); font-size: 14px; }
.ind-chip:hover { border-color: var(--primary); color: var(--primary); }

.ind-note {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  max-width: 680px;
  box-shadow: 0 4px 14px rgba(91,48,0,0.06);
}
.ind-note i { color: var(--accent); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.ind-note p { font-size: 14px; color: var(--text); margin: 0; line-height: 1.65; }

/* =========================================
   FAQ — ACCORDION
   Fundo branco (diferente do bio que usa var(--bg))
========================================= */
.section-faq {
  float: left; width: 100%;
  background: var(--white);
  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;
}
.faq-answer.open { max-height: 320px; padding: 0 0 20px; }
.faq-answer p { font-size: 14px; color: var(--text); line-height: 1.7; margin: 0; }