.porque-elegirnos {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 50%, #f3e8ff 100%);
    position: relative;
    overflow: hidden;
}

.porque-elegirnos::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(160, 8, 178, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.porque-elegirnos::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 64, 251, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.porque-elegirnos-contenedor {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Encabezado */
.porque-elegirnos-encabezado {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(50px);
}

.porque-elegirnos-etiqueta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(160, 8, 178, 0.15);
    border: 1px solid rgba(160, 8, 178, 0.2);
}

.porque-elegirnos-etiqueta i {
    color: var(--accent);
    animation: rotate-star 3s linear infinite;
}

@keyframes rotate-star {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.porque-elegirnos-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -2px;
}

.porque-elegirnos-resaltado {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.porque-elegirnos-descripcion {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid de Ventajas */
.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.ventaja-tarjeta {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(160, 8, 178, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
}

.ventaja-tarjeta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(160, 8, 178, 0.05), rgba(224, 64, 251, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ventaja-tarjeta:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(160, 8, 178, 0.2);
    border-color: var(--primary);
}

.ventaja-tarjeta:hover::before {
    opacity: 1;
}

/* Icono de Ventaja */
.ventaja-icono-contenedor {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.5s ease;
}

.ventaja-tarjeta:hover .ventaja-icono-contenedor {
    transform: rotate(10deg) scale(1.1);
}

.ventaja-icono-contenedor::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 25px;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.ventaja-icono-contenedor i {
    color: white;
    font-size: 3rem;
}

/* Contenido de Ventaja */
.ventaja-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.ventaja-descripcion {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    position: relative;
    z-index: 2;
}

/* Sección de Estadísticas */
.estadisticas-seccion {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 5rem 4rem;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
}

.estadisticas-seccion::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.estadisticas-seccion::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.estadisticas-contenido {
    position: relative;
    z-index: 10;
}

.estadisticas-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.estadisticas-subtitulo {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 4rem;
}

.estadisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.estadistica-item {
    text-align: center;
    position: relative;
}

.estadistica-numero {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.estadistica-signo {
    font-size: 2.5rem;
    vertical-align: super;
}

.estadistica-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.estadistica-icono {
    position: absolute;
    top: -20px;
    right: 20%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.estadistica-icono i {
    color: white;
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .porque-elegirnos {
        padding: 5rem 5%;
    }

    .porque-elegirnos-titulo {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .porque-elegirnos-descripcion {
        font-size: 1rem;
    }

    .ventajas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ventaja-tarjeta {
        padding: 2.5rem 2rem;
    }

    .ventaja-icono-contenedor {
        width: 80px;
        height: 80px;
    }

    .ventaja-icono-contenedor i {
        font-size: 2.5rem;
    }

    .estadisticas-seccion {
        padding: 3rem 2rem;
        border-radius: 30px;
    }

    .estadisticas-titulo {
        font-size: 2rem;
    }

    .estadisticas-subtitulo {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .estadisticas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .estadistica-numero {
        font-size: 3rem;
    }

    .estadistica-signo {
        font-size: 2rem;
    }

    .estadistica-label {
        font-size: 0.95rem;
    }

    .estadistica-icono {
        width: 50px;
        height: 50px;
    }

    .estadistica-icono i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .porque-elegirnos-titulo {
        font-size: 2rem;
    }

    .ventaja-tarjeta {
        padding: 2rem 1.5rem;
    }

    .estadisticas-grid {
        grid-template-columns: 1fr;
    }

    .estadistica-numero {
        font-size: 2.5rem;
    }
}
