/**
 * Features Section - Por Qué Elegirnos (Rediseñado)
 */

.features {
    padding: 6rem 1rem;
    background: #111;
}

.features__container {
    max-width: 1200px;
    margin: 0 auto;
}

.features__title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.features__title-highlight {
    color: #f97316;
    font-style: italic;
}

.features__subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 4rem;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.features__card {
    background: #1c1c1c;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.features__card:nth-child(1) {
    transition-delay: 0ms;
}

.features__card:nth-child(2) {
    transition-delay: 150ms;
}

.features__card:nth-child(3) {
    transition-delay: 300ms;
}

.features__card:hover {
    border-color: #f97316;
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.2);
}

.features__icon {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.features__icon svg {
    width: 36px;
    height: 36px;
    color: #f97316;
}

.features__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.features__card-text {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features {
        padding: 4rem 1rem;
    }
    
    .features__title {
        font-size: 2rem;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
