:root { color-scheme: dark; }
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #eee;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.center{ text-align:center; }

/* HERO */
.hero{
  position: relative;
  height: 90vh;
  min-height: 560px;

  background-image: var(--hero);
  background-size: cover;
  background-repeat: no-repeat;

  /* Control fino del encuadre */
  background-position: var(--hero-pos, 75% 35%);

  overflow: hidden;
}

.overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(90deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.35) 45%,
    rgba(0,0,0,0) 75%
  );
}

.hero-text{
  position:absolute;
  left:60px;
  bottom:60px;
  max-width:560px;
  z-index: 2;
}

.hero-text h1{
  margin:0;
  font-size:48px;
  line-height:1.05;
}

.hero-text p{
  margin:12px 0 0 0;
  font-size:18px;
  opacity:.9;
}

.hero-actions{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.micro{
  margin-top:14px;
  font-size:13px;
  opacity:.8;
}

/* INTRO */
.intro{
  background:#0b0b0b;
  padding:50px 0;
}

.intro-main{
  margin:0 auto;
  max-width:900px;
  font-size:18px;
  line-height:1.55;
  text-align:center;
}

.bullets{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:14px;
}

.bullet{
  background:#101010;
  border:1px solid #222;
  border-radius:12px;
  padding:14px;
}

.b-title{
  font-weight:700;
  margin-bottom:6px;
}

.b-text{
  opacity:.85;
  line-height:1.4;
}

/* SECTIONS */
.section {
  padding: 70px 0;
}

.section.dark {
  background: #0b0b0b;
}

h2{
  margin:0 0 18px 0;
  font-size:32px;
}

.sub{
  margin: 10px 0 14px 0;
  font-size: 20px;
  opacity: .95;
}

.note{
  margin:0 0 18px 0;
  opacity:.8;
  line-height:1.5;
}

.note.center{ text-align:center; }

.steps{
  margin:0;
  padding-left:18px;
  line-height:1.8;
  opacity:.92;
}

/* GRID IMAGES */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.grid img{
  width:100%;
  height:auto;                 /* <- no fuerces altura */
  aspect-ratio: 2 / 3;         /* <- perfecto para 813x1216 */
  object-fit: contain;         /* <- NO recorta */
  background:#000;             /* <- relleno elegante si sobra espacio */
  border-radius:12px;
  border:1px solid #1f1f1f;
  display:block;
}

/* PRICING */
.pricing{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:14px;
  margin-top:14px;
}

.plan{
  background:#101010;
  border:1px solid #222;
  border-radius:12px;
  padding:16px;
}

.plan ul{
  margin:10px 0 0 0;
  padding-left:18px;
  line-height:1.7;
  opacity:.9;
}

.p-title{
  font-weight:800;
  font-size:18px;
}

.p-price{
  margin-top:12px;
  opacity:.9;
  font-weight:700;
}

.featured{
  border-color:#3a2c10;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
}

.tag{
  font-size:12px;
  font-weight:700;
  margin-left:8px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid #3a2c10;
  background:#1b1407;
  opacity:.95;
}

/* FAQ */
.faq{
  background:#101010;
  border:1px solid #222;
  border-radius:12px;
  padding:12px 14px;
  margin:10px 0;
}

.faq summary{
  cursor:pointer;
  font-weight:700;
}

.faq p{
  margin:10px 0 0 0;
  opacity:.9;
  line-height:1.6;
}

/* CTA */
.cta{
  padding:70px 0;
  text-align:center;
  background:#000;
}

.cta h2{ margin:0 0 10px 0; }

.cta p{
  margin:0;
  opacity:.85;
}

.cta-actions{
  margin-top:22px;
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

.cta-btn{
  min-width:180px;
  padding:14px 28px;
  font-weight:700;
  text-decoration:none;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.cta-btn.whatsapp{
  background:#25D366;
  color:#000;
}

.cta-btn.email{
  background:transparent;
  color:#eee;
  border:1px solid #444;
}

.cta-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 22px rgba(0,0,0,.35);
}
.note{
  opacity: .55;
}
.tiny{
  margin-top:14px;
  font-size:12px;
  opacity:.75;
}

/* Pricing single (centrar el Book Inicial) */
.pricing.single{
  display:flex;
  justify-content:center;
}

.pricing.single .plan{
  width:100%;
  max-width:520px;
}

/* Mejoras sutiles de lectura en precios */
.p-price strong{
  font-size: 18px;
}

.lang-bar{
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 9999;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.lang-label{
  font-size: 12px;
  opacity: .85;
}

.lang-btn{
  border: 1px solid rgba(255,255,255,.20);
  background: transparent;
  color: #eee;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
}

.lang-btn.active{
  background: #25D366; /* misma lógica visual que WhatsApp, queda bien */
  color: #000;
  border-color: transparent;
}

/* Language switcher (SEO-friendly links) */
.lang-bar{
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 9999;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.lang-label{
  font-size: 12px;
  opacity: .85;
}

.lang-link{
  border: 1px solid rgba(255,255,255,.20);
  background: transparent;
  color: #eee;
  padding: 6px 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
}

.lang-link.active{
  background: #25D366;
  color: #000;
  border-color: transparent;
}
.pricing-disclaimer{
  margin-top: 10px;
  padding: 16px 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  gap: 12px;
  align-items: flex-start;

  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.pricing-disclaimer .icon{
  font-size: 16px;
  opacity: 0.8;
  margin-top: 2px;
}

/* RESPONSIVE */
@media (max-width: 760px){
  .hero-text{
    left:20px;
    right:20px;
    bottom:22px;
    max-width:none;
  }

  .hero-text h1{ font-size:32px; }
  .hero{ min-height:520px; }

  /* Control fino del encuadre en móvil */
  .hero{
    background-position: var(--hero-pos-mobile, var(--hero-pos, 75% 35%));
  }

  .grid img{ height:280px; }
}

