:root {
    --primary-color: #000000;
    --secondary-color: #fdeb95;
    --accent-color: #ff6a2f;
    --dark-bg: #3b3b3b;
    --light-bg: #e8e8e8;
    --text-light: #ffffff;
    --text-dark: #000000;
}

.active {
    color:  var(--secondary-color) !important;
}
/* Hero Compre Agora */
.hero-sobre {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    color: rgb(0, 0, 0);
}

.hero-sobre h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0.5rem;
}

.hero-sobre .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 1rem; 
}

/* Nossa História */
.section-header .subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
    
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-year {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 1;
}

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Valores */
.valor-card {
    background-color: white;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

/* Diferenciais */
.diferencial-item {
    padding: 1.5rem;
    background-color: rgb(230, 230, 230);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.diferencial-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.diferencial-card {
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.diferencial-numero {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Equipe */
.team-card {
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.social-links a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background-color: #f8f9fa;
    color: var(--primary-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* CTA */
.cta-sobre {
    background: linear-gradient(135deg, #3b3b3b 0%, #000000 100%);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-sobre h1 {
        font-size: 2.2rem;
    }
    
    .hero-sobre .lead {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-sobre {
        text-align: center;
        padding: 2rem 0;
    }
    
    
    
    .nossa-historia .col-lg-6 {
        order: initial !important;
    }
    
    .timeline {
        margin-top: 3rem;
        padding-left: 2rem;
    }
    
    .diferencial-item {
        flex-direction: column;
        text-align: center;
    }
    
    .diferencial-icon {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 576px) {
    .hero-sobre h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-card img {
        width: 120px;
        height: 120px;
    }
}