/* Estilos para a página Sobre Nós - Sistema de Design Moderno */

/* Hero Section Sobre */
.sobre-hero {
    background-image: url('../public/images/textura_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: var(--space-16) 0;
    margin-bottom: var(--space-16);
}

.sobre-hero .hero-content {
    display: flex;
    align-items: center;
    gap: var(--space-12);
}

.sobre-hero .hero-text {
    flex: 1;
    background-color: var(--primary);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    color: var(--white);
}

.sobre-hero .hero-text h1 {
    font-family: var(--font-title);
    font-size: var(--text-5xl);
    margin-bottom: var(--space-6);
    color: var(--white);
}


.sobre-hero .hero-description {
    font-size: var(--text-lg);
    color: var(--white);
    line-height: 1.7;
}

.sobre-hero .hero-description p {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.sobre-hero .hero-description strong {
    color: var(--secondary);
}

.sobre-hero .hero-image {
    flex: 0 0 40%;
    position: relative;
}

.sobre-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-3xl);
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

/* Nossa História Section */
.nossa-historia-section {
    padding: var(--space-16) 0;
}

.historia-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.historia-text {
    font-size: var(--text-lg);
    line-height: 1.8;
}

.historia-text p {
    margin-bottom: var(--space-6);
    color: var(--gray-700);
}

.historia-text strong {
    color: var(--primary);
    font-weight: 600;
}

/* Mission Section */
.mission-section {
    padding: var(--space-16) 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.mission-card {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    font-size: var(--text-2xl);
    margin-bottom: 0;
}

.mission-card h3,
.values-card h3 {
    font-family: var(--font-title);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.mission-card p {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--gray-700);
}

/* Values Section */
.values-section {
    margin-top: var(--space-12);
}

.values-card {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-top: var(--space-6);
}

.values-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.value-item {
    display: inline-block;
    padding: var(--space-2) var(--space-3);
    background-color: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.value-item:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.02);
}

/* Versão alternativa com cores mais contrastantes (descomente se necessário):
.value-item {
    background-color: #2c3e50;
    color: #ffffff;
    border: 2px solid #2c3e50;
    font-weight: 700;
}

.value-item:hover {
    background-color: #ffffff;
    color: #2c3e50;
    border-color: #2c3e50;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}
*/

/* CTA Section */
.cta-section {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .section-title {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-section .section-subtitle {
    color: var(--white);
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

.cta-section .btn {
    margin: 0 var(--space-2);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary-dark);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Placeholder Images */
.placeholder-image {
    background-color: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--gray-500);
    font-style: italic;
    font-size: var(--text-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sobre-hero .hero-content {
        flex-direction: column;
        gap: var(--space-8);
    }
    
    .sobre-hero .hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .values-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sobre-hero {
        padding: var(--space-8) 0;
    }
    
    .sobre-hero .hero-text {
        padding: var(--space-6);
    }
    
    .sobre-hero .hero-text h1 {
        font-size: var(--text-3xl);
    }
    
    .sobre-hero .hero-text h1 span {
        font-size: var(--text-4xl);
    }
    
    .nossa-historia-section,
    .mission-section {
        padding: var(--space-8) 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .values-column {
        gap: var(--space-2);
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: var(--space-4);
    }
    
    .placeholder-image {
        height: 300px;
    }
}