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

:root {
  --bg: #0b0407;
  --bg2: #130a0e;
  --bg3: #1c0f14;
  --gold: #c9a86c;
  --gold2: #e8c98a;
  --rose: #d4a0a8;
  --rose2: #f0cdd3;
  --cream: #f4ede6;
  --cream2: #e8ddd6;
  --text: #f4ede6;
  --text-muted: #a89890;
  --border: rgba(201,168,108,0.18);
  --border2: rgba(201,168,108,0.35);
  --shadow: 0 24px 80px rgba(0,0,0,0.55);
  --radius: 4px;
  --radius-lg: 16px;
  --section-pad: clamp(80px, 10vw, 140px);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
.serif { font-family: 'Cormorant Garamond', 'Georgia', serif; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.8vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }

p { font-size: clamp(0.95rem, 1.2vw, 1.05rem); color: var(--cream2); }

.gold { color: var(--gold); }
.rose { color: var(--rose); }
.cream { color: var(--cream); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0b0407;
  box-shadow: 0 8px 32px rgba(201,168,108,0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201,168,108,0.5);
  background: linear-gradient(135deg, var(--gold2), #f0d99a);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover {
  background: rgba(201,168,108,0.1);
  border-color: var(--gold);
}
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(11,4,7,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 5%;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--cream2);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 16px; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,4,7,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6% 80px 8%;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  margin-bottom: 28px;
  color: var(--cream);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  max-width: 480px;
  margin-bottom: 44px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cream2);
}
.hero-cta-block { display: flex; flex-direction: column; gap: 18px; }
.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hero-micro span { display: flex; align-items: center; gap: 5px; }
.hero-micro span::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}

.hero-images {
  position: relative;
  overflow: hidden;
}
.hero-img-primary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.75) saturate(0.9);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 40%),
              linear-gradient(to top, var(--bg) 0%, transparent 30%);
}
.hero-badge {
  position: absolute;
  bottom: 48px;
  left: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0b0407;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 3;
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; }

.hero-decor {
  position: absolute;
  bottom: 0; left: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border2), transparent);
  z-index: 2;
}

/* ===== MARQUEE / BRANDS ===== */
.brands-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg2);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.brand-item .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ===== SECTIONS ===== */
.section { padding: var(--section-pad) 8%; }
.section-alt { background: var(--bg2); }
.section-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.section-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--rose));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== ABERTURA / PROPOSTA ===== */
.proposta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.proposta-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.proposta-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.proposta-img-wrap:hover img { transform: scale(1.04); }
.proposta-img-decor {
  position: absolute;
  top: 20px; left: -20px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.proposta-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--rose2);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0;
  line-height: 1.6;
}
.proposta-text p { margin-bottom: 16px; }
.proposta-text .highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ===== DOR ===== */
.dor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.dor-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}
.dor-card:hover {
  border-color: var(--border2);
  background: #1f111a;
  transform: translateY(-4px);
}
.dor-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,108,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.dor-text {
  font-size: 0.95rem;
  color: var(--cream2);
  line-height: 1.55;
}
.dor-intro {
  max-width: 680px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.dor-intro strong { color: var(--rose2); font-weight: 500; }

/* ===== SOLUÇÃO / SERVIÇOS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--border2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--cream);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-price {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== BENEFÍCIOS ===== */
.beneficios-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.beneficios-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.beneficios-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.beneficios-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg2) 0%, transparent 50%);
}
.beneficios-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11,4,7,0.85);
  border: 1px solid var(--border2);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  text-align: center;
  white-space: nowrap;
}
.beneficios-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
}
.beneficios-badge span { font-size: 0.8rem; color: var(--text-muted); }

.beneficios-list { list-style: none; }
.beneficios-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  color: var(--cream2);
  line-height: 1.5;
}
.beneficios-list li:last-child { border-bottom: none; }
.beneficios-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ===== PROVA SOCIAL ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 70px;
}
.stat-box {
  background: var(--bg3);
  padding: 36px 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(201,168,108,0.12);
  line-height: 1;
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.testimonial-card blockquote {
  font-size: 0.97rem;
  color: var(--cream2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border2);
  object-fit: cover;
}
.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
}
.author-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.verified {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== PREÇOS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.35s;
}
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #1f1118, #170e14);
}
.pricing-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0b0407;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.pricing-icon { font-size: 2rem; margin-bottom: 16px; }
.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.pricing-from {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-includes {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-includes li {
  font-size: 0.88rem;
  color: var(--cream2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== BÔNUS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.bonus-card {
  background: linear-gradient(135deg, #1c0e17, #160b12);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.bonus-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(201,168,108,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.bonus-card:hover {
  border-color: var(--border2);
  transform: translateY(-5px);
}
.bonus-emoji { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.bonus-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.bonus-card p { font-size: 0.87rem; color: var(--text-muted); }

/* ===== OBJEÇÕES ===== */
.objecoes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}
.objecao-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.objecao-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.objecao-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--rose2);
  font-style: italic;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.objecao-q::before {
  content: '?';
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(212,160,168,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--rose);
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}
.objecao-a { font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; }
.objecao-a strong { color: var(--cream2); }

/* ===== GARANTIA ===== */
.garantia-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #1c0e17, #170b12);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.garantia-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), var(--rose), transparent);
}
.garantia-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  display: block;
}
.garantia-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--cream);
}
.garantia-box p {
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}
.garantia-days {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201,168,108,0.1);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 10px 24px;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== URGÊNCIA ===== */
.urgencia-box {
  background: linear-gradient(135deg, #1a0b0f, #0e0507);
  border: 1px solid rgba(201,168,108,0.3);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.urgencia-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,108,0.15);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.urgencia-label span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.urgencia-box h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin-bottom: 12px; }
.urgencia-box p { color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 50px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  transition: all 0.3s;
}
.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
  background: rgba(201,168,108,0.1);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 0 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #1a0b0f 0%, #0e0507 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,108,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final h2 { margin-bottom: 20px; }
.cta-final p {
  max-width: 520px;
  margin: 0 auto 44px;
  color: var(--text-muted);
  line-height: 1.75;
}
.cta-final .btn { margin: 0 auto 20px; display: flex; width: fit-content; }
.cta-micro {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cta-micro span::before {
  content: '•';
  margin-right: 10px;
  color: var(--gold);
}
.cta-micro span:first-child::before { display: none; }

/* ===== PS BLOCK ===== */
.ps-block {
  max-width: 700px;
  margin: 60px auto 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: left;
}
.ps-block .ps-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.ps-block p { color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.ps-block p:last-child { margin-bottom: 0; }
.ps-block em { color: var(--rose2); font-style: italic; }

/* ===== FOOTER ===== */
footer {
  background: #070205;
  border-top: 1px solid var(--border);
  padding: 48px 8% 32px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
footer ul a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom span { color: var(--gold); }
.social-links {
  display: flex;
  gap: 14px;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,108,0.08);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  background: #25d366;
  color: white;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: all 0.3s;
  animation: float-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 48px rgba(37,211,102,0.55);
}
@keyframes float-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== GALERIA ===== */
.gallery-group-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.gallery-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.gallery-group-tag {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-group-tag span { font-size: 1rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}
.gallery-grid:last-child { margin-bottom: 0; }
.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
  display: block;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,4,7,0.88) 0%, transparent 55%);
  transition: opacity 0.3s;
}
.gallery-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
}
.gallery-card-info strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 4px;
}
.gallery-card-info small {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.gallery-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(11,4,7,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-images { display: none; }
  .hero-content { padding: 120px 6% 80px; }
  .proposta { grid-template-columns: 1fr; gap: 40px; }
  .proposta-img-decor { display: none; }
  .beneficios-layout { grid-template-columns: 1fr; gap: 40px; }
  .beneficios-img { aspect-ratio: 16/9; }
  .objecoes-grid { grid-template-columns: 1fr; }
  .urgencia-box { grid-template-columns: 1fr; text-align: center; }
  .urgencia-box .btn { margin: 0 auto; }
  .stats-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: flex; }
  .mobile-menu { display: flex; }
  .dor-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .dor-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .ps-block { padding: 24px; }
}
