/* assets/css/sobre.css */

/* Hero Section Sobre */
.about-hero {
    background: linear-gradient(135deg, rgba(244, 228, 183, 0.9), rgba(249, 245, 240, 0.9)), url('https://images.unsplash.com/photo-1595475884562-073c30d45670?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0.08;
    animation: shimmer 8s ease-in-out infinite;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.4rem;
    color: var(--light-charcoal);
    font-weight: 300;
    line-height: 1.6;
}

/* Nossa História */
.about-history {
    padding: 6rem 0;
    background: var(--white);
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.history-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--light-charcoal);
}

.history-content strong {
    color: var(--dark-gold);
    font-weight: 600;
}

/* Missão, Visão e Valores */
.about-mvv {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
    position: relative;
}

.about-mvv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mvv-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gold);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transition: all 0.4s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.mvv-card:hover::before {
    height: 6px;
    background: var(--gradient-bronze);
}

.mvv-card i {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.mvv-card:hover i {
    transform: scale(1.1);
}

.mvv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gold);
}

.mvv-card p {
    color: var(--light-charcoal);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Nossa Equipa */
.about-team {
    padding: 6rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gold);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.team-img {
    height: 250px;
    background: var(--gradient-beige);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gold);
    font-size: 3rem;
}

.team-card:nth-child(1) .team-img::after {
    content: '👑';
}

.team-card:nth-child(2) .team-img::after {
    content: '✨';
}

.team-card:nth-child(3) .team-img::after {
    content: '💫';
}

.team-card:hover .team-img {
    background: var(--gradient-gold);
}

.team-card:hover .team-img::after {
    animation: pulse 1s ease-in-out;
}

.team-content {
    padding: 2rem;
}

.team-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.team-card p {
    color: var(--dark-gold);
    font-size: 1rem;
    font-weight: 500;
}

/* Diferenciais */
.about-differentials {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.differentials-list {
    list-style: none;
    max-width: 600px;
    margin: 3rem auto 0;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gold);
}

.differentials-list li {
    display: flex;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--light-gold);
    font-size: 1.1rem;
    color: var(--light-charcoal);
    transition: all 0.3s ease;
}

.differentials-list li:last-child {
    border-bottom: none;
}

.differentials-list li:hover {
    color: var(--dark-gold);
    transform: translateX(10px);
}

.differentials-list i {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 1rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.differentials-list li:hover i {
    transform: scale(1.2);
}

/* Call to Action */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(244, 228, 183, 0.9), rgba(249, 245, 240, 0.9)), url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    text-align: center;
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0.05;
    animation: shimmer 6s ease-in-out infinite;
}

.about-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.about-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--light-charcoal);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mvv-card, .team-card, .differentials-list {
    animation: fadeInUp 0.8s ease-out;
}

/* Efeitos de brilho */
.team-card:hover .team-img::after {
    animation: pulse 1s ease-in-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .differentials-list {
        margin: 2rem 1rem;
        padding: 2rem;
    }
    
    .about-cta h2 {
        font-size: 2.2rem;
    }
    
    .about-cta p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .mvv-card {
        padding: 2rem 1.5rem;
    }
    
    .team-img {
        height: 200px;
    }
    
    .differentials-list {
        padding: 1.5rem;
    }
    
    .differentials-list li {
        font-size: 1rem;
    }
}

/* Melhorias de performance */
.mvv-card, .team-card, .differentials-list {
    will-change: transform;
}

/* Estilos para títulos de seção consistentes */
.section-title h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--light-charcoal);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    margin-top: 2rem;
}