    .equipo-section .equipo-label {
        display: inline-block;
        background: transparent linear-gradient(270deg, #084DA1 0%, #EA1C22 100%) 0% 0% no-repeat padding-box;
        color: #fff;
        font-size: 1rem;
        font-family: 'Segoe UI';
        font-weight: bold;
        padding: 4px 44px;
        margin-bottom: 12px;
    }

    .equipo-section .equipo-title {
        font-size: 2.5rem;
        font-family: 'Mulish', Arial, sans-serif;
        font-weight: 900;
        color: #111;
        margin-bottom: 0.5rem;
    }

    .equipo-section .equipo-title .equipo-ayuda {
        color: #0D4C9F;
        font-weight: 800;
        text-decoration: underline;
        text-decoration-thickness: 5px;
        text-underline-offset: 6px;
    }



    .equipo-section .equipo-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-bottom: 30px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 30px;
    }

    @media (max-width: 1200px) {
        .equipo-section .equipo-cards {
            gap: 1rem;
            max-width: 1000px;
        }
    }

    @media (max-width: 991px) {
        .equipo-section .equipo-cards {
            grid-template-columns: repeat(2, 1fr);
            max-width: 600px;
        }
    }

    @media (max-width: 600px) {
        .equipo-section .equipo-cards {
            grid-template-columns: 1fr;
            max-width: 320px;
        }
    }

    .equipo-section .equipo-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08);
        padding: 3.5rem 1.5rem 1.5rem 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 300px;
        transition: all 0.3s ease;
        margin-top: 3rem;
        position: relative;
    }

    .equipo-section .equipo-card:hover {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 0 6px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    .equipo-section .equipo-card.bg-gradient {
        background: linear-gradient(90deg, #0D4C9F 0%, #E32B3A 100%);
        color: #fff;
    }

    .equipo-section .equipo-card.bg-gradient .equipo-nombre,
    .equipo-section .equipo-card.bg-gradient .equipo-cargo,
    .equipo-section .equipo-card.bg-gradient .equipo-desc {
        color: #fff;
    }

    .equipo-section .equipo-img {
        width: 110px;
        height: 110px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 1.2rem;
        background: #fff;
        position: absolute;
        top: -55px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .equipo-section .equipo-nombre {
        font-family: 'Mulish', Arial, sans-serif;
        font-weight: 900;
        font-size: 20px;
        margin-bottom: 0.2rem;
        margin-top: 2rem;
        color: #010924;
    }

    .equipo-section .equipo-cargo {
        font-family: 'Mulish', Arial, sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #010924;
        margin-bottom: 1rem;
    }

    .equipo-section .equipo-desc {
        font-family: 'Mulish', Arial, sans-serif;
        font-weight: 400;

        font-size: 0.98rem;
        color: #010924;
    }

    @media (max-width: 991px) {
        .equipo-section .equipo-cards {
            gap: 1.2rem;
        }
    }

    @media (max-width: 767px) {
        .equipo-section .equipo-title {
            font-size: 1.5rem;
        }

        .equipo-section .equipo-cards {
            flex-direction: column;
            align-items: center;
        }
    }

    .equipo-section {
        position: relative;
        overflow: hidden;
    }

    .equipo-section .container {
        position: relative;
        z-index: 2;
    }

    .equipo-section::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 50px;
        width: 650px;
        /* Ajusta el ancho según lo que necesites */
        height: 230px;
        /* Ajusta la altura según lo que necesites */
        background: linear-gradient(90deg, #0D4C9F 0%, #E32B3A 100%);
        z-index: 1;
        pointer-events: none;
    }

    @media (max-width: 600px) {
        .equipo-section::after {
            width: 75vw;
            height: 225px;
            bottom: 87px;
            right: -100px;
            left: 40px;
            margin: 0 auto;
            content: "";
            position: absolute;
        }
    }