/* =========================================================
   MARIA FLAVIANA — 5 Arquivos da Riqueza das Divas
   Design Premium: Preto · Dourado · Branco · Vinho
   ========================================================= */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Colors */
  --black:       #0a0a0a;
  --black-rich:  #111111;
  --black-soft:  #1a1a1a;
  --black-mid:   #222222;
  --white:       #ffffff;
  --white-soft:  #f9f5ee;
  --white-cream: #fdf8f0;

  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-bright: #f5d87f;
  --gold-dark:   #9a7a2e;
  --gold-muted:  rgba(201, 168, 76, 0.15);
  --gold-glow:   rgba(201, 168, 76, 0.35);

  --wine:        #722f37;
  --wine-light:  #a0404a;
  --wine-muted:  rgba(114, 47, 55, 0.15);

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container:   1200px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.25), 0 4px 24px rgba(0,0,0,0.4);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color 0.2s; }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* ---- CONTAINER ---- */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: var(--black);
  border: 1px solid var(--gold-light);
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  color: var(--black);
}

.btn-glow {
  box-shadow: 0 0 20px var(--gold-glow), 0 4px 15px rgba(0,0,0,0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.6), 0 0 80px rgba(201, 168, 76, 0.2), 0 8px 25px rgba(0,0,0,0.4);
}

.btn-nav {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
}

.btn-nav:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.78rem; }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 0.9rem; width: 100%; justify-content: center; }

.btn-arrow {
  width: 18px; height: 18px;
  transition: transform 0.3s var(--ease-smooth);
  flex-shrink: 0;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---- SECTION SHARED ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-muted);
  background: var(--gold-muted);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.title-left { text-align: left; }

.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.7;
}

.highlight-gold { color: var(--gold); }
.highlight-wine  { color: var(--wine-light); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2), 0 4px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ---- HERO ---- */
.hero {
  min-height: 100svh;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(114,47,55,0.1) 0%, transparent 60%),
    var(--black-rich);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Particles */
.hero-bg-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), transparent);
  opacity: 0.08;
  animation: float-particle linear infinite;
}

.p1 { width: 300px; height: 300px; top: -100px; right: 20%; animation-duration: 18s; }
.p2 { width: 150px; height: 150px; bottom: 10%; left: 5%; animation-duration: 13s; animation-delay: -4s; }
.p3 { width: 80px;  height: 80px;  top: 30%;    left: 45%; animation-duration: 10s; animation-delay: -7s; }
.p4 { width: 200px; height: 200px; top: 60%;    right: 5%; animation-duration: 22s; animation-delay: -2s; }
.p5 { width: 60px;  height: 60px;  top: 15%;   left: 25%; animation-duration: 9s;  animation-delay: -5s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.05; }
  50%       { transform: translateY(-30px) scale(1.1); opacity: 0.12; }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.7); }
  50%       { box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}

/* Hero Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Mini Proofs */
.mini-proofs {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.mini-proof-item { display: flex; flex-direction: column; gap: 0.15rem; }
.mini-proof-num  { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.mini-proof-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.mini-proof-divider { width: 1px; height: 36px; background: rgba(201,168,76,0.25); }

/* Capture Card */
.capture-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

.capture-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 8px 8px 0 0;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.capture-form { display: flex; flex-direction: column; gap: 0.85rem; }

.input-group { display: flex; flex-direction: column; }

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  width: 18px; height: 18px;
  color: var(--gold);
  opacity: 0.7;
  pointer-events: none;
  flex-shrink: 0;
}

.input-wrapper input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all 0.25s;
  outline: none;
}

.input-wrapper input::placeholder { color: rgba(255,255,255,0.35); }

.input-wrapper input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper:focus-within .input-icon { opacity: 1; }

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
  text-align: center;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

.hero-image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: var(--shadow-gold);
  max-width: 460px;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) contrast(1.05);
}

.hero-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 6px;
  padding: 0.6rem 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.img-badge-inner {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  animation: scroll-hint-fade 2s ease-in-out infinite;
}

@keyframes scroll-hint-fade {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.7; transform: translateX(-50%) translateY(5px); }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ---- DOR SECTION ---- */
.dor-section {
  padding: var(--section-pad) 0;
  background: var(--black);
  text-align: center;
}

.dor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.dor-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 1.75rem;
  text-align: left;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.dor-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--wine), var(--wine-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}

.dor-card:hover {
  background: rgba(114,47,55,0.08);
  border-color: rgba(114,47,55,0.3);
  transform: translateY(-4px);
}

.dor-card:hover::after { transform: scaleX(1); }

.dor-icon { font-size: 1.75rem; margin-bottom: 0.85rem; }

.dor-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.65; }
.dor-card p strong { color: var(--white); font-weight: 600; }

.dor-card-cta {
  background: var(--wine-muted);
  border-color: rgba(114,47,55,0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.dor-cta-text { color: var(--white); font-size: 0.95rem; line-height: 1.6; }
.dor-cta-text strong { color: var(--gold); }

/* ---- ARQUIVOS SECTION ---- */
.arquivos-section {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 60%),
    var(--black-soft);
  text-align: center;
}

.arquivos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.arquivo-card {
  background: var(--black-mid);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.arquivo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-smooth);
}

.arquivo-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  background: rgba(201,168,76,0.04);
}

.arquivo-card:hover::before { transform: scaleX(1); }

.arquivo-numero {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: -0.5rem;
  position: absolute;
  top: 1rem; right: 1.25rem;
  transition: color 0.3s;
}

.arquivo-card:hover .arquivo-numero { color: rgba(201,168,76,0.2); }

.arquivo-icon-wrap {
  width: 64px; height: 64px;
  background: var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(201,168,76,0.25);
  transition: all 0.3s;
}

.arquivo-card:hover .arquivo-icon-wrap {
  background: rgba(201,168,76,0.15);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.arquivo-emoji { font-size: 1.75rem; }

.arquivo-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.arquivo-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1rem; }

.arquivo-highlight {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
}

/* ---- SOBRE SECTION ---- */
.sobre-section {
  padding: var(--section-pad) 0;
  background: var(--black-rich);
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-image-wrap {
  position: relative;
}

.sobre-image-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.sobre-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: var(--shadow-gold);
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.sobre-quote-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-light) 100%);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  max-width: 260px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  z-index: 2;
}

.quote-icon {
  width: 24px; height: 24px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.sobre-quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}

.sobre-content { display: flex; flex-direction: column; gap: 0; }

.sobre-text { margin-bottom: 2rem; }
.sobre-text p {
  color: rgba(255,255,255,0.72);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sobre-text p strong { color: var(--white); font-weight: 600; }

.sobre-achievements {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.achievement-item { display: flex; flex-direction: column; gap: 0.2rem; }
.achievement-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.achievement-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---- DEPOIMENTOS ---- */
.depoimentos-section {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201,168,76,0.05) 0%, transparent 60%),
    var(--black-soft);
  text-align: center;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  text-align: left;
}

.depoimento-card {
  background: var(--black-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 1.75rem;
  transition: all 0.35s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.depoimento-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.depoimento-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.depoimento-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.depoimento-text {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  flex-grow: 1;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}

.author-name { display: block; font-weight: 600; font-size: 0.88rem; color: var(--white); }
.author-role { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 0.15rem; }

/* ---- OFERTA SECTION ---- */
.oferta-section {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 65%),
    var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.oferta-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}

.oferta-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oferta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-align: center;
}

.oferta-sub {
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
}

.oferta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  margin-bottom: 2.5rem;
}

.oferta-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  padding: 1.1rem;
  text-align: left;
  transition: all 0.3s;
}

.oferta-feature:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}

.oferta-feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.oferta-feature-text { display: flex; flex-direction: column; gap: 0.2rem; }
.oferta-feature-text strong { font-size: 0.85rem; color: var(--white); }
.oferta-feature-text span { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

.oferta-price-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.price-tag { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.price-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.price-original {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}

.price-highlight { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.price-today {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.price-desc { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

.capture-form-oferta {
  width: 100%;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.oferta-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 4rem 0 2rem;
  background: #050505;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-links-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-note { color: rgba(201,168,76,0.5) !important; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fade-in 0.3s ease;
}

.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--black-mid);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: scale-up 0.4s var(--ease-spring);
}

.modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: 12px 12px 0 0;
}

.modal-crown { font-size: 3rem; margin-bottom: 1rem; }

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.modal-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.modal-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: all 0.8s var(--ease-smooth);
  transition-delay: var(--delay, 0s);
}

.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up    { transform: translateY(30px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ---- KEYFRAMES ---- */
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scale-up {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-wrap { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-image-badge { right: 0; bottom: 1rem; }
  .sobre-inner    { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-quote-card { right: 0; bottom: -1rem; max-width: 220px; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --section-pad: 3.5rem; }
  .section-title { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .hero-headline  { font-size: clamp(1.75rem, 6vw, 2.4rem); }
  .arquivos-grid  { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .oferta-features { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .mini-proofs     { gap: 1rem; }
  .footer-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .sobre-achievements { gap: 1.25rem; }
  .sobre-quote-card { position: relative; right: auto; bottom: auto; max-width: 100%; margin-top: -1rem; }
  .hero-image-badge { right: 0; }
  .capture-card    { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-left, .reveal-right, .reveal-up {
    opacity: 1; transform: none;
  }
}
