:root{
  --bg:#0c0f14;             /* fondo oscuro general */
  --card:#121722;           /* tarjetas ligeramente más claras */
  --text:#e8eef7;           /* texto principal */
  --muted:#a9b3c6;          /* texto secundario */
  --accent:#8ab4ff;         /* acento frío coherente con la home */
  --accent-2:#b5ffd9;       /* acento secundario suave */
  --shadow: 0 12px 40px rgba(255,255,255,.08); /* halo blanquecino */
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body.eidos-body{
  margin:0;
  font-family:"Open Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* -------- Hero (banner claro) -------- */
.eidos-hero {
  background: url("../images/header-bg.gif") center center / cover no-repeat;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
  min-height: 200px;
}

.eidos-hero__inner{
  max-width:1100px;
  margin:0 auto;
  padding:32px 20px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}
.eidos-overline{
  margin:0 0 4px 0;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  font-size:.8rem;
  color:#3b4452;
}
.eidos-hero__title{
  margin:0;
  font-size:clamp(1.6rem,2.5vw,2.4rem);
  line-height:1.2;
  font-weight:800;
}
.eidos-hero__title span{color:#2e5cff}
.eidos-hero__subtitle{
  margin:.4rem 0 0;
  color:#4a5568;
  font-weight:600;
}
.eidos-hero__cta .eidos-btn{margin-top:6px}

/* -------- Secciones y tarjetas -------- */
.eidos-section{
  padding:40px 20px;
}
.eidos-card{
  max-width:1100px;
  margin:0 auto;
  background:var(--card);
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
}

/* Grid principal: oferta + portada a la derecha */
.eidos-card--grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
}

.eidos-hero__title span {
  font-family: 'Cinzel', serif;
  font-weight: 200;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

@media (max-width: 900px){
  .eidos-card--grid{grid-template-columns:1fr}
}

/* Titulares */
.eidos-h2{
  margin:0 0 10px 0;
  font-size:1.4rem;
  font-weight:800;
}
.eidos-lead{
  margin:0 0 18px 0;
  color:var(--muted);
  font-size:1.05rem;
}

/* Precios */
.eidos-prices{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin:14px 0 12px;
}
@media (max-width:600px){
  .eidos-prices{grid-template-columns:1fr}
}
.eidos-price{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:16px;
}
.eidos-price__title{
  margin:0 0 2px 0;
  font-size:1rem;
  font-weight:700;
}
.eidos-price__amount{
  margin:0 0 4px 0;
  font-size:1.6rem;
  font-weight:800;
  color:var(--accent);
}
.eidos-price__note{
  margin:0;
  color:var(--muted);
  font-size:.9rem;
}

/* Bullets */
.eidos-bullets{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.eidos-bullets li{margin:.25rem 0}

/* CTA buttons */
.eidos-cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}
.eidos-cta-row--end{justify-content:flex-end}

/* Portada */
.eidos-cover{
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
}
.eidos-cover img{
  max-width:520px;
  width:100%;
  height:auto;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.eidos-cover figcaption{
  color:var(--muted);
  font-size:.9rem;
}

/* Pasos */
.eidos-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:8px;
}
@media (max-width:1000px){
  .eidos-steps{grid-template-columns:1fr}
}
.eidos-step{
  display:flex;
  gap:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:16px;
  box-shadow:var(--shadow);
}
.eidos-step__num{
  flex:0 0 36px;
  width:36px;height:36px;
  display:grid;place-items:center;
  font-weight:800;
  border-radius:50%;
  color:#0b1220;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  box-shadow:0 6px 22px rgba(138,180,255,.25);
}
.eidos-step__title{
  margin:0 0 6px 0;
  font-size:1.05rem;
  font-weight:800;
}
.eidos-step__body p{margin:.25rem 0}
.eidos-step__row{
  display:flex;align-items:center;gap:12px;margin-top:10px;
}
.eidos-qr{
  display:block;border-radius:8px;border:1px solid rgba(255,255,255,.08);
}

/* FAQ */
.eidos-faq{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
@media (max-width:1000px){
  .eidos-faq{grid-template-columns:1fr}
}
.eidos-faq__item{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:16px;
  box-shadow:var(--shadow);
}
.eidos-faq__q{
  margin:0 0 6px 0;
  font-size:1.05rem;
  font-weight:800;
}
.eidos-faq__a{color:var(--muted);margin:0}

/* Botones */
.eidos-btn{
  appearance:none;
  border:0;
  border-radius:12px;
  padding:10px 16px;
  font-weight:800;
  letter-spacing:.02em;
  cursor:pointer;
  text-decoration:none;
  color:#0b1220;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  box-shadow:0 8px 26px rgba(138,180,255,.25);
  transition:transform .08s ease, box-shadow .2s ease, filter .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.eidos-btn:hover{transform:translateY(-1px)}
.eidos-btn:active{transform:translateY(0)}

.eidos-btn--secondary{
  color:var(--text);
  background:transparent;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.eidos-btn--ghost{
  color:#1b2450;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

/* Pequeños */
.eidos-small{color:var(--muted);font-size:.9rem}

/* Footer */
.eidos-footer{
  padding:30px 20px 60px;
  text-align:center;
  color:var(--muted);
  border-top:1px solid rgba(255,255,255,.06);
}

/* Accesibilidad: foco visible */
a:focus,button:focus{
  outline:2px solid var(--accent);
  outline-offset:2px;
}
.eidos-step a,
.eidos-faq a {
  color: var(--accent);
  font-weight: 700;
}
.eidos-step a:hover,
.eidos-faq a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

/* ----- Visibilidad de enlaces ----- */
a { color: var(--accent); text-decoration: none; font-weight: 600; }
a:hover, a:focus { color: var(--accent-2); text-decoration: underline; outline: none; }

/* ----- Grid de QR y tarjetas ----- */
.eidos-qr-grid{
  display:grid;
  grid-template-columns: repeat(2, 180px);
  gap:16px;
  align-items:start;
  margin:12px 0 6px;
}
@media (max-width:560px){
  .eidos-qr-grid{ grid-template-columns: 1fr; }
}
.eidos-qr-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:12px;
  text-align:center;
  box-shadow:var(--shadow);
}
.eidos-qr__label{
  font-weight:800;
  margin:2px 0 8px 0;
}

/* Ghost */
.eidos-btn--ghost {
  color:#1b2450;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  transition: all .2s ease;
}
.eidos-btn--ghost:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow:0 6px 20px rgba(138,180,255,.45);
}

.eidos-hero__title,
.eidos-hero__title span,
.eidos-hero__subtitle,
.eidos-overline {
  color: #fff !important;
  text-shadow: 0 3px 8px rgba(0,0,0,0.8);
}

/* Fix responsive botón Volver en el hero */
.eidos-hero__inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.eidos-hero__cta{ 
  flex:0 0 auto; 
  margin-left:auto;
}
.eidos-hero__cta .eidos-btn{
  white-space:nowrap;
}
@media (max-width: 720px){
  .eidos-hero__inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .eidos-hero__cta{
    align-self:flex-start;
    margin-left:0;
    width:100%;
  }
  .eidos-hero__cta .eidos-btn{
    width:max-content;
  }
}
.eidos-hero__title{
  font-size:clamp(1.6rem, 5.2vw, 2.6rem);
  line-height:1.15;
}

/* --- FAQ: botón "Pedir ahora" a la izquierda, resto derecha --- */
#faq .eidos-cta-row {
  justify-content: space-between;
}
#faq .eidos-cta-row .eidos-btn:first-child {
  margin-right: auto;
}

/* --- Hover en verde Eidos (#304D1D) --- */
.eidos-btn:hover,
.eidos-btn:focus {
  background: #304D1D !important;
  border-color: #304D1D !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(48, 77, 29, 0.45);
  transform: translateY(-1px);
  filter: none;
}
.eidos-btn--secondary:hover,
.eidos-btn--secondary:focus,
.eidos-btn--ghost:hover,
.eidos-btn--ghost:focus {
  background: #304D1D !important;
  border-color: #304D1D !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(48, 77, 29, 0.45);
}
