@charset "UTF-8";
/* ===== PÁGINA SOBRE NÓS ===== */

/* Layout da página */
.sobre-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow-x: hidden;
}

/* Hero Section da página Sobre */
.sobre-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.sobre-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.sobre-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0 0 L100 100 M100 0 L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

.sobre-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.sobre-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.sobre-hero-content .highlight {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}

.sobre-hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(251, 191, 36, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.sobre-hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Container principal */
.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Seção de estatísticas */
.sobre-stats {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    margin-top: -100px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--gray-200);
}

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

.stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Seção de propósito */
.sobre-proposito {
    margin: 5rem 0;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title .highlight-blue {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title .highlight-blue::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de cards */
.sobre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.sobre-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sobre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: 0 0 50% 50%;
}

.sobre-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.card-icon i {
    font-size: 32px;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.card-description {
    color: var(--gray-600);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Lista de valores */
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
    font-size: 1rem;
}

.values-list li i {
    color: var(--secondary);
    font-size: 1.25rem;
}

/* Seção de metas */
.sobre-metas {
    background: linear-gradient(135deg, #f1f5f9, #e0f2fe);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.metas-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metas-header i {
    font-size: 2rem;
    color: var(--primary);
}

.metas-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

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

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.meta-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.meta-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 0.5rem;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.meta-text {
    flex: 1;
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 1rem;
}

/* Seção da equipe */
.sobre-equipe {
    margin: 5rem 0;
    text-align: center;
}

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

.equipe-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.equipe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.equipe-avatar {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.equipe-avatar i {
    font-size: 100px;
    color: white;
    opacity: 0.5;
}

.equipe-info {
    padding: 1.5rem;
    background: white;
}

.equipe-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.equipe-cargo {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.equipe-desc {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.sobre-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-2xl);
    padding: 4rem;
    text-align: center;
    color: white;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.sobre-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 40px
    );
    animation: moveBackground 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-cta-primary {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--gray-100);
}

.btn-cta-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveBackground {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(20px, 20px);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .sobre-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sobre-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sobre-hero-content h1 {
        font-size: 2rem;
    }
    
    .sobre-hero-content p {
        font-size: 1rem;
    }
    
    .sobre-stats {
        padding: 2rem;
        margin-top: -50px;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .metas-header h3 {
        font-size: 1.5rem;
    }
    
    .meta-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .sobre-container {
        padding: 2rem 1rem;
    }
    
    .sobre-cta {
        padding: 2rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Valores adicionais */
.valores-adicionais {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.valores-tagline {
    text-align: center;
    margin-bottom: 2rem;
}

.valores-tagline p {
    font-size: 1.125rem;
    color: var(--gray-700);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.valores-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.valor-icon-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.valor-icon-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    box-shadow: var(--shadow-md);
}

.valor-icon-item span {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

/* Timeline da empresa */
.sobre-timeline {
    margin: 4rem 0;
}

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

.timeline-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.timeline-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 100px;
    text-align: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-year {
        left: 20px;
        width: auto;
        font-size: 1rem;
        padding: 0.25rem 1rem;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}
.equipe-avatar {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.equipe-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipe-card:hover .equipe-avatar img {
    transform: scale(1.05);
}

.equipe-avatar i {
    font-size: 100px;
    color: white;
    opacity: 0.8;
}