/* Reset general para esta página */
.acerca-de-page { font-family: 'Roboto', sans-serif; }

/* Historia Premium Centrada */
.acerca-de-page .historia-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}
.acerca-de-page .historia-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 99, 3, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 99, 3, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
.acerca-de-page .historia-header {
    text-align: center;
    margin-bottom: 80px;
}
.acerca-de-page .historia-main-title {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}
.acerca-de-page .historia-main-subtitle {
    font-size: 1.4rem;
    color: #b0b0b0;
    margin: 0;
    font-weight: 300;
}
.acerca-de-page .historia-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.acerca-de-page .historia-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 99, 3, 0.15);
    border: 2px solid #ff6303;
    border-radius: 50px;
    color: #ff6303;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.acerca-de-page .historia-subtitle {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    line-height: 1.2;
}
.acerca-de-page .historia-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ff6303 0%, #ff8c42 100%);
    border-radius: 3px;
}
.acerca-de-page .historia-texto-center {
    max-width: 800px;
    margin: 0 auto 60px;
}
.acerca-de-page .historia-texto-center p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #b0b0b0;
    margin-bottom: 25px;
    text-align: center;
}
.acerca-de-page .historia-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 99, 3, 0.3);
    border-bottom: 1px solid rgba(255, 99, 3, 0.3);
}
.acerca-de-page .stat-item { text-align: center; padding: 20px; }
.acerca-de-page .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff6303;
    margin-bottom: 10px;
    line-height: 1;
}
.acerca-de-page .stat-item p {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
    font-weight: 500;
}
.acerca-de-page .historia-video-wrapper {
    max-width: 800px;
    margin: 60px auto;
}
.acerca-de-page .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 99, 3, 0.2);
}
.acerca-de-page .video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 20px;
}
.acerca-de-page .historia-cta {
    margin-top: 50px;
}
.acerca-de-page .btn-premium {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ff6303 0%, #ff8c42 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 99, 3, 0.3);
    border: 2px solid transparent;
}
.acerca-de-page .btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 99, 3, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Equipo */
.acerca-de-page .team-section {
    padding: 100px 0;
    background: #1a1a1a;
}
.acerca-de-page .team-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.acerca-de-page .section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}
.acerca-de-page .section-title.center { text-align: center; }
.acerca-de-page .section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 60px;
}
.acerca-de-page .section-subtitle.center { text-align: center; }
.acerca-de-page .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.acerca-de-page .team-card {
    background: #252525;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.acerca-de-page .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 99, 3, 0.2);
}
.acerca-de-page .team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff6303;
}
.acerca-de-page .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.acerca-de-page .team-name {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}
.acerca-de-page .team-role {
    color: #ff6303;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}
.acerca-de-page .team-bio {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Filosofía */
.acerca-de-page .philosophy-section {
    padding: 100px 0;
    background: #0a0a0a;
}
.acerca-de-page .philosophy-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.acerca-de-page .philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.acerca-de-page .philosophy-item {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #ff6303;
    transition: transform 0.3s ease;
}
.acerca-de-page .philosophy-item:hover {
    transform: translateX(10px);
}
.acerca-de-page .philosophy-number {
    font-size: 3rem;
    color: #ff6303;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0.5;
}
.acerca-de-page .philosophy-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}
.acerca-de-page .philosophy-text {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA */
.acerca-de-page .cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6303 0%, #ff8c42 100%);
    text-align: center;
}
.acerca-de-page .cta-container { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.acerca-de-page .cta-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}
.acerca-de-page .cta-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
}
.acerca-de-page .btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.acerca-de-page .btn-orange {
    background: #ffffff;
    color: #ff6303;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.acerca-de-page .btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 968px) {
    .acerca-de-page .historia-main-title { font-size: 2.8rem; }
    .acerca-de-page .historia-main-subtitle { font-size: 1.2rem; }
    .acerca-de-page .historia-subtitle { font-size: 2rem; }
    .acerca-de-page .historia-stats { grid-template-columns: 1fr; gap: 20px; }
    .acerca-de-page .stat-number { font-size: 2.5rem; }
    .acerca-de-page .historia-section { padding: 80px 0; }
    .acerca-de-page .historia-header { margin-bottom: 50px; }
    .acerca-de-page .team-grid { grid-template-columns: 1fr; }
    .acerca-de-page .philosophy-grid { grid-template-columns: 1fr; }
    .acerca-de-page .section-title { font-size: 2rem; }
}