/**
 * aboutUs.css
 * Estilos específicos para Quem Somos
 * Wini.IA - Versão Profissional Corporativa
 */

/* ===================================
   HERO SECTION
   =================================== */
   .about-hero {
    background: linear-gradient(135deg, #1A1F3A, #2C3E7C);
    padding: 120px 0 80px 0;
    margin-top: 80px; /* Valor fixo em vez de variável CSS */
    color: #FFFFFF;
    text-align: center;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #FFFFFF;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #E2E8F0;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   MISSION SECTION
   =================================== */
.about-mission-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-mission-item {
    text-align: center;
    padding: 30px 20px;
}

.about-mission-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1F3A;
    margin-bottom: 15px;
}

.about-mission-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #6B7280;
}

/* ===================================
   STORY SECTION
   =================================== */
.about-story-section {
    background: #F8FAFB;
    padding: 80px 0;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A1F3A;
    text-align: center;
    margin-bottom: 50px;
}

.about-story-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 25px;
}

/* ===================================
   TECH SECTION
   =================================== */
.about-tech-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.about-tech-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #6B7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-tech-card {
    background: #F8FAFB;
    border: 1px solid #E8F0FE;
    border-radius: 12px;
    padding: 35px;
}

.about-tech-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1F3A;
    margin-bottom: 15px;
}

.about-tech-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #6B7280;
}

/* ===================================
   VALUES SECTION
   =================================== */
.about-values-section {
    background: linear-gradient(135deg, #1A1F3A, #2C3E7C);
    padding: 80px 0;
    color: #FFFFFF;
}

.about-values-section .about-section-title {
    color: #FFFFFF;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.about-value-item {
    position: relative;
}

.about-value-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 15px;
}

.about-value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.about-value-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #E2E8F0;
}

/* ===================================
   CTA SECTION
   =================================== */
.about-cta-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.about-cta-box {
    background: linear-gradient(135deg, #F8FAFB, #E8F0FE);
    border: 2px solid #6B46C1;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A1F3A;
    margin-bottom: 20px;
}

.about-cta-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   RESPONSIVIDADE - TABLET
   =================================== */
@media (max-width: 992px) {
    .about-main-title {
        font-size: 2.8rem;
    }
    
    .about-mission-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   RESPONSIVIDADE - MOBILE
   =================================== */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px 0;
    }
    
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-mission-section,
    .about-story-section,
    .about-tech-section,
    .about-values-section,
    .about-cta-section {
        padding: 60px 0;
    }
    
    .about-section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-cta-box {
        padding: 40px 25px;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-cta-buttons .discord-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .about-tech-card {
        padding: 25px;
    }
}