/* ============================================================
   PÁGINAS INTERNAS – CSS ADICIONAL
   Complementa o style.css principal
   ============================================================ */

/* ── BREADCRUMB ── */
.breadcrumb-nav {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.75rem 0;
  margin-top: 70px;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb li::after {
  content: ' /';
  margin-left: 0.4rem;
  opacity: 0.5;
}

.breadcrumb li:last-child::after { content: ''; }

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--gold-light); }

/* ── PAGE CONTENT ── */
.page-content {
  min-height: calc(100vh - 70px - 80px);
  background: var(--violet-deep);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 4rem 0 3rem;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(74,40,120,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

/* ── LOCAL HERO ── */
.local-hero {
  background: var(--grad-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
}

.local-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(74,40,120,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(6,95,70,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.local-hero .container { position: relative; z-index: 1; }

.local-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ── LOCAL CONTENT GRID ── */
.local-text-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.local-text-main h2 {
  font-size: 1.4rem;
  color: var(--white);
  margin: 2rem 0 1rem;
  font-family: var(--font-display);
}

.local-text-main h2:first-child { margin-top: 0; }

.local-text-main p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.local-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
}

.local-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.local-list li i {
  color: var(--emerald-light);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.local-list li strong { color: var(--white); }

/* ── CITIES GRID ── */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.city-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  border-radius: 50px;
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.city-tag:hover {
  background: rgba(212,160,23,0.08);
  border-color: var(--border-gold);
  color: var(--gold-pale);
}

/* ── ORDER STEPS ── */
.order-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}

.order-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.order-steps li span {
  width: 26px;
  height: 26px;
  background: rgba(212,160,23,0.15);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ── SIDEBAR ── */
.local-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.local-contact-card {
  background: var(--grad-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}

.local-contact-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.local-contact-card h3 i { color: var(--gold-light); }

.lc-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.lc-item i { color: var(--emerald-light); width: 16px; flex-shrink: 0; }
.lc-item a { color: var(--text-muted); }
.lc-item a:hover { color: var(--gold-light); }

.local-links-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 1.25rem;
}

.local-links-card h4 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.local-links-card ul li { margin-bottom: 0.5rem; }

.local-links-card ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.local-links-card ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

/* ── LEGAL PAGES ── */
.legal-page .container {
  max-width: 860px;
  padding: 4rem 1.5rem;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.legal-page section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-soft);
}

.legal-page section:last-child { border-bottom: none; }

.legal-page h2 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.legal-page p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-page ul, .legal-page ol {
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0.5rem 0;
}

.legal-page li { margin-bottom: 0.4rem; }
.legal-page strong { color: var(--white); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--grad-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.contact-card.featured {
  border-color: rgba(37,211,102,0.4);
  background: linear-gradient(145deg, rgba(6,95,70,0.2), rgba(30,15,60,0.7));
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.contact-card.featured .contact-icon { margin: 0; }

.contact-icon { background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3); color: #25d366; }
.contact-icon.orcamento { background: rgba(212,160,23,0.1); border-color: var(--border-gold); color: var(--gold-light); }
.contact-icon.terapia { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.3); color: var(--purple-soft); }
.contact-icon.instagram { background: rgba(225,48,108,0.1); border-color: rgba(225,48,108,0.3); color: #e1306c; }
.contact-icon.youtube { background: rgba(255,0,0,0.1); border-color: rgba(255,0,0,0.25); color: #ff0000; }
.contact-icon.localizacao { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.3); color: var(--emerald-light); }

.contact-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.contact-card.featured h2 { margin-bottom: 0.4rem; }

.contact-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.contact-number {
  color: var(--gold-light);
  font-size: 1.1rem !important;
  margin-top: 0.75rem !important;
}

.contact-small {
  font-size: 0.78rem !important;
  margin-bottom: 0 !important;
}

/* ── PAGE CTA STRIP ── */
.page-cta-strip {
  background: linear-gradient(135deg, var(--emerald), var(--indigo));
  padding: 3rem 0;
  text-align: center;
}

.page-cta-strip p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

/* ── LOCAL FAQ ── */
.local-faq { background: var(--grad-purple); }

/* ── RESPONSIVE PAGES ── */
@media (max-width: 1024px) {
  .local-text-grid { grid-template-columns: 1fr; }
  .local-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .local-contact-card, .local-links-card { flex: 1; min-width: 260px; }
  .contact-card.featured { grid-column: span 1; grid-template-columns: 1fr; text-align: center; }
  .contact-card.featured .contact-icon { margin: 0 auto 1rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .local-text-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .local-sidebar { flex-direction: column; }
  .local-cta-group { flex-direction: column; align-items: center; }
  .local-cta-group .btn { width: 100%; max-width: 380px; justify-content: center; }
}
