/* ESTILOS ADICIONALES PARA ABOUT US PAGE */

/* Section Header - Usado en múltiples secciones */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 72px;
    line-height: 65px;
    margin-bottom: 20px;
    color: #010101;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #ffffff;
}

/* Feature Cards Grid */
.feature-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.feature-card:hover {
    border-color: #ff5d15;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.feature-card h3 {
    font-size: 45px;
    font-weight: 700;
    color: #010101;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #010101;
    margin: 0;
}

/* Pricing Grid - Versión para About Us */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-features {
    padding: 0;
}

.pricing-features p {
    margin: 0;
}

/* Testimonials Section - Usado para Team */
.testimonials {
    padding: 120px 0;
    background: #F7F8FB;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.testimonial-card:hover {
    border-color: #ff5d15;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
    transform: translateY(-4px);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    text-transform: none;
}

.testimonial-author span {
    font-size: 14px;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #010101;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #ff5d15;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-logo svg {
    width: 220px;
    height: auto;
}

.footer-logo svg path {
    fill: #ffffff;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s;
}

.social-icon:hover {
    background: #ff5d15;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-text {
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #ff5d15;
}

/* Hero Image Styles */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-visual.image-container {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .section-header h2,
    .cta-content h2 {
        font-size: 44px;
        line-height: 44px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .features,
    .testimonials,
    .cta {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 40px;
        line-height: 40px;
    }
    
    .section-header p {
        font-size: 17px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 15px;
    }
    
    .cta-content h2 {
        font-size: 36px;
        line-height: 36px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 968px) {
  .hero-text h1 {
    font-size: 55px;
  }
  .hero-text {
  margin-bottom: 0px;
}
.section-header h2 {
    padding-top: 40px;
}

.pricing-header h3 {
    font-size: 32px;
}
.cta p {
    font-size: 18px;
}
.cta-buttons {
    display: flex;
}
.feature-card h3 {
    font-size: 32px;
}
}

/* Desktop Large - Better spacing */
@media (min-width: 1400px) {
    .nav-menu {
        gap: 50px;
    }

    .nav-link {
        font-size: 18px;
    }
}