/* Banner convocatoria /sumarme — compartido (home + cuerpo activo) */
.home-sumarme-banner {
    padding: 1.5rem 0 2rem;
}

.home-sumarme-banner-link {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
    padding: 2.35rem 2.5rem;
    border-radius: 22px;
    border: 1px solid rgba(225, 6, 19, 0.55);
    background:
        linear-gradient(115deg, rgba(225, 6, 19, 0.32) 0%, rgba(120, 8, 14, 0.55) 28%, rgba(18, 12, 12, 0.98) 62%, #0c0c0c 100%);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 80px rgba(225, 6, 19, 0.12);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-sumarme-banner-link:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 80, 90, 0.75);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(225, 6, 19, 0.22);
    color: inherit;
}

.home-sumarme-banner-glow {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 55%;
    height: 160%;
    background: radial-gradient(circle, rgba(225, 6, 19, 0.35) 0%, transparent 65%);
    pointer-events: none;
    animation: home-sumarme-pulse 4.5s ease-in-out infinite;
}

.home-sumarme-banner-content {
    position: relative;
    z-index: 1;
}

.home-sumarme-banner-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(225, 6, 19, 0.25);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}

.home-sumarme-banner-content h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.65rem, 3.5vw, 2.45rem);
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.home-sumarme-banner-content p {
    margin: 0 0 1.35rem;
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.home-sumarme-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.45rem;
    border-radius: 12px;
    background: #fff;
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.home-sumarme-banner-link:hover .home-sumarme-banner-cta {
    background: var(--red);
    color: #fff;
    transform: translateX(4px);
}

.home-sumarme-banner-points {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-sumarme-banner-points li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
}

.home-sumarme-banner-points li::before {
    content: '';
    flex-shrink: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--red-light);
    box-shadow: 0 0 0 4px rgba(225, 6, 19, 0.25);
}

@keyframes home-sumarme-pulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

@media (max-width: 900px) {
    .home-sumarme-banner-link {
        grid-template-columns: 1fr;
        padding: 1.75rem 1.5rem;
        gap: 1.35rem;
    }

    .home-sumarme-banner-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .home-sumarme-banner-points li {
        flex: 1 1 auto;
        min-width: calc(50% - 0.4rem);
    }
}

@media (max-width: 560px) {
    .home-sumarme-banner-points {
        flex-direction: column;
    }

    .home-sumarme-banner-points li {
        min-width: 0;
        width: 100%;
    }

    .home-sumarme-banner-cta {
        width: 100%;
        justify-content: center;
    }
}
