/* Estilos para la nueva sección de Rol y Manifiesto basada en la imagen de referencia */
.gradient-text:after {
    display: none;
}

.rol-card-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #770AE8;
}fiesto-section {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    margin: 50px 0;
    background-color: #fff;
}

.rol-manifiesto-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    position: relative;
}

.rol-manifiesto-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.rol-manifiesto-title h2 {
    font-size: 42px;
    font-weight: bold;
    color: #031851; /* Color azul oscuro corporativo */
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.rol-manifiesto-title h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #770AE8;
    width: 80px;
    margin: 0 auto;
}

.rol-manifiesto-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.rol-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.rol-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.rol-card-title {
    color: #031851;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
}

.gradient-text {
    background: linear-gradient(to right, #FFC702, #FF4F00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    font-weight: 700;
}

.rol-card-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #770AE8;
}

.rol-card-text {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    color: #031851;
    line-height: 1.3;
}

/* Estilos para las formas geométricas decorativas */
.shape-left {
    position: absolute;
    left: -150px;
    top: 10%;
    width: 500px;
    height: 500px;
    background-color: rgba(119, 10, 232, 0.05); /* Violeta muy claro */
    border-radius: 50%;
    z-index: 1;
}

.shape-right {
    position: absolute;
    right: -150px;
    bottom: 10%;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 199, 2, 0.05); /* Amarillo muy claro */
    border-radius: 50%;
    z-index: 1;
}

.shape-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background-color: rgba(255, 79, 0, 0.03); /* Naranja muy claro */
    border-radius: 50%;
    z-index: 1;
}

.rol-banner {
    background-color: #031851;
    color: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 40px auto 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.rol-banner p {
    font-size: 24px;
    line-height: 1.5;
    margin: 0;
    color: white;
}

@media (max-width: 768px) {
    .rol-manifiesto-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .rol-card {
        width: 90%;
        max-width: 320px;
    }
    
    .rol-banner {
        padding: 20px;
    }
    
    .rol-banner p {
        font-size: 20px;
    }
}
