:root{
  --black:#000000;
  --yellow:#FBF008;
  --white:#ffffff;

  --muted: rgba(255,255,255,.82);
  --muted2: rgba(255,255,255,.65);

  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --border: rgba(255,255,255,.12);

  --radius: 18px;
  --shadow: 0 16px 44px rgba(0,0,0,.45);

  --container: 980px;
  --pad: 18px;
}

*{ box-sizing: border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 900px at 20% 0%, rgba(251,240,8,.12), transparent 55%),
    radial-gradient(900px 700px at 100% 15%, rgba(251,240,8,.10), transparent 55%),
    var(--black);
  color: var(--white);
}

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; }

/* Layout */
.page{
  min-height:100%;
}

.container{
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.stack{
  display:flex;
  flex-direction: column;
  gap: 14px;
}

/* Full-bleed: ocupa todo el ancho de la pantalla y queda centrado */
.full-bleed{
  display:block;
  width: 100vw;
  max-width: 100%;
  height: auto;

  /* saca la imagen del contenedor para que sea realmente 100vw */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  object-fit: contain;
  object-position: center;
}

.center-img{
  display:block;
  width:100%;
  height:auto;
  margin:0 auto;
}

.store-bar{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:25px;
  padding:10px 14px;
  background:#FBF008;
  border-radius:18px;
}

.store-bar img{
  height:48px;       /* perfecto para móvil y PC */
  width:auto;
  display:block;
}
@media (min-width: 768px){
  .store-bar img{
    height: 72px;   /* prueba 64–72px según te guste */
  }
}





/* Hero */
.hero{
  padding-top: 10px;
}

.title{
  margin: 8px 0 0 0;
  font-size: clamp(16px, 2.1vw, 22px);
  font-weight: 900;
  letter-spacing: .2px;
  text-align:center;
  color: var(--white);
}

/* Language selector */
.lang{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

.lang-btn{
  appearance: none;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.lang-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(251,240,8,.40);
  background: rgba(255,255,255,.08);
}

.lang-btn img{
  width: 34px;
  height: 24px;
  display:block;
  border-radius: 6px;
}

/* Sections */
.section{
  padding: 14px 0 22px 0;
}

.tagline{
  margin: 0;
  padding: 14px 14px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(251,240,8,.20), rgba(255,255,255,.04));
  border: 1px solid rgba(251,240,8,.35);
  box-shadow: var(--shadow);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  letter-spacing: .2px;
  font-size: clamp(18px, 2.4vw, 28px);
}

.body{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
  font-size: clamp(14px, 1.45vw, 16px);
}

.soft-panel{
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0; /* “aire” arriba/abajo sin afectar al centrado */
}

/* Contenedor full width centrado */
.logo-bleed{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  display: flex;               /* 🔑 */
  justify-content: center;     /* 🔑 */
  align-items: center;

  background: var(--panel);
}

/* Imagen centrada de verdad */
.logo-bleed img{
  display: block;
  max-width: 100%;             /* nunca se sale */
  height: auto;
  margin: 0 auto;              /* 🔑 centrado óptico */
}



/* CTA buttons */
.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .2px;
  min-width: min(360px, 100%);
  border: 1px solid transparent;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.btn-primary{
  background: var(--yellow);
  color: var(--black);
  border-color: rgba(0,0,0,.25);
}

.btn-primary:hover{
  transform: translateY(-1px);
}

.btn-ghost{
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-color: var(--border);
}

.btn-ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(251,240,8,.35);
  background: rgba(255,255,255,.09);
}

/* Direct dial */
.direct-dial{
  display:block;
  width: 100%;
  text-align:center;
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(251,240,8,.10);
  border: 1px solid rgba(251,240,8,.35);
  font-weight: 950;
  letter-spacing:.2px;
}

.direct-dial:hover{
  background: rgba(251,240,8,.14);
}

/* Footer */
.footer{
  padding: 18px 0 26px 0;
  color: var(--muted2);
  font-size: 12px;
}

.footer-inner{
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
}

.dot{
  opacity: .6;
}

/* Small tweaks */
@media (max-width: 520px){
  :root{ --pad: 14px; }
  .btn{ min-width: 100%; }
}

