.banner-principal {
    max-width: 1100px;
    margin: 20px auto 30px;
    border: 3px solid #000;
    position: relative;
    overflow: hidden;
}

.banner-secundario {
    margin-top: 35px;
}

.texto-polos {
    font-family: "Smooch Sans", sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 34px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.58));
    color: #ffffff;
    text-align: left;
    overflow-y: auto;
}

.texto-polos h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(34px, 2.8vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.texto-polos p {
    font-family: "Oswald", sans-serif;
    margin-bottom: 8px;
    line-height: 1.65;
    font-size: 1.55rem;
    font-weight: 500;
    text-align: justify;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.banner-principal img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-texto {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
    background: rgba(0, 0, 0, 0.25);
    padding: 12px;
}

.banner-texto .linea-uno {
    font-family: "Smooch Sans", sans-serif;
    font-size: clamp(20px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: 1px;
}

.banner-texto .linea-dos {
    font-family: "Smooch Sans", sans-serif;
    font-size: clamp(30px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-top: 6px;
    color: #000;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.65);
}

.form-banner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.form-banner-frame {
    width: 840px;
    max-width: 95vw;
    height: 640px;
    border: 0;
    background: transparent;
}

@media (max-width: 768px) {
    .form-banner-overlay {
        padding: 10px;
    }

    .form-banner-frame {
        width: 90vw;
        max-width: 420px;
        height: 560px;
    }

    .banner-principal {
        margin: 16px auto 22px;
    }

    .banner-secundario {
        margin-top: 24px;
    }

    .texto-polos {
        font-family: "Smooch Sans", sans-serif;
        width: 40%;
        height: 100%;
        justify-content: flex-start;
        padding: 10px 12px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.45));
        text-align: left;
        overflow-y: hidden;
    }

    .texto-polos h2 {
        font-family: "Oswald", sans-serif;
        font-size: 1rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .texto-polos p {
        font-family: "Oswald", sans-serif;
        font-size: 0.72rem;
        line-height: 1.2;
        margin-bottom: 4px;
        text-align: justify;
    }
}

@media (max-width: 390px) {
    .form-banner-overlay {
        padding: 6px;
    }

    .form-banner-frame {
        width: 92vw;
        max-width: 360px;
        height: 520px;
    }

    .texto-polos {
        width: 40%;
        justify-content: flex-start;
        padding: 8px 10px;
        text-align: justify;
    }

    .texto-polos h2 {
        font-size: 0.8rem;
        margin-bottom: 2px;
        line-height: 1.1;
    }

    .texto-polos p {
        font-size: 0.56rem;
        line-height: 1.1;
        margin-bottom: 2px;
        text-align: justify;
    }
}

@media (max-width: 320px) {
    .texto-polos {
        width: 40%;
        padding: 6px 8px;
        text-align: justify;
    }

    .texto-polos h2 {
        font-size: 0.72rem;
        margin-bottom: 2px;
    }

    .texto-polos p {
        font-size: 0.5rem;
        line-height: 1.05;
        margin-bottom: 2px;
        text-align: justify;
    }
}

