/* Página Sobre - Layout Melhorado */

/* Container Estreito */
.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.sobre-hero {
    background: linear-gradient(135deg, #1f3044 0%, #2d4a68 100%);
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(200, 169, 97, 0.2);
    color: #c8a961;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.sobre-hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-hero .lead {
    font-size: 1.5rem;
    color: #c8a961;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Sections */
.sobre-section {
    padding: 6rem 0;
}

.bg-light {
    background: #f8f9fa;
}

.bg-dark {
    background: #1f3044;
    color: white;
}

/* Section Intro */
.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: #1f3044;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bg-dark .section-intro h2 {
    color: white;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: #c8a961;
    margin: 0 auto 1.5rem;
}

.section-desc {
    font-size: 1.125rem;
    color: #666;
    margin: 0;
}

.bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Missão Grid */
.missao-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.missao-card {
    text-align: center;
}

.card-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    color: #c8a961;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1.5rem;
}

.missao-card h3 {
    font-size: 1.5rem;
    color: #1f3044;
    margin-bottom: 1rem;
    font-weight: 700;
}

.missao-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step-card {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c8a961 0%, #a68b4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(200, 169, 97, 0.3);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.step-card h3 {
    font-size: 1.25rem;
    color: #1f3044;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Features List */
.features-list {
    max-width: 700px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #c8a961;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    color: #1f3044;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Stats */
.stats-wrapper {
    background: #1f3044;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #c8a961;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1f3044 0%, #2d4a68 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #bc871e;
}

.cta-section>p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
    text-align: center;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.cta-feature i {
    font-size: 2.5rem;
    color: #c8a961;
    flex-shrink: 0;
}

.cta-feature span {
    font-size: 1rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Valores */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.valor-item {
    padding: 2rem 1rem;
}

.valor-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.valor-item h3 {
    font-size: 1.5rem;
    color: #1f3044;
    margin-bottom: 1rem;
    font-weight: 700;
}

.valor-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contato Final */
.contato-final {
    background: #f8f9fa;
    padding: 5rem 0;
    text-align: center;
}

.contato-final h2 {
    font-size: 2.5rem;
    color: #1f3044;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contato-final p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #1f3044;
    color: white;
}

.btn-primary:hover {
    background: #2d4a68;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 48, 68, 0.2);
    color: white;
}

.btn-secondary {
    background: white;
    color: #1f3044;
}

.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #1f3044;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .container-narrow {
        padding: 0 1.5rem;
    }

    .sobre-hero {
        padding: 5rem 0 3rem;
    }

    .sobre-hero h1 {
        font-size: 2.25rem;
    }

    .sobre-hero .lead {
        font-size: 1.125rem;
    }

    .sobre-section {
        padding: 4rem 0;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .missao-grid,
    .steps-grid,
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-section h2,
    .contato-final h2 {
        font-size: 2rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}