@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA8C2C;
  --gold-glow: rgba(212, 175, 55, 0.3);
  
  --rose: #E8C4B8;
  --rose-light: #F7EAE6;
  --rose-dark: #C99A8E;
  
  --bg-main: #FFFFFF;
  --bg-secondary: #FCF9F9; /* Very soft rose/cream */
  --bg-card: rgba(255, 255, 255, 0.85);
  
  --text-main: #33241F; /* Dark warm brown */
  --text-muted: #7A6258;
  
  --shadow-soft: 0 10px 30px rgba(51, 36, 31, 0.06);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
  --shadow-gold-intense: 0 15px 40px rgba(212, 175, 55, 0.35);
  
  --radius: 20px;
  --radius-lg: 32px;
  --border-glass: 1px solid rgba(212, 175, 55, 0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }

/* ═══════════════ GLASSMORPHISM UTILS ═══════════════ */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: var(--border-glass);
  box-shadow: var(--shadow-soft);
}

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}
.navbar.scrolled { 
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2); 
  box-shadow: var(--shadow-soft);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
/* IMPORTANT: Reset logo filter since bg is white */
.logo img { filter: none !important; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text-muted); font-size: 14px;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #FFFFFF !important; padding: 10px 24px; border-radius: 50px;
  font-weight: 700 !important; text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: var(--shadow-gold); transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-intense); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text-main); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 0 80px; position: relative; overflow: hidden; text-align: center;
}
.hero-bg-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  /* Elegant gradient overlay to make white text readable over video */
  background: linear-gradient(135deg, rgba(51, 36, 31, 0.8), rgba(232, 196, 184, 0.4));
  z-index: 2;
}

.hero .container { display: flex; flex-direction: column; align-items: center; z-index: 5; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50px;
  padding: 8px 24px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: #FFFFFF;
  margin-bottom: 32px; animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 84px); font-weight: 800; color: #FFFFFF;
  margin-bottom: 24px; animation: fadeInUp 0.8s ease 0.1s both;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero h1 .accent {
  background: linear-gradient(to right, #FFFFFF, var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.9); line-height: 1.8;
  margin-bottom: 48px; max-width: 600px;
  animation: fadeInUp 0.8s ease 0.2s both;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-cta-group {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: #FFFFFF; padding: 18px 40px; border-radius: 50px;
  font-size: 16px; font-weight: 700; text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.05em; box-shadow: 0 10px 30px rgba(37,211,102,0.3);
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37,211,102,0.5); background: #128C7E; }
.btn-whatsapp svg { width: 22px; height: 22px; flex-shrink: 0; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); color: #FFFFFF;
  padding: 18px 40px; border-radius: 50px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4); transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: #FFFFFF; color: var(--gold-dark); border-color: #FFFFFF; }

@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════ GLOBAL SECTIONS ═══════════════ */
.section { padding: 100px 0; position: relative; z-index: 10; }
.section-alt { background: var(--bg-secondary); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-dark); text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 13px; font-weight: 700;
  margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 40px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title {
  font-size: clamp(36px, 4vw, 56px); margin-bottom: 24px; font-weight: 700; color: var(--text-main);
}
.section-subtitle {
  font-size: 17px; color: var(--text-muted); max-width: 650px; line-height: 1.8; margin-bottom: 32px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ═══════════════ INCLUDES GRID ═══════════════ */
.includes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.include-card {
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: var(--transition); position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start;
  background: #FFFFFF; border: 1px solid rgba(212,175,55,0.15); box-shadow: var(--shadow-soft);
}
.include-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.1), transparent 50%);
  opacity: 0; transition: var(--transition);
}
.include-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.include-card:hover::before { opacity: 1; }

.include-icon {
  width: 64px; height: 64px; border-radius: 20px;
  background: var(--rose-light); border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 24px; color: var(--gold-dark);
}
.include-card h3 { font-size: 22px; margin-bottom: 12px; font-weight: 600; color: var(--text-main); }
.include-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════ STEPS (ETAPAS) ═══════════════ */
.steps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.steps-image-container {
  position: relative; border-radius: var(--radius-lg); padding: 20px;
}
.steps-image-container::before {
  content: ''; position: absolute; inset: 0;
  border: 2px dashed rgba(212,175,55,0.4); border-radius: var(--radius-lg);
  animation: spin 40s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

.steps-image {
  width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft); position: relative; z-index: 2;
}

.step-item {
  display: flex; gap: 24px; margin-bottom: 32px; align-items: flex-start;
}
.step-number {
  font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 800;
  line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(212,175,55,0.6);
  transition: var(--transition);
}
.step-item:hover .step-number { color: var(--gold); -webkit-text-stroke: 0; text-shadow: 0 4px 15px var(--gold-glow); }
.step-content h4 { font-size: 20px; margin-bottom: 8px; font-weight: 600; color: var(--text-main); }
.step-content p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ═══════════════ GALLERY ═══════════════ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); position: relative; aspect-ratio: 4/5;
  border: 1px solid rgba(212,175,55,0.1);
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.08); }

/* ═══════════════ PRICING ═══════════════ */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.price-card {
  border-radius: var(--radius-lg); padding: 48px 40px;
  text-align: center; transition: var(--transition); position: relative;
  background: #FFFFFF; border: 1px solid rgba(212,175,55,0.15); box-shadow: var(--shadow-soft);
}
.price-card.featured {
  background: linear-gradient(180deg, var(--rose-light) 0%, #FFFFFF 100%);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.price-featured-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #FFFFFF; padding: 8px 24px; border-radius: 50px;
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.15em; white-space: nowrap; box-shadow: var(--shadow-gold);
}
.price-label {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold-dark); font-weight: 700; margin-bottom: 16px;
}
.price-amount {
  font-family: 'Outfit', sans-serif; font-size: 64px;
  font-weight: 800; color: var(--text-main); line-height: 1; margin-bottom: 8px;
}
.price-amount .currency { font-size: 24px; vertical-align: super; color: var(--text-muted); font-weight: 500; }
.price-amount .cents { font-size: 24px; color: var(--text-muted); font-weight: 500; }
.price-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }

.price-features { list-style: none; text-align: left; margin-bottom: 40px; }
.price-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 15px; color: var(--text-main);
  border-bottom: 1px solid rgba(51,36,31,0.05);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✦'; color: var(--gold); font-size: 12px; }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #FFFFFF;
  padding: 18px 32px; border-radius: 50px;
  font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none;
  box-shadow: var(--shadow-gold); transition: var(--transition); border: none; cursor: pointer;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold-intense); }

.btn-outline-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: transparent; color: var(--text-main);
  padding: 18px 32px; border-radius: 50px;
  font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none;
  border: 2px solid rgba(212,175,55,0.4); transition: var(--transition); cursor: pointer;
}
.btn-outline-dark:hover { border-color: var(--gold); background: var(--rose-light); }

/* ═══════════════ FAQ ═══════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  margin-bottom: 16px; overflow: hidden; transition: var(--transition);
  border-radius: var(--radius); background: #FFFFFF; border: 1px solid rgba(212,175,55,0.1);
}
.faq-item.active { border-color: rgba(212,175,55,0.5); box-shadow: var(--shadow-soft); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; cursor: pointer; font-weight: 600;
  font-size: 16px; background: none; border: none; width: 100%;
  text-align: left; color: var(--text-main); font-family: inherit;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question .arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--rose-light); display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition); font-size: 12px; flex-shrink: 0;
  color: var(--gold-dark);
}
.faq-item.active .faq-question .arrow { transform: rotate(180deg); background: var(--gold); color: #FFFFFF; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 24px; }
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* ═══════════════ FINAL CTA ═══════════════ */
.final-cta {
  background: linear-gradient(135deg, var(--rose-light), var(--bg-main));
  padding: 120px 0; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.final-cta h2 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 20px; color: var(--text-main); }
.final-cta p { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto 48px; line-height: 1.8; }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--bg-secondary); padding: 40px 0;
  border-top: 1px solid rgba(212,175,55,0.1); text-align: center;
}
.footer p { font-size: 14px; color: var(--text-muted); margin-top: 10px; }

/* ═══════════════ WHATSAPP FLOAT ═══════════════ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition); text-decoration: none;
  animation: pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #FFFFFF; }

@keyframes pulse { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.4)} 50%{box-shadow:0 6px 36px rgba(37,211,102,0.6)} }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 968px) {
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps-image-container { display: none; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

@media (max-width: 640px) {
  .includes-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .hero-cta-group { flex-direction: column; }
  .btn-whatsapp, .btn-outline { width: 100%; justify-content: center; }
  .price-card { padding: 40px 24px; }
  .price-amount { font-size: 52px; }
  .section { padding: 80px 0; }
}

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════ COUNTER ═══════════════ */
.countdown-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 12px 0; text-align: center; color: #FFFFFF;
  font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.countdown-strip span { font-weight: 900; background: rgba(0,0,0,0.15); padding: 2px 6px; border-radius: 4px; }
