/* =========================================
   PÁGINA: FLACIDEZ CORPORAL
   Tratamento corporal. Herda style.css
   Sem foto, sem FAQ
========================================= */

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

/* =========================================
   HERO: SPLIT TEXTO + PAINEL DE GRAUS
   Layout diferente do ultraformer
   (lá era centralizado, aqui é dividido)
========================================= */
.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: stretch;
  gap: 0;
}
.hero-txt { width: 55%; padding: 0 15px; display: flex; flex-direction: column; justify-content: center; }
.hero-panel { width: 45%; padding: 0 15px; }
@media (max-width: 767px) {
  .hero-txt, .hero-panel { width: 100%; }
  .hero-panel { margin-top: 36px; }
}

/* Painel com graus de flacidez */
.graus-panel {
  background: var(--white);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  border: 1.5px solid var(--border-light);
}
.graus-panel h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 22px;
}
.grau-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.grau-item:first-of-type { padding-top: 0; }
.grau-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.grau-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.grau-item-head span {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.grau-bar {
  height: 6px;
  background: var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}
.grau-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 6px;
}
.grau-item p {
  font-size: 13px;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* =========================================
   BREADCRUMB (sem o h1 agora)
========================================= */
.section-title {
  float: left;
  width: 100%;
  background: var(--bg);
  padding: 130px 0 0;          /* só o espaço do header fixo */
}
@media (max-width: 767px) { .section-title { padding-top: 100px; } }

#breadcrumbs {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 0;
}
#breadcrumbs a { color: var(--primary); }
#breadcrumbs a:hover { text-decoration: underline; }

/* =========================================
   BANNER COMPACTO
========================================= */
.section-banner {
  float: left;
  width: 100%;
  background: var(--bg);
  padding: 20px 0 0;
}

.page-banner {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* Gradiente: transparente em cima → marrom escuro em baixo */
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 10, 0, 0.10) 0%,
    rgba(30, 10, 0, 0.65) 60%,
    rgba(30, 10, 0, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 40px;
}

.page-banner-tag {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.page-banner h1 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.page-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 520px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .page-banner { height: 220px; border-radius: 14px; }
  .page-banner-overlay { padding: 24px 22px; }
  .page-banner h1 { font-size: 26px; }
  .page-banner p { font-size: 14px; }
}

/* =========================================
   CAUSAS DA FLACIDEZ — GRID DE 3 COLUNAS
   (diferente das listas em linha do ultraformer)
========================================= */
.section-causas {
  float: left;
  width: 100%;
  background: var(--white);
  padding: 80px 0;
}
.section-causas h4 { color: var(--primary); }
.section-causas h2 { color: var(--dark); margin-bottom: 8px; }
.causas-sub {
  color: var(--text);
  max-width: 600px;
  margin-bottom: 48px;
}

.causas-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.causa-item {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) { .causa-item { width: 50%; } }
@media (max-width: 480px)  { .causa-item { width: 100%; } }

.causa-item-inner {
  background: var(--bg);
  border-radius: 14px;
  padding: 26px 22px;
  height: 100%;
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.causa-item-inner:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.causa-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.causa-item-inner h3 {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 8px;
}
.causa-item-inner p {
  font-size: 13px;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* =========================================
   ABORDAGENS DE TRATAMENTO — SEÇÃO ESCURA
   Cards verticais (diferente da lista
   de camadas do ultraformer)
========================================= */
.section-abordagens {
  float: left;
  width: 100%;
  background: var(--dark);
  padding: 80px 0;
}
.section-abordagens h4 { color: var(--accent); }
.section-abordagens h2 { color: var(--white); margin-bottom: 8px; }
.abordagens-sub {
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin-bottom: 48px;
}

.abordagens-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.abordagem-card {
  width: 25%;
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 991px) { .abordagem-card { width: 50%; } }
@media (max-width: 480px)  { .abordagem-card { width: 100%; } }

.abordagem-card-inner {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  text-align: center;
  transition: background 0.3s ease;
}
.abordagem-card-inner:hover { background: rgba(215,157,131,0.1); }

.abordagem-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.abordagem-card-inner h3 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}
.abordagem-card-inner p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.6;
}

.abordagens-cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

/* =========================================
   PROTOCOLO PERSONALIZADO
   Tabela simples de fatores avaliados
========================================= */
.section-protocolo {
  float: left;
  width: 100%;
  background: var(--bg);
  padding: 80px 0;
}
.section-protocolo h4 { color: var(--primary); }
.section-protocolo h2 { color: var(--dark); margin-bottom: 8px; }
.protocolo-sub {
  color: var(--text);
  max-width: 620px;
  margin-bottom: 48px;
}

.fator-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}
.fator-row:first-of-type { border-top: 1px solid var(--border-light); }

.fator-nome {
  width: 30%;
  padding: 0 15px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.fator-desc {
  width: 70%;
  padding: 0 15px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
@media (max-width: 767px) {
  .fator-nome, .fator-desc { width: 100%; }
  .fator-nome { margin-bottom: 8px; }
}
