/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #021F4F;
  --navy2:     #0A2E6E;
  --gold:      #C9A84C;
  --gold2:     #E0C47A;
  --cream:     #F7F2EC;
  --nude:      #E8D5C4;
  --dark:      #0D0F18;
  --mid:       #5A5A5A;
  --white:     #FFFFFF;
  --gray:      #999;
  --font-s:    'Playfair Display', Georgia, serif;
  --font-b:    'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  color: var(--dark);
  background: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

em { font-style: italic; color: var(--gold); }
s  { color: var(--gray); font-size: 0.9em; }
a  { text-decoration: none; }

.tag-line {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tag-line.light { color: var(--gold2); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 24px 48px;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.header.scrolled {
  background: rgba(2, 31, 79, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 160px;
  width: auto;
  mix-blend-mode: screen;
}

.logo-img.footer-logo-img {
  height: 44px;
}

.logo-name {
  display: block;
  font-family: var(--font-s);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold2) !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy2);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% top;
  mix-blend-mode: luminosity;
  opacity: 0.85;
  display: block;
  transform: scaleX(-1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(2,31,79,0.75) 0%, rgba(2,31,79,0.4) 50%, rgba(2,31,79,0.05) 100%),
    linear-gradient(to top, rgba(13,15,24,0.6) 0%, transparent 35%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 48px 120px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-content { max-width: 640px; }

.hero-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 40px;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-family: var(--font-s);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  border-radius: 3px;
  transition: all 0.25s;
  text-transform: uppercase;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}

.btn-gold.large { font-size: 0.9rem; padding: 20px 52px; }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: 3px;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(2, 31, 79, 0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 28px 48px;
}

.hstat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.hstat strong {
  display: block;
  font-family: var(--font-s);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hstat strong span { font-size: 1.4rem; }

.hstat > span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hstat-sep {
  width: 1px;
  height: 48px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}

/* ===== SOBRE ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--cream);
}

.about-photo-col {
  position: relative;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.about-photo-frame {
  position: relative;
  width: 78%;
  border: 2px solid var(--gold);
  padding: 10px;
  background: var(--cream);
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  pointer-events: none;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.about-quote-card {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--gold);
  border-radius: 4px 0 0 4px;
  padding: 24px 28px;
  max-width: 280px;
  box-shadow: -8px 8px 32px rgba(0,0,0,0.3);
}

.quote-mark {
  font-family: var(--font-s);
  font-size: 3rem;
  color: var(--navy);
  opacity: 0.3;
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
}

.about-quote-card p {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-quote-card strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
}

.about-text-col {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.about-text-col h2 {
  font-family: var(--font-s);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text-col p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.pillars {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(2,31,79,0.08);
}

.pillar-item:last-child { border-bottom: none; padding-bottom: 0; }

.pillar-num {
  font-family: var(--font-s);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.pillar-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.pillar-item span { font-size: 0.82rem; color: var(--mid); }

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

.features-header {
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 0 48px;
}

.features-header h2 {
  font-family: var(--font-s);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-item {
  padding: 48px 40px;
  border-left: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  display: flex;
  gap: 20px;
  transition: background 0.3s;
}

.feature-item:hover { background: rgba(201,168,76,0.04); }

.feature-item:nth-child(1),
.feature-item:nth-child(2),
.feature-item:nth-child(3) { border-top: 1px solid rgba(201,168,76,0.12); }

.feature-item:nth-child(3n) { border-right: 1px solid rgba(201,168,76,0.12); }

.feature-number {
  font-family: var(--font-s);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
}

.feature-body h3 {
  font-family: var(--font-s);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===== PLANOS ===== */
.plans {
  background: var(--cream);
  padding: 100px 0;
}

.plans-header {
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 48px;
}

.plans-header h2 {
  font-family: var(--font-s);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.plans-track {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan {
  background: var(--white);
  border: 1px solid rgba(2,31,79,0.1);
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.plan:hover {
  box-shadow: 0 16px 48px rgba(2,31,79,0.1);
  transform: translateY(-4px);
}

.plan-highlight {
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(2,31,79,0.2);
  transform: translateY(-8px);
}

.plan-highlight:hover { transform: translateY(-12px); }

.plan-badge-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-top { margin-bottom: 24px; }

.plan-label {
  display: block;
  font-family: var(--font-s);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.plan-highlight .plan-label { color: var(--gold); }

.plan-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.5;
}

.plan-highlight .plan-desc { color: rgba(255,255,255,0.55); }

.plan-price-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(2,31,79,0.08);
}

.plan-highlight .plan-price-block { border-bottom-color: rgba(255,255,255,0.1); }

.plan-price-block s { color: var(--gray); font-size: 0.85rem; display: block; margin-bottom: 4px; }

.plan-price {
  font-family: var(--font-s);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-highlight .plan-price { color: var(--white); }

.plan-price-block > span {
  font-size: 0.75rem;
  color: var(--gray);
}

.plan-highlight .plan-price-block > span { color: rgba(255,255,255,0.4); }

.plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.plan-list li {
  font-size: 0.84rem;
  color: var(--mid);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(2,31,79,0.06);
  line-height: 1.4;
}

.plan-list li:last-child { border-bottom: none; }

.plan-highlight .plan-list li {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.07);
}

.plan-list li::first-letter { color: var(--gold); }

.plan-list-highlight {
  background: rgba(201, 168, 76, 0.12) !important;
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  margin: 4px 0 !important;
}

.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 15px;
  border-radius: 4px;
  transition: all 0.25s;
  text-transform: uppercase;
}

.plan-btn.outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.plan-btn.outline:hover { background: var(--navy); color: var(--white); }

.plan-btn.gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.plan-btn.gold:hover { background: var(--gold2); transform: translateY(-1px); }

.plans-guarantee {
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 48px;
  font-size: 0.85rem;
  color: var(--mid);
  text-align: center;
}

.plans-guarantee strong { color: var(--navy); }

/* ===== DEPOIMENTO HERO ===== */
.testimonial-hero {
  background: var(--dark);
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 100%;
}

.th-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
  padding-left: calc((100vw - 1280px) / 2);
  padding-left: max(48px, calc((100vw - 1280px) / 2));
}

.th-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 24px; }
.th-stars.small { font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 12px; }

.th-inner blockquote {
  font-family: var(--font-s);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 24px;
}

.th-inner blockquote strong { color: var(--gold); font-style: normal; }

.th-inner cite, .th-card cite {
  font-size: 0.78rem;
  font-style: normal;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

.th-more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-right: max(48px, calc((100vw - 1280px) / 2));
  border-left: 1px solid rgba(201,168,76,0.15);
  padding-left: 80px;
}

.th-card {
  padding: 28px 32px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  transition: border-color 0.25s;
}

.th-card:hover { border-color: rgba(201,168,76,0.35); }

.th-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--navy);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-s);
  font-size: clamp(200px, 30vw, 400px);
  font-weight: 900;
  color: rgba(201,168,76,0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-logo {
  height: 200px;
  width: auto;
  mix-blend-mode: screen;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
}

.cta-inner h2 {
  font-family: var(--font-s);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 480px;
}

.cta-trust {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-trust span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.footer {
  background: #020A1A;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo { justify-content: center; }

.footer .logo-name { color: var(--white); }

.footer p {
  font-size: 0.78rem;
  color: #444;
}

.footer-links a {
  color: #444;
  font-size: 0.78rem;
  margin: 0 6px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2n) { border-right: 1px solid rgba(201,168,76,0.12); }
  .feature-item:nth-child(3) { border-right: none; }
  .testimonial-hero { grid-template-columns: 1fr; padding: 80px 32px; }
  .th-inner { padding-left: 0; max-width: 100%; }
  .th-more { padding-left: 0; border-left: none; border-top: 1px solid rgba(201,168,76,0.15); padding-top: 40px; }
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about-photo-col { min-height: 60vw; }
  .about-quote-card { right: 20px; }
  .about-text-col { padding: 60px 32px; }
  .plans-track { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .plan-highlight { transform: none; }
  .plan-highlight:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .header { padding: 20px 24px; }
  .header.scrolled { padding: 14px 24px; }
  .nav a:not(.nav-cta) { display: none; }
  .hero-inner { padding: 120px 24px 80px; flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .hero-stats { flex-direction: column; gap: 0; padding: 32px 24px; }
  .hstat { padding: 16px 0; }
  .hstat-sep { width: 100%; height: 1px; }
  .features-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .feature-item:nth-child(n) { border-right: 1px solid rgba(201,168,76,0.12); }
  .features-header, .plans-header, .plans-track, .plans-guarantee { padding-left: 24px; padding-right: 24px; }
  .cta-final { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-ghost { text-align: center; }
}
