/* =========================================================
   LANDING — ESTA VEZ, DIFERENTE
   Tipografía global: Poppins · Títulos 500 · Cuerpo 400
   ========================================================= */

:root {
  --negro-suave: #1A1A1A;
  --negro-footer: #111111;
  --negro-tarjeta: #2A2A2A;
  --borde-tarjeta: #3A3A3A;
  --verde-osc: #2D5A3D;
  --verde-acento: #4A8C5C;
  --crema: #F5F0E8;
  --blanco: #FFFFFF;
  --gris-cuerpo: #4A4A4A;
  --gris-separador: #E0E0E0;

  --radius: 8px;
  --radius-card: 14px;
  --max-w: 1120px;
  --pad-section: clamp(64px, 10vw, 120px);
  --pad-x: clamp(20px, 5vw, 48px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--negro-suave);
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

p { font-size: clamp(1rem, 1.4vw, 1.1rem); }

.section {
  padding: var(--pad-section) var(--pad-x);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-light  { background: var(--blanco); color: var(--negro-suave); }
.btn-light:hover { background: #f3f3f3; }

.btn-green  { background: var(--verde-osc); color: var(--blanco); }
.btn-green:hover { background: #244c33; }

/* =========================================================
   1. HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  color: var(--blanco);
  overflow: hidden;
  padding: 32px var(--pad-x) 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: url('images/Hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: rgba(0, 0, 0, 0.45);
}
.hero-logos {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: auto;
  padding-top: 8px;
}
.hero-logos img { height: 80px; width: auto; object-fit: contain; }
.hero-logos img.logo-daniela { height: 108px; }
.hero-logos .divider {
  width: 1px; height: 64px; background: rgba(255,255,255,0.4);
}
.hero-content {
  max-width: 760px;
  margin-top: auto;
}
.hero-content h1 {
  font-weight: 500;
  margin-bottom: 18px;
}
.hero-content .subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.4;
  max-width: 600px;
}
.hero-content .meta {
  font-size: 1.14rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* =========================================================
   2. EL DOLOR
   ========================================================= */
.dolor {
  background: var(--negro-suave);
  color: var(--blanco);
  text-align: center;
}
.dolor h2 { margin-bottom: 28px; }
.dolor p { max-width: 720px; margin: 0 auto 18px; }
.dolor .quote {
  display: block;
  font-style: italic;
  color: var(--verde-acento);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 500;
  margin: 28px auto;
  max-width: 680px;
}

/* =========================================================
   3. QUÉ ES
   ========================================================= */
.que-es {
  background: var(--crema);
  color: var(--negro-suave);
  text-align: center;
}
.que-es h2 { margin-bottom: 56px; }
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
}
.card-feature {
  text-align: center;
}
.card-feature .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--verde-osc);
}
.card-feature h3 {
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--negro-suave);
}
.card-feature p {
  color: var(--gris-cuerpo);
  font-size: 1rem;
}

/* =========================================================
   4. LO QUE NO ES
   ========================================================= */
.no-es {
  background: var(--verde-osc);
  color: var(--blanco);
  text-align: center;
}
.no-es h2 { margin-bottom: 24px; max-width: 760px; margin-left: auto; margin-right: auto; }
.no-es p { max-width: 720px; margin: 0 auto 18px; }

/* =========================================================
   5. EL LUGAR (carrusel)
   ========================================================= */
.lugar {
  background: var(--negro-suave);
  color: var(--blanco);
  text-align: center;
}
.lugar h2 { margin-bottom: 40px; }
.carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-card);
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dots button.active {
  background: var(--blanco);
  transform: scale(1.2);
}
.lugar .caption {
  margin-top: 28px;
  font-style: italic;
  opacity: 0.9;
  line-height: 1.7;
}

/* =========================================================
   6. QUÉ INCLUYE
   ========================================================= */
.incluye {
  background: var(--crema);
  color: var(--negro-suave);
}
.incluye h2 { text-align: center; margin-bottom: 48px; }
.incluye-list {
  list-style: none;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}
.incluye-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--gris-cuerpo);
  font-size: 1.05rem;
}
.incluye-list li:last-child { border-bottom: none; }
.incluye-list .check {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--verde-osc);
  margin-top: 3px;
}

/* =========================================================
   7. QUIÉNES GUÍAN
   ========================================================= */
.guias { background: var(--blanco); color: var(--negro-suave); }
.guias h2 { text-align: center; margin-bottom: 56px; }
.guia-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  padding: 32px 0;
}
.guia-card + .guia-card {
  border-top: 1px solid var(--gris-separador);
  margin-top: 16px;
  padding-top: 48px;
}
.guia-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-card);
  object-fit: cover;
}
.guia-info h3 {
  font-weight: 500;
  margin-bottom: 4px;
}
.guia-info .role {
  font-style: italic;
  color: var(--gris-cuerpo);
  margin-bottom: 14px;
}
.guia-info .brand-logo {
  height: 60px;
  width: auto;
  margin-bottom: 18px;
}
.guia-info .brand-logo.logo-daniela { height: 81px; }
.guia-info p {
  color: var(--gris-cuerpo);
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================================================
   8. INVERSIÓN
   ========================================================= */
.inversion {
  background: var(--negro-suave);
  color: var(--blanco);
}
.inversion h2 { text-align: center; margin-bottom: 56px; }
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--negro-tarjeta);
  border: 1px solid var(--borde-tarjeta);
  border-radius: var(--radius-card);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.price-card.featured {
  border: 1.5px solid var(--verde-acento);
}
.badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--verde-osc);
  color: var(--blanco);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-card .label {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 10px;
}
.price-card .price {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.price-card .btn { width: 100%; }
.inversion .note {
  text-align: center;
  margin-top: 32px;
  font-style: italic;
  opacity: 0.7;
  font-size: 0.95rem;
}

/* =========================================================
   9. CTA FINAL
   ========================================================= */
.cta-final {
  position: relative;
  text-align: center;
  color: var(--blanco);
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
}
.cta-final-bg {
  position: absolute; inset: 0; z-index: -2;
  background: url('images/Hero.jpg') center/cover no-repeat;
}
.cta-final-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: rgba(0,0,0,0.55);
}
.cta-final h2 {
  max-width: 720px;
  margin: 0 auto 18px;
}
.cta-final p {
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}
.cta-final .btn { padding: 18px 40px; font-size: 1.05rem; }
.cta-final .meta {
  margin-top: 28px;
  font-style: italic;
  opacity: 0.85;
  font-size: 1.14rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--negro-footer);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 48px var(--pad-x);
}
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}
.footer-logos img { height: 64px; width: auto; }
.footer-logos img.logo-daniela { height: 86px; }
.footer p { font-size: 0.9rem; line-height: 1.7; font-style: italic; }

/* =========================================================
   RESPONSIVE — móvil < 768px
   ========================================================= */
@media (max-width: 768px) {
  .cards-3 { grid-template-columns: 1fr; gap: 48px; }
  .cards-2 { grid-template-columns: 1fr; gap: 36px; }

  .guia-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .guia-photo { max-width: 280px; margin: 0 auto; }

  .carousel-slide { aspect-ratio: 16 / 11; }

  .hero { min-height: 85vh; padding-bottom: 56px; }
  .hero-logos { gap: 16px; }
  .hero-logos img { height: 64px; }
  .hero-logos img.logo-daniela { height: 86px; }
  .hero-logos .divider { height: 52px; }

  .footer-logos { gap: 24px; }
  .footer-logos img { height: 56px; }
  .footer-logos img.logo-daniela { height: 76px; }
}

@media (max-width: 480px) {
  .price-card { padding: 36px 22px 26px; }
  .btn { padding: 13px 22px; font-size: 0.95rem; }
}
