/* sobre_nos.css - VERSÃO SIMPLIFICADA - apenas animações que funcionam */

.about-hero {
    position: relative;
    min-height: 350px;
    background: linear-gradient(135deg, rgba(26,77,76,0.9) 0%, rgba(196,93,66,0.9) 100%), url('../img/localidade/0ed7ef57-2fa2-464a-bea2-fb8d7cf713b3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin: 20px 20px 0;
    border: 3px solid var(--deep-teal);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.about-hero:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-hover);
}

.about-hero-content {
    max-width: 700px;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
    line-height: 1.6;
}

/* Main Content */
main {
    max-width: var(--max-width);
    margin: 80px auto 80px;
    padding: 0 30px;
}

.about-section {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--deep-teal);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--clay-red);
    transition: width 0.3s ease;
}

.section-header:hover h2:after {
    width: 100px;
}

.section-header p {
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Cards - SIMPLIFICADO (sem animação no ::before) */
.about-content {
    background: var(--card);
    padding: 40px;
    margin-bottom: 40px;
    border: 3px solid var(--deep-teal);
    transition: all 0.3s ease;
}

.about-content:hover {
    transform: translate(-5px, -5px);
    border-color: var(--clay-red);
}

.about-content h2 {
    color: var(--deep-teal);
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.about-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--clay-red);
    transition: width 0.3s ease;
}

.about-content:hover h2:after {
    width: 100px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--charcoal);
    font-size: 1.05rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Values Grid - SIMPLIFICADO */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.value-card {
    background: var(--card);
    padding: 30px 25px;
    text-align: center;
    border: 3px solid var(--deep-teal);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translate(-5px, -5px);
    border-color: var(--clay-red);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--clay-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    border: 2px solid white;
    box-shadow: 3px 3px 0 var(--deep-teal);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--deep-teal);
    box-shadow: 5px 5px 0 var(--clay-red);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--deep-teal);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.value-card:hover h3 {
    color: var(--clay-red);
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--stone-gray);
}

/* Timeline Section - SIMPLIFICADO */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--clay-red);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background: var(--clay-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid white;
    box-shadow: 3px 3px 0 var(--deep-teal);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
    transform: translate(-3px, -3px) scale(1.05);
    background: var(--deep-teal);
    box-shadow: 5px 5px 0 var(--clay-red);
}

.timeline-content {
    background: var(--card);
    padding: 25px;
    border: 3px solid var(--deep-teal);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translate(-5px, -5px);
    border-color: var(--clay-red);
}

.timeline-content h3 {
    color: var(--deep-teal);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.timeline-item:hover .timeline-content h3 {
    color: var(--clay-red);
}

.timeline-content p {
    color: var(--stone-gray);
    line-height: 1.6;
    margin: 0;
}

/* Stats Grid - SIMPLIFICADO */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.stat-card {
    background: var(--deep-teal);
    color: white;
    padding: 30px 20px;
    text-align: center;
    border: 3px solid white;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translate(-5px, -5px);
    background: var(--clay-red);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Info Grid - SIMPLIFICADO */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.contact-card {
    background: var(--card);
    padding: 30px 20px;
    text-align: center;
    border: 3px solid var(--deep-teal);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translate(-5px, -5px);
    border-color: var(--clay-red);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--clay-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    border: 2px solid white;
    box-shadow: 3px 3px 0 var(--deep-teal);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--deep-teal);
    box-shadow: 5px 5px 0 var(--clay-red);
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--deep-teal);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.contact-card:hover h3 {
    color: var(--clay-red);
}

.contact-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--stone-gray);
    margin: 5px 0;
}

/* About Buttons */
.about-btn {
    display: inline-block;
    background: var(--clay-red);
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--deep-teal);
    box-shadow: 4px 4px 0 var(--deep-teal);
    cursor: pointer;
    transition: all 0.2s ease;
}

.about-btn:hover {
    background: var(--deep-teal);
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--clay-red);
}

.about-btn-outline {
    background: transparent;
    border: 2px solid var(--deep-teal);
    color: var(--deep-teal);
    box-shadow: none;
}

.about-btn-outline:hover {
    background: var(--deep-teal);
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 300px;
        margin: 15px 15px 0;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 30px;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .values-grid,
    .team-grid,
    .stats-grid,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        padding: 25px;
    }
    
    .about-content h2 {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 250px;
        margin: 10px 10px 0;
    }
    
    .about-hero h1 {
        font-size: 1.6rem;
    }
    
    .about-hero p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .value-card,
    .contact-card {
        padding: 25px 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 40px;
}