/* Estilos para la sección Nosotros/Por qué elegirnos */

.about {
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 106, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
    position: relative;
    padding-bottom: 25px;
}

.about-lead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-primary);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 106, 0, 0.1);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-primary);
    transition: height 0.5s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.15);
}

.about-card:hover::before {
    height: 100%;
}

.about-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    background: rgba(255, 106, 0, 0.2);
    transform: scale(1.1);
}

.about-icon i {
    font-size: 28px;
    color: var(--color-primary);
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.about-card:hover h3::after {
    width: 60px;
}

.about-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background: rgba(255, 106, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 106, 0, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-text {
    color: #e0e0e0;
    font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}
