/* About Page Styles */
.about-page {
    background: linear-gradient(135deg, #0F1B1B 0%, #1C2121 100%);
    color: #fff;
    min-height: 100vh;
    position: relative;
}

/* Contenedor principal con fondo uniforme */
.main-content {
    background: linear-gradient(135deg, #0F1B1B 0%, #1C2121 100%);
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(79, 209, 197, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79, 209, 197, 0.05) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

/* Hero Section */
.about-hero {
    padding: 120px 0 80px;
    position: relative;
    z-index: 2;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.about-hero__title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;
}

.about-hero__subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #4fd1c5;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 209, 197, 0.2);
}

.value-title {
    font-size: 1.8rem;
    color: #4fd1c5;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Timeline */
.values-timeline {
    position: relative;
    margin: 4rem 0;
}

.timeline-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #4fd1c5 25%, #4fd1c5 75%, transparent 100%);
    position: relative;
}

.timeline-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -8px;
    width: 100%;
    padding: 0 12.5%;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: #4fd1c5;
    border-radius: 50%;
    border: 3px solid #1C2121;
}

/* Testimonial Quote */
.testimonial-quote {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(79, 209, 197, 0.1);
    border-radius: 15px;
    border-left: 4px solid #4fd1c5;
}

.testimonial-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Principles Section */
.principles-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.principle-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-3px);
    border-color: #4fd1c5;
}

.principle-number {
    width: 60px;
    height: 60px;
    background: #4fd1c5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #0a0f0f;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 2.5rem;
    color: #4fd1c5;
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4fd1c5;
}

.contact-section h3 {
    color: #4fd1c5;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0;
}

.footer-bottom .footer__legal-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom .footer__legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom .footer__legal-links a:hover {
    color: #4fd1c5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero__title {
        font-size: 2.5rem;
    }

    .about-hero__subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .timeline-dots {
        padding: 0 5%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
