/* =============================================================
   TuQR - Paginas publicas informativas (anunciante / hosteleria)
   ============================================================= */

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

.info-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1c2330;
    background: #fff;
    line-height: 1.6;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid #ececf1;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    z-index: 10;
}
.info-back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #5b6577;
    text-decoration: none;
    font-weight: 500;
}
.info-back:hover { color: #1c2330; }
.info-wordmark { font-family: 'VT323', monospace; font-size: 1.7rem; color: #111; }

.info-hero {
    max-width: 820px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 1.5rem;
    text-align: center;
}
.info-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .8rem;
    font-weight: 700;
    color: #2f6df6;
    margin: 0 0 .75rem;
}
.info-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: -.5px;
}
.info-hero p { font-size: clamp(1rem, 1.8vw, 1.2rem); color: #5b6577; margin: 0 auto; max-width: 620px; }

.info-benefits {
    max-width: 980px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}
.benefit {
    background: #fbfcfe;
    border: 1px solid #e8ebf1;
    border-radius: 14px;
    padding: 1.5rem;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(20,30,50,.08);
    border-color: #d3dbe8;
}
.benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: #e8f0ff;
    color: #2f6df6;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}
.benefit h3 { font-size: 1.1rem; margin: 0 0 .4rem; font-weight: 650; }
.benefit p { margin: 0; color: #5b6577; font-size: .95rem; }

/* --- CTA / contacto --- */
.info-cta {
    max-width: 560px;
    margin: 1rem auto 4rem;
    padding: 2.25rem 1.5rem;
    text-align: center;
}
.info-cta h2 { font-size: 1.5rem; margin: 0 0 1.25rem; }
.contact-form { display: flex; flex-direction: column; gap: .75rem; max-width: 380px; margin: 0 auto; }
.contact-form input {
    padding: .85rem 1rem;
    border: 1px solid #d6dae2;
    border-radius: 10px;
    font: inherit;
    font-size: 1rem;
    background: #fff;
    color: #1c2330;
}
.contact-form input:focus { outline: 2px solid #2f6df6; outline-offset: 1px; border-color: #2f6df6; }
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .9rem 1.25rem;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}
.btn-whatsapp:hover { background: #1ebe5b; color: #fff; }
.contact-phone { margin-top: 1.25rem; color: #5b6577; }
.contact-phone a { font-weight: 600; }

.info-footer {
    text-align: center;
    color: #8a93a3;
    font-size: .85rem;
    padding: 2rem 1.5rem 3rem;
    border-top: 1px solid #ececf1;
}
