/* ============================================================
   Templum.digital — Site Institucional · main.css
   Paleta: azul #050e1f · dourado #c4a04c · texto #e8edf5
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #050e1f;
  --navy-mid:    #0a1628;
  --navy-light:  #0f2040;
  --gold:        #c4a04c;
  --gold-hi:     #e8c87a;
  --gold-dim:    #8a6f30;
  --gold-glow:   rgba(196,160,76,.15);
  --txt:         #e8edf5;
  --txt-dim:     rgba(232,237,245,.6);
  --txt-muted:   rgba(232,237,245,.35);
  --border:      rgba(196,160,76,.12);
  --border-hi:   rgba(196,160,76,.28);
  --white:       #ffffff;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --trans:       .22s cubic-bezier(.4,0,.2,1);
  --max-w:       1140px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy);
  color: var(--txt);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Tipografia ── */
.display {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}

h1, h2, h3 { font-family: 'Cinzel', serif; font-weight: 700; line-height: 1.2; }

/* ── Ornamento maçônico SVG inline ── */
.masonic-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 48px;
  max-width: 300px;
}
.masonic-divider::before,
.masonic-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.masonic-divider svg {
  flex-shrink: 0;
  opacity: .7;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: .6;
}

/* ── Section ── */
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--txt);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--txt-dim);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  font-family: inherit;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(196,160,76,.25);
}
.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,160,76,.4);
}
.btn-outline {
  background: transparent;
  color: var(--txt);
  border: 1px solid var(--border-hi);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
  background: var(--gold-glow);
}
.btn-sm {
  padding: 10px 20px;
  font-size: .82rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(5,14,31,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.header-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  /*gap: 10px;*/
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  /*width: 36px; height: 36px;*/
  /*background: linear-gradient(135deg, var(--gold), var(--gold-dim));*/
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--navy);
  /*box-shadow: 0 0 0 3px rgba(196,160,76,.2);*/
}
.logo-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: .95rem;
  /*color: var(--gold-hi);*/
  color: #ffffff;
  letter-spacing: .06em;
  line-height: 1.1;
}
.logo-name small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  /*font-weight: 400;*/
  letter-spacing: .18em;
  /*color: var(--txt-muted);*/
  color: #c4a04c;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.site-nav a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--txt-dim);
  text-decoration: none;
  transition: color var(--trans);
}
.site-nav a:hover { color: var(--gold-hi); }
.site-nav a.active { color: var(--gold); }
.nav-cta {
  margin-left: auto;
}
.hamburger {
  display: none;
  background: none; border: none;
  color: var(--txt); cursor: pointer;
  padding: 6px; margin-left: auto;
}
.hamburger svg { width: 24px; height: 24px; }

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(5,14,31,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 998;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--txt-dim);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  transition: all var(--trans);
}
.mobile-nav a:hover { background: var(--gold-glow); color: var(--gold-hi); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Fundo geométrico — pilares dourados sutis */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,160,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(196,160,76,.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(10,22,40,.8) 0%, transparent 60%);
  pointer-events: none;
}

/* Grade de pontos */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196,160,76,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(196,160,76,.1);
  border: 1px solid var(--border-hi);
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--txt);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--txt-dim);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: var(--txt-muted);
  margin-top: 4px;
}

/* Card flutuante no hero */
.hero-visual {
  position: relative;
}
.hero-card {
  background: rgba(10,22,40,.9);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(196,160,76,.08),
    0 32px 64px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(196,160,76,.12);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hch-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.hch-dot-r { background: #ff5f57; }
.hch-dot-y { background: #febc2e; }
.hch-dot-g { background: #28c840; }
.hch-title {
  font-size: .78rem;
  color: var(--txt-muted);
  margin-left: 4px;
}
.hero-card-kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.kpi-mini {
  background: rgba(196,160,76,.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.kpi-mini-value {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.kpi-mini-label {
  font-size: .68rem;
  color: var(--txt-muted);
  margin-top: 4px;
}
.hero-card-list { display: flex; flex-direction: column; gap: 8px; }
.hcl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: var(--txt-dim);
  padding: 8px 10px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: all var(--trans);
}
.hcl-item:hover {
  border-color: var(--border);
  background: rgba(196,160,76,.04);
}
.hcl-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.hcl-check {
  margin-left: auto;
  color: var(--gold);
  font-size: .75rem;
}

/* Float animation */
.hero-visual { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ============================================================
   LOGOS / CONFIANÇA
   ============================================================ */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10,22,40,.5);
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt-muted);
  flex-shrink: 0;
  margin-right: 12px;
}
.trust-items {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--txt-muted);
  font-weight: 500;
}
.trust-item svg { opacity: .5; }
.trust-item:hover { color: var(--txt-dim); }
.trust-item:hover svg { opacity: .7; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--navy); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(10,22,40,.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.feature-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid var(--border-hi);
}
.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: .85rem;
  color: var(--txt-dim);
  line-height: 1.65;
}
.feature-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  color: var(--txt-dim);
  list-style: none;
}
.feature-list li::before {
  content: '◆';
  font-size: .5rem;
  color: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
}

/* ============================================================
   CORPOS / TIPOS DE LOJA
   ============================================================ */
.bodies {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
}
.bodies-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.body-card {
  background: rgba(196,160,76,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--trans);
  cursor: default;
}
.body-card:hover {
  background: rgba(196,160,76,.08);
  border-color: var(--border-hi);
  transform: translateY(-2px);
}
.body-degree {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.body-range {
  font-size: .65rem;
  color: var(--txt-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.body-name {
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 6px;
  line-height: 1.3;
}
.body-rito {
  font-size: .7rem;
  color: var(--txt-muted);
  line-height: 1.4;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--navy);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: .3;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.how-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--navy), 0 0 24px rgba(196,160,76,.2);
}
.how-step-title {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
}
.how-step-desc {
  font-size: .82rem;
  color: var(--txt-dim);
  line-height: 1.6;
}

/* ============================================================
   PRICING / PLANOS
   ============================================================ */
.pricing {
  background: var(--navy-mid);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  background: rgba(5,14,31,.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--trans);
}
.plan-card.featured {
  border-color: var(--gold);
  background: rgba(10,22,40,.95);
  box-shadow: 0 0 0 1px rgba(196,160,76,.2), 0 24px 48px rgba(0,0,0,.4);
  position: relative;
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
}
.plan-desc {
  font-size: .8rem;
  color: var(--txt-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.plan-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan-price-value {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.plan-price-period {
  font-size: .75rem;
  color: var(--txt-muted);
  margin-top: 4px;
}
.plan-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .83rem;
  color: var(--txt-dim);
}
.plan-features li .check {
  color: var(--gold);
  flex-shrink: 0;
  font-size: .8rem;
  margin-top: 2px;
}
.plan-features li .cross { color: var(--txt-muted); flex-shrink: 0; font-size: .8rem; margin-top: 2px; }
.plan-cta { width: 100%; justify-content: center; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials {
  background: var(--navy);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(10,22,40,.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--trans);
}
.testimonial-card:hover {
  border-color: var(--border-hi);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: .8rem;
}
.testimonial-text {
  font-size: .88rem;
  color: var(--txt-dim);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-text::before { content: '"'; }
.testimonial-text::after  { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--txt);
}
.testimonial-role {
  font-size: .72rem;
  color: var(--txt-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(196,160,76,.08) 0%, transparent 70%),
    var(--navy-mid);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--txt);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: var(--txt-dim);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #030b18;
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: .84rem;
  color: var(--txt-muted);
  margin-top: 14px;
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .84rem;
  color: rgba(232,237,245,.45);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--gold-hi); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: .76rem;
  color: var(--txt-muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: .76rem;
  color: var(--txt-muted);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   PÁGINAS INTERNAS — GERAL
   ============================================================ */
.page-hero {
  padding: 140px 24px 72px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(196,160,76,.06) 0%, transparent 70%),
    var(--navy);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--txt);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--txt-dim);
  max-width: 520px;
  margin: 0 auto;
}
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* ============================================================
   FORMULÁRIOS
   ============================================================ */
.form-section { background: var(--navy-mid); }
.form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: rgba(10,22,40,.8);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.field-group {
  margin-bottom: 20px;
}
.field-group label {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-bottom: 7px;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-hi);
  border-radius: 9px;
  color: var(--txt);
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,160,76,.12);
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: rgba(232,237,245,.2); }
.field-group select { cursor: pointer; }
.field-group select option { background: var(--navy-mid); }
.field-group textarea { resize: vertical; min-height: 120px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%; justify-content: center;
  margin-top: 8px;
}

/* Feedback flash */
.form-feedback {
  padding: 14px 18px;
  border-radius: 9px;
  font-size: .85rem;
  margin-bottom: 20px;
  display: none;
}
.form-feedback.success {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  color: #6ee7b7;
}
.form-feedback.error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { background: var(--navy); }
.faq-list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.open { border-color: var(--border-hi); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(10,22,40,.5);
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--txt);
  font-size: .92rem;
  font-weight: 600;
  font-family: inherit;
  transition: background var(--trans);
}
.faq-q:hover { background: rgba(196,160,76,.05); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: var(--gold);
  transition: transform var(--trans);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 18px;
}
.faq-a p {
  font-size: .86rem;
  color: var(--txt-dim);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .bodies-grid    { grid-template-columns: repeat(3, 1fr); }
  .how-steps      { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-steps::before { display: none; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-inner .hero-desc  { max-width: 100%; }
  .hero-actions           { justify-content: center; }
  .hero-stats             { justify-content: center; }
  .hero-visual            { display: none; }
  .site-nav               { display: none; }
  .hamburger              { display: flex; }
  .nav-cta                { display: none; }
  .features-grid          { grid-template-columns: 1fr; }
  .bodies-grid            { grid-template-columns: repeat(2, 1fr); }
  .how-steps              { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .testimonials-grid      { grid-template-columns: 1fr; }
  .footer-grid            { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom          { flex-direction: column; text-align: center; }
  .field-row              { grid-template-columns: 1fr; }
  .form-wrap              { padding: 28px 20px; }
  .trust-inner            { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
