/* ===================================
   ESTILOS PERSONALIZADOS PARA SEÇÃO SOBRE
   =================================== */

/* Header da Seção */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #b4977b, #8b7355);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(180, 151, 123, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #b4977b, #8b7355);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Badge "Desde 1990" */
.about-badge {
    display: inline-block;
}

.badge-text {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    /* Removido o animation: pulse para parar o piscar */
}

/* Título da Seção Sobre - CORRIGIDO para não piscar */
.about-company__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    /* Removido o background-clip que causava problemas */
    text-shadow: 2px 2px 4px rgba(180, 151, 123, 0.2);
}

/* Botões de Ação */
.about-actions {
    margin-top: 30px;
}

.about-actions .btn {
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-actions .btn-primary {
    background: linear-gradient(135deg, #b4977b, #8b7355);
    border-color: #b4977b;
    box-shadow: 0 4px 15px rgba(180, 151, 123, 0.3);
}

.about-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 151, 123, 0.4);
}

.about-actions .btn-outline {
    border-color: #b4977b;
    color: #b4977b;
    background: transparent;
}

.about-actions .btn-outline:hover {
    background: linear-gradient(135deg, #b4977b, #8b7355);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 151, 123, 0.4);
}

/* Wrapper da Imagem */
.image-wrapper {
    position: relative;
    display: inline-block;
}

.main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Cards Flutuantes */
.floating-card {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.experience-card {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.quality-card {
    bottom: -20px;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #b4977b, #8b7355);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.floating-card .card-icon i {
    color: white;
    font-size: 18px;
}

.floating-card .card-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.floating-card .card-text {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Estatísticas Soltas (Sem Cards) - NOVO ESTILO */
.stats-loose {
    margin: 4rem 0;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #b4977b;
    margin-bottom: 15px;
    display: block;
    text-shadow: 2px 2px 4px rgba(180, 151, 123, 0.2);
    line-height: 1;
}

.stat-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Cards de Características (4 Cards) - AJUSTADO */
.features-section {
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(180, 151, 123, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(180, 151, 123, 0.05), rgba(139, 115, 85, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* CORREÇÃO: Ícones dos feature cards agora visíveis */
.feature-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 2px solid #e9ecef;
}

.feature-card:hover .feature-card__icon {
    background: linear-gradient(135deg, #b4977b, #8b7355);
    transform: scale(1.1) rotate(5deg);
    border-color: #b4977b;
}

/* CORREÇÃO: Ícones com cor visível */
.feature-card__icon i {
    font-size: 32px;
    color: #b4977b !important; /* Cor destacada para ser visível */
    transition: all 0.3s ease;
    display: block; /* Garantir que o ícone seja exibido */
}

.feature-card:hover .feature-card__icon i {
    color: white !important;
}

.feature-card__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-card__description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsividade */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-company__title {
        font-size: 1.8rem;
    }
    
    .floating-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 20px auto;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-company__title {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }
    
    .about-actions {
        flex-direction: column;
        gap: 15px !important;
    }
    
    .about-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Aplicar animações quando elementos estiverem visíveis */
[data-animation] {
    opacity: 0;
}

[data-animation].animated {
    animation-fill-mode: both;
}

[data-animation="fadeInUp"].animated {
    animation-name: fadeInUp;
}

[data-animation="fadeInLeft"].animated {
    animation-name: fadeInLeft;
}

[data-animation="fadeInRight"].animated {
    animation-name: fadeInRight;
}
