/* ============================================
   BENEFICIOS PARA EL DESARROLLO - FONDO UNIFICADO
   Colores pasteles que predominan - ALMA Kids
   ============================================ */

/* Fondo unificado pastel para toda la sección */
.benefits-section {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E9 50%, #FFF0F5 100%) !important;
    padding: 4rem 2rem !important;
    margin: 3rem 0 !important;
    border-radius: 30px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(255, 182, 193, 0.2) !important;
    border: 2px solid rgba(255, 182, 193, 0.3) !important;
}

/* Efecto de partículas/estrellas de fondo */
.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    background-position: 0 0, 50px 50px, 100px 100px;
    pointer-events: none;
    opacity: 0.6;
}

/* Título de la sección */
.benefits-section h3 {
    text-align: center !important;
    color: #8B4A6B !important;
    margin-bottom: 3rem !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    position: relative !important;
    z-index: 1 !important;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8) !important;
}

/* Grid de beneficios - sin espacios blancos */
.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-top: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Tarjetas de beneficios - diseño unificado con colores pasteles */
.benefit-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 245, 0.9) 100%) !important;
    padding: 2.5rem 2rem !important;
    border-radius: 24px !important;
    box-shadow: 
        0 8px 25px rgba(255, 182, 193, 0.25),
        0 4px 15px rgba(255, 182, 193, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid rgba(255, 182, 193, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Efecto de brillo sutil en las tarjetas */
.benefit-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.benefit-item:hover::before {
    opacity: 1;
}

/* Hover mejorado */
.benefit-item:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(255, 182, 193, 0.7) !important;
    box-shadow: 
        0 15px 40px rgba(255, 182, 193, 0.35),
        0 8px 20px rgba(255, 182, 193, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 240, 245, 0.95) 100%) !important;
}

/* Iconos de beneficios - colores pasteles variados */
.benefit-item:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #FFB6C1, #FFC0CB) !important;
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4) !important;
}

.benefit-item:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #DDA0DD, #E6D3E6) !important;
    box-shadow: 0 8px 20px rgba(221, 160, 221, 0.4) !important;
}

.benefit-item:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #98D8C8, #B8E6D3) !important;
    box-shadow: 0 8px 20px rgba(152, 216, 200, 0.4) !important;
}

.benefit-item:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #87CEEB, #B0E0E6) !important;
    box-shadow: 0 8px 20px rgba(135, 206, 235, 0.4) !important;
}

.benefit-item:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, #FFD700, #FFE4B5) !important;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4) !important;
}

.benefit-item:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, #FFA07A, #FFB6C1) !important;
    box-shadow: 0 8px 20px rgba(255, 160, 122, 0.4) !important;
}

.benefit-icon {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    font-size: 2rem !important;
    color: white !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    z-index: 1 !important;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Títulos de beneficios */
.benefit-item h4 {
    color: #8B4A6B !important;
    margin-bottom: 1rem !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Texto de beneficios */
.benefit-item p {
    color: #6B4C5C !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 1.5rem !important;
        border-radius: 20px !important;
    }
    
    .benefits-section h3 {
        font-size: 1.6rem !important;
        margin-bottom: 2rem !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .benefit-item {
        padding: 2rem 1.5rem !important;
    }
    
    .benefit-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.8rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

