.hero {
    background: linear-gradient(to right, rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.8)), url('../images/bg-pattern.png');
    background-size: cover;
}

.hero-image {
    position: relative;
    height: 400px;
    background: url('../images/placeholder-person.png') no-repeat center;
    background-size: contain;
}

.servico-card, .vantagem-card, .servico-detalhe {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* SE FOR MEXER AQUI E DER RUIM VERIFICA LA NO HOVER_EFFECTS.CSS */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* ajuste responsividade, se mexer verificar os outros arquivos também */
@media (max-width: 576px) {
    .servicos-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .contato-info, .contato-preco {
        padding: 20px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    animation: fadeIn 1s ease-in-out;
}

.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.gradiente {
    width: 100%;
    height: 2.5vh;
    background: linear-gradient(to right, #00c853, #8a2be2);
    background-size: 200% 200%;
    animation: moveGradient 2.5s ease infinite;
    border: none;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
