/* -------------------------------- */
/* LOGO REDONDO */
/* -------------------------------- */
#logo-redondo {
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: auto;
    object-fit: cover;
}

/* -------------------------------- */
/* CONFIGURACIÓN GENERAL */
/* -------------------------------- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #000000;
}

.top-logo {
    padding: 20px;
}

/* -------------------------------- */
/* HERO / PRIMERA SECCIÓN */
/* -------------------------------- */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    padding: 80px 8%;
}

.hero-img {
    width: 45%;
    max-width: 550px;
    border-radius: 20px;
}

.hero-text {
    width: 45%;
}

.hero-title h1 {
    font-size: 55px;
    font-weight: 800;
    margin: 0 0 25px 0;
    font-family: 'BebasNeueProBoldTitle';
}

.hero-text p {
    font-size: 22px;
    line-height: 1.7;
    margin: 0 0 18px 0;
    max-width: 95%;
    font-family: 'Public Sans';
}

/* -------------------------------- */
/* SECCIÓN DE TEXTO (servicios / info) */
/* -------------------------------- */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 70px 8%;
}

.content-section h2 {
    font-size: 50px;
    font-weight: 800;
    margin: 0 0 15px 0;
    font-family: 'BebasNeueProBoldTitle';
}

.content-section p {
    font-size: 22px;
    line-height: 1.7;
    margin: 0;
    font-family: 'Public Sans';
}

/* -------------------------------- */
/* SECCIÓN QR */
/* -------------------------------- */
.qr-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 8%;
    gap: 40px;
}

.qr-img {
    width: 100%;
    max-width: 650px;
    border-radius: 18px;
}

.qr-section h2 {
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'BebasNeueProBoldTitle';
}

.qr-section p {
    font-size: 22px;
    line-height: 1.7;
    width: 80%;
    font-family: 'Public Sans';
}

/* -------------------------------- */
/* FRASE FINAL */
/* -------------------------------- */
.frase {
    text-align: center;
    padding: 100px 8%;
}

.frase p {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'BebasNeueProBoldTitle';
}

.frase span {
    display: block;
    margin-top: 40px;
    font-size: 26px;
    font-weight: 400;
    font-family: 'Public Sans';
}

/* =================================================== */
/* 📱 RESPONSIVE – MÓVIL (hasta 900px) */
/* =================================================== */
@media (max-width: 900px) {

    /* HERO */
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-img,
    .hero-text {
        width: 100%;
    }

    .hero-title h1 {
        font-size: 40px;
    }

    .hero-text p {
        font-size: 18px;
        max-width: 100%;
    }

    /* CONTENT SECTION */
    .content-section {
        grid-template-columns: 1fr;
        padding: 50px 8%;
    }

    .content-section h2 {
        font-size: 35px;
    }

    .content-section p {
        font-size: 18px;
    }

    /* QR SECTION */
    .qr-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .qr-img {
        margin-bottom: 30px;
    }

    .qr-section p {
        width: 100%;
        font-size: 18px;
    }

    /* FRASE */
    .frase p {
        font-size: 22px;
    }

    .frase span {
        font-size: 20px;
    }
}

/* =================================================== */
/* 📱➡️💻 RESPONSIVE – TABLET (900px – 1200px) */
/* =================================================== */
@media (min-width: 900px) and (max-width: 1200px) {

    .hero {
        gap: 50px;
    }

    .hero-title h1 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 20px;
    }

    .content-section h2 {
        font-size: 42px;
    }

    .content-section p {
        font-size: 20px;
    }

    .qr-section h2 {
        font-size: 45px;
    }

    .qr-section p {
        font-size: 20px;
    }
}

/* =================================================== */
/* 🖥️ RESPONSIVE – PANTALLAS GRANDES (más de 1600px) */
/* =================================================== */
@media (min-width: 1600px) {
    .hero,
    .content-section,
    .qr-section {
        max-width: 1500px;
        margin: auto;
    }
}
