/* Estilos para la sección Sobre Nosotros */
.about-content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: center;
}

.about-philosophy-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Ajustes para el carrusel de logos en la columna derecha */
.about-right-col .tilted-logos-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.philosophy-text-secondary {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.about-stats-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex: 1;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #8A2BE2, #FF69B4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Estilos para el signo + giratorio */
.rotating-plus {
    font-size: 3.5rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8A2BE2, #FF69B4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: transform 0.3s ease;
    transform-origin: center center;
    will-change: transform;
    /* Asegurar que el + esté perfectamente centrado */
    line-height: 1;
    text-align: center;
}

.rotating-plus.active {
    opacity: 1;
}

/* Estilos para el carrusel de logos sin encuadrar */
.tilted-logos-container {
    width: 100%;
    position: relative;
    margin: 3rem 0;
    overflow: visible !important;
}

.tilted-logos-wrapper {
    transform-style: preserve-3d;
    transform: rotateX(20deg) rotateZ(-12deg);
    overflow: visible !important;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-philosophy-col, 
    .about-right-col {
        width: 100%;
    }
    
    .about-main-video {
        height: 250px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-stats-row {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 50%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .stat-item {
        flex: 0 0 100%;
    }
}
