/* =========================================
   PÁGINA: TECNOLOGIAS PARA REJUVENESCIMENTO
   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: texto à esquerda, foto à direita
   Faixa de categorias logo abaixo
========================================= */
.section-hero {
  float: left;
  width: 100%;
  background: var(--bg);
  padding: 64px 0 70px;
}
.hero-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 50px;
  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-txt h4 { color: var(--primary); }
.hero-txt h2 { color: var(--dark); margin-bottom: 18px; }
.hero-txt p { font-size: 17px; color: var(--text); line-height: 1.75; }
.hero-txt .bt { margin-top: 30px; }

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

/* Faixa de categorias */
.hero-categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}
.categoria-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 14px 22px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}
.categoria-item i { font-size: 16px; }
.categoria-item:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
@media (max-width: 575px) {
  .categoria-item { font-size: 11px; padding: 10px 16px; }
  .hero-categorias { justify-content: center; }
}

/* =========================================
   EQUIPAMENTOS — TABELA EM LISTA
   Linhas com nome, tecnologia e indicação
========================================= */
.section-equip {
  float: left;
  width: 100%;
  background: var(--white);
  padding: 80px 0;
}
.section-equip h4 { color: var(--primary); }
.section-equip h2 { color: var(--dark); margin-bottom: 8px; }
.equip-sub { color: var(--text); max-width: 600px; margin-bottom: 48px; }

.equip-list {
  border-top: 1px solid var(--border-light);
}
.equip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s ease;
}
.equip-row:hover { background: var(--bg); }

.equip-nome {
  width: 28%;
  padding: 0 15px;
}
.equip-nome h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 4px;
}
.equip-nome span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
}

.equip-desc {
  width: 72%;
  padding: 0 15px;
}
.equip-desc p {
  font-size: 14px;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.7;
}
.equip-desc p:last-child { margin-bottom: 0; }

html {
  scroll-behavior: smooth;
}

.equip-row {
  scroll-margin-top: 100px; /* ajuste conforme a altura do seu menu fixo */
}

.categoria-item {
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  .equip-nome, .equip-desc { width: 100%; }
  .equip-nome { margin-bottom: 14px; }
}

/* =========================================
   COMO ESCOLHER — SEÇÃO ESCURA
   Lista de critérios em formato vertical
========================================= */
.section-escolha {
  float: left;
  width: 100%;
  background: var(--dark);
  padding: 80px 0;
}
.section-escolha h4 { color: var(--accent); }
.section-escolha h2 { color: var(--white); margin-bottom: 8px; }
.escolha-sub { color: rgba(255,255,255,0.7); max-width: 600px; margin-bottom: 48px; }

.escolha-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.escolha-item {
  width: 25%;
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 767px) { .escolha-item { width: 50%; } }
@media (max-width: 400px)  { .escolha-item { width: 100%; } }

.escolha-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}
.escolha-item h3 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.escolha-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.7;
}

.escolha-cta {
  margin-top: 24px;
  display: flex;
}

/* =========================================
   PROTOCOLOS COMBINADOS
   Lista de combinações em duas colunas
========================================= */
.section-protocolos {
  float: left;
  width: 100%;
  background: var(--bg);
  padding: 80px 0;
}
.section-protocolos h4 { color: var(--primary); }
.section-protocolos h2 { color: var(--dark); margin-bottom: 8px; }
.protocolos-sub { color: var(--text); max-width: 600px; margin-bottom: 48px; }

.protocolos-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.protocolo-item {
  width: 50%;
  padding: 0 12px;
  margin-bottom: 20px;
}
@media (max-width: 767px) { .protocolo-item { width: 100%; } }

.protocolo-item-inner {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 24px 26px;
  height: 100%;
}
.protocolo-item-inner h3 {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 8px;
}
.protocolo-item-inner p {
  font-size: 13px;
  color: var(--text);
  margin: 0;
  line-height: 1.7;
}
