/* ─────────────────────────────────────────────────────────────────────────── */
/* Banner — Middle Banner (Full Width CTA) */
/* ─────────────────────────────────────────────────────────────────────────── */
.fe-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.fe-banner--middle {
    background: #265FF1;
    padding: 3rem 0;
    overflow: hidden;
}

/* Decoración de fondo con isotipo */
.fe-banner__bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml;utf8,<svg width="264" height="264" viewBox="0 0 264 264" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.09"><path d="M238.008 78.3636V17.1599H147.638H86.4348V78.3636V122.944V184.299H147.638H238.008V122.944H147.638V78.3636H238.008Z" fill="%23FFFFFF"/><path d="M86.4348 184.303H25.0801V245.658H86.4348V184.303Z" fill="%23FFFFFF"/></g></svg>'),
        url('data:image/svg+xml;utf8,<svg width="264" height="264" viewBox="0 0 264 264" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.09"><path d="M238.008 78.3636V17.1599H147.638H86.4348V78.3636V122.944V184.299H147.638H238.008V122.944H147.638V78.3636H238.008Z" fill="%23FFFFFF"/><path d="M86.4348 184.303H25.0801V245.658H86.4348V184.303Z" fill="%23FFFFFF"/></g></svg>');
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
    background-size: 300px 300px, 300px 300px;
    pointer-events: none;
}

/* Contenido del banner */
.fe-banner__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

/* Texto del banner */
.fe-banner__text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.fe-banner__titulo {
    display: block;
    color: #FFF;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

.fe-banner__descripcion {
    color: #FFF;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

/* Botón CTA */
.fe-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: #000D59;
    color: #FFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    width: fit-content;
    flex-shrink: 0;
}

.fe-banner__cta:hover {
    background: #001080;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .fe-banner__content {
        gap: 2rem;
    }

    .fe-banner__titulo {
        font-size: 24px;
        line-height: 32px;
    }

    .fe-banner__descripcion {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .fe-banner--middle {
        padding: 2rem 0;
    }

    .fe-banner__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .fe-banner__titulo {
        font-size: 20px;
        line-height: 28px;
    }

    .fe-banner__descripcion {
        font-size: 0.85rem;
    }

    .fe-banner__bg-decoration {
        background-size: 200px 200px;
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .fe-banner__content {
        padding: 0 1.5rem;
    }

    .fe-banner__titulo {
        font-size: 18px;
        line-height: 24px;
    }

    .fe-banner__descripcion {
        font-size: 0.8rem;
    }

    .fe-banner__cta {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}
