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

:root {
  --gold-primary: #C5A059;
  --gold-light: #DFCDA6;
  --gold-dark: #8B6914;
  --bg-main: #FAFAF8; /* Soft parchment/cream */
  --bg-card: #FFFFFF;
  --text-dark: #1E293B; /* Deep slate/navy for text */
  --text-muted: #64748B;
  --accent-color: #8B1A1A; /* Deep burgundy/red for urgency and buttons */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background-image: radial-gradient(#C5A059 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  background-attachment: fixed;
  background-color: #FAFAF8; /* fallback */
  background-blend-mode: overlay;
}

/* Faint gradient overlay to soften the pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(250,250,248,0.85) 0%, rgba(250,250,248,0.95) 100%);
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

/* Utilities */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.text-gold {
  color: var(--gold-primary);
}

.text-accent {
  color: var(--accent-color);
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.6);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-text .subtitle {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.collage-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 480px;
    margin: 0 auto;
}

.collage-book {
    position: absolute;
    transition: transform 0.4s ease, z-index 0s;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

.collage-book:hover {
    transform: translateY(-10px) scale(1.05) !important;
    z-index: 20 !important;
}

.book-center {
    width: 210px;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.book-left-top {
    width: 140px;
    top: 5%;
    left: 5%;
    transform: rotate(-12deg);
    z-index: 2;
}

.book-left-bottom {
    width: 150px;
    top: 35%;
    left: -2%;
    transform: rotate(-18deg);
    z-index: 3;
}

.book-right-top {
    width: 140px;
    top: 5%;
    right: 5%;
    transform: rotate(12deg);
    z-index: 2;
}

.book-right-bottom {
    width: 150px;
    top: 35%;
    right: -2%;
    transform: rotate(18deg);
    z-index: 3;
}

.book-bottom-center {
    width: 180px;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%) rotate(4deg);
    z-index: 6;
}

@media (max-width: 768px) {
  .collage-container {
      height: 320px;
      transform: scale(0.7);
      transform-origin: top center;
      margin-bottom: -50px;
  }
}

/* Problem Section */
.problem-section {
  text-align: center;
  background: #FFFFFF;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding: 6rem 0;
}

.problem-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.problem-section > p {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 4rem;
  font-style: italic;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.benefit-card {
  background: var(--bg-main);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(197, 160, 89, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(30, 41, 59, 0.08);
  border-color: rgba(197, 160, 89, 0.3);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-dark);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Bonuses Section */
.bonuses-section {
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 15px 40px rgba(30, 41, 59, 0.05);
}

.bonus-item:nth-child(even) {
  flex-direction: row-reverse;
}

.bonus-image {
  flex: 1;
  text-align: center;
}

.bonus-image img {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

.bonus-content {
  flex: 1.2;
}

.bonus-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.bonus-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-family: 'Lora', serif;
}

/* Offer Section */
.offer-section {
  text-align: center;
  padding: 6rem 0;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.price-box {
  background: var(--bg-main);
  border: 2px solid var(--gold-primary);
  border-radius: 16px;
  padding: 4rem 3rem;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(197, 160, 89, 0.15);
  position: relative;
}

.price-box::before {
  content: '★ OFERTA EXCLUSIVA ★';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: #FFFFFF;
  padding: 0.4rem 2rem;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
}

.discount-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(139, 26, 26, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.price-container {
  margin: 1.5rem 0;
}

.old-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 600;
}

.old-price s {
  color: #FF6B6B;
}

.price-box h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 5.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-top: 0.5rem;
}

.price span {
  font-size: 2.5rem;
  vertical-align: top;
  color: var(--text-muted);
}

.urgency {
  color: var(--accent-color);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.guarantee {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-family: 'Lora', serif;
}

.guarantee svg {
  width: 40px;
  height: 40px;
  fill: var(--gold-dark);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: #FFFFFF;
  padding: 3rem 0;
  text-align: center;
}

.footer-text {
  color: #94A3B8;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-image img {
    transform: none;
  }
  
  .bonus-item {
    flex-direction: column !important;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-text .subtitle {
    margin-bottom: 1.5rem;
  }
  
  .price {
    font-size: 4.5rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .problem-section {
    padding: 3.5rem 0;
  }
  
  .problem-section h2, .section-header h2 {
    font-size: 2rem;
  }
  
  .bonus-item {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
