/* ==========================================
   PÁGINA SOBRE NÓS
   ========================================== */

/* Hero Section */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00C247 0%, #00a03a 100%);
    margin-top: 120px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 3rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-content .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
}

.hero-content .breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-content .breadcrumb a:hover {
    opacity: 0.8;
}

.hero-content .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.7);
}

.hero-content .breadcrumb .current {
    color: #fff;
    font-weight: 600;
}

/* Nossa História */
.historia-section {
    padding: 5rem 0;
}

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.historia-content .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.historia-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.historia-text:last-child {
    margin-bottom: 0;
}

.historia-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #00C247 0%, #00a03a 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 194, 71, 0.4);
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.badge-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    opacity: 0.95;
}

/* Missão, Visão e Valores */
.mvv-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00C247 0%, #00a03a 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 194, 71, 0.3);
}

.mvv-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.mvv-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.mvv-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
}

/* Diferenciais */
.diferenciais-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-header .section-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.diferencial-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #00C247;
}

.diferencial-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 194, 71, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.diferencial-card:hover .diferencial-icon {
    background: linear-gradient(135deg, #00C247 0%, #00a03a 100%);
    transform: scale(1.1);
}

.diferencial-icon i {
    font-size: 2rem;
    color: #00C247;
    transition: color 0.3s ease;
}

.diferencial-card:hover .diferencial-icon i {
    color: #fff;
}

.diferencial-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.diferencial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
}

/* Estatísticas */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #00C247 0%, #00a03a 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.stat-icon i {
    font-size: 2rem;
    color: #fff;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-text {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsividade */
@media (max-width: 1200px) {
    .historia-grid {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .page-hero {
        margin-top: 100px;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .historia-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .historia-image {
        order: -1;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .historia-section,
    .mvv-section,
    .diferenciais-section,
    .stats-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .historia-content .section-title,
    .section-header .section-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .image-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .mvv-card {
        padding: 2rem 1.5rem;
    }
    
    .diferencial-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-content .breadcrumb {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}