/**
 * ABOUT SECTION ENHANCED
 * Estilos modernos para a seção "Quem Somos Nós"
 */

/* ========================================
   CONTAINER PRINCIPAL
   ======================================== */

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

/* ========================================
   IMAGEM PRINCIPAL
   ======================================== */

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-10px);
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #1E88E5, #FF9800);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.about-image-badge i {
    font-size: 1.5rem;
}

/* ========================================
   CONTEÚDO PRINCIPAL
   ======================================== */

.about-content-main {
    padding: 20px;
}

.about-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700, #FF9800);
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-highlight i {
    font-size: 1.2rem;
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-main-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-main-text strong {
    color: #1E88E5;
    font-weight: 700;
}

/* ========================================
   FEATURES LIST
   ======================================== */

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #2c3e50;
}

.about-feature-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    flex-shrink: 0;
}

.about-feature-item span {
    font-weight: 500;
}

/* ========================================
   CARDS MISSÃO E VISÃO
   ======================================== */

.about-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #1E88E5;
}

.about-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E88E5, #FF9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}

.about-card-icon i {
    font-size: 2rem;
    color: white;
}

.about-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.about-card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    .about-main-image {
        height: 400px;
    }
    
    .about-main-title {
        font-size: 2rem;
    }
    
    .about-content-main {
        padding: 20px 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-main-image {
        height: 300px;
    }
    
    .about-image-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .about-image-badge i {
        font-size: 1.2rem;
    }
    
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .about-main-text {
        font-size: 1rem;
    }
    
    .about-card {
        padding: 30px;
    }
    
    .about-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-card-icon i {
        font-size: 1.5rem;
    }
    
    .about-card-title {
        font-size: 1.5rem;
    }
}

/* Mobile pequeno */
@media (max-width: 576px) {
    .about-main-image {
        height: 250px;
    }
    
    .about-image-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 15px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .about-highlight {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .about-main-title {
        font-size: 1.5rem;
    }
    
    .about-main-text {
        font-size: 0.95rem;
    }
    
    .about-feature-item {
        font-size: 0.9rem;
    }
    
    .about-feature-item i {
        font-size: 1.2rem;
    }
    
    .about-card {
        padding: 25px;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card,
.about-image-wrapper,
.about-content-main {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   ACESSIBILIDADE
   ======================================== */

.about-card:focus-within {
    outline: 2px solid #1E88E5;
    outline-offset: 4px;
}

/* ========================================
   IMPRESSÃO
   ======================================== */

@media print {
    .about-section {
        background: white;
    }
    
    .about-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .about-image-badge {
        display: none;
    }
}

