:root {
  --wine: #7a1c2e;
  --wine-dark: #561320;
  --wine-deeper: #3a0d18;
  --wine-light: #b84060;
  --cream: #f9f5ef;
  --cream-dark: #ede7db;
  --text: #1a1008;
  --text-muted: #6b5a4e;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #ffffff;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(160deg, var(--wine-deeper) 0%, var(--wine) 60%, var(--wine-dark) 100%);
  color: var(--white);
  padding: 80px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 20px;
  font-weight: 900;
}
.hero h1 span { color: var(--gold-light); }
.hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 16px;
  font-weight: 300;
}
.hero-features {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 28px 0 40px;
  font-size: 0.9rem;
  opacity: 0.9;
}
.hero-features span::before {
  content: '●';
  color: var(--gold);
  margin-right: 7px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--wine-deeper);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-wine {
  display: inline-block;
  background: var(--wine);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-wine:hover { background: var(--wine-dark); transform: translateY(-2px); }

/* ─── SECTION BASE ─── */
section { padding: 72px 24px; }
.container { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 12px;
}
h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

/* ─── PRICE HERO ─── */
.price-section {
  background: linear-gradient(160deg, var(--wine-deeper) 0%, var(--wine) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.price-section .eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}
.price-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.price-big {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin: 16px 0 8px;
}
.price-iva {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 32px;
}

/* ─── FEATURES GRID (4 cuadros) ─── */
.features-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 48px;
}
@media (min-width: 640px) {
  .features-4 { grid-template-columns: repeat(4, 1fr); }
}
.feat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 20px 14px;
  text-align: center;
}
.feat-box .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: 10px;
}
.feat-box .check svg { width: 16px; height: 16px; }
.feat-box p {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.4;
  font-weight: 400;
}

/* ─── BENEFITS STRIP ─── */
.benefits-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  font-size: 0.88rem;
  opacity: 0.8;
}
.benefits-strip span { display: flex; align-items: center; gap: 6px; }
.benefits-strip span::before {
  content: '●';
  color: var(--gold);
  font-size: 0.6rem;
}

/* ─── WHY SECTION ─── */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; gap: 32px; } }
.why-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.why-text .highlight-text {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.8;
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.why-text .highlight-text strong { color: var(--wine); }
.why-visual {
  background: linear-gradient(135deg, var(--wine-deeper), var(--wine));
  border-radius: 12px;
  padding: 40px 32px;
  color: var(--white);
}
.why-visual h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  opacity: 0.9;
}
.why-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── CHECKBOXES SECTION (old bullets) ─── */
.included-section { background: var(--cream); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.included-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(122,28,46,0.06);
}
.check-circle {
  width: 28px; height: 28px;
  background: var(--wine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-circle svg { width: 14px; height: 14px; }
.included-card p { font-size: 0.95rem; color: var(--text); line-height: 1.5; }

/* ─── FAQ ─── */
.faq-section { background: var(--white); }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
}
.faq-q {
  font-weight: 600;
  font-size: 1rem;
  color: var(--wine);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--wine-light);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 12px; }

/* ─── FOOTER ─── */
footer {
  background: var(--wine-deeper);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.85rem;
}
footer a { color: var(--gold); text-decoration: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .features-4 { grid-template-columns: repeat(2, 1fr); }
}
/* ─── NAVBAR ─── */
.navbar { background: var(--wine-deeper); padding: 14px 24px; }
  .nav-container { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; gap: 20px; }
  .nav-logo { height: 36px; object-fit: contain; }
  .nav-logo-landora { filter: brightness(0) invert(1); }
  .nav-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }