/* Importando as fontes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins:wght@400;600&display=swap');

:root {
    --primary-color: #0d6efd; /* Azul padrão do Bootstrap */
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --brand-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--dark-color);
}

/* --- Navegação --- */
.navbar-brand {
    font-family: var(--brand-font);
    font-size: 2.2rem; /* Tamanho maior para destacar */
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 600;
    color: #555;
}

.nav-link.btn-primary {
    transition: all 0.3s ease;
}

/* --- Seção Hero --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1516116216624-53e6973bea12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center center;
    min-height: 80vh;
    padding: 100px 0;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- Títulos de Seção --- */
.section-title {
    font-family: var(--brand-font);
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

/* Linha decorativa abaixo do título */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

/* --- Serviços --- */
.service-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* --- Seção Oferta --- */
.price-box {
    border-left: 2px solid var(--primary-color);
}

@media (max-width: 991.98px) {
    .price-box {
        border-left: none;
        border-top: 2px solid var(--primary-color);
        padding-top: 20px;
        margin-top: 20px;
    }
}

/* --- Seção Clientes --- */
.client-logos-container img {
    max-width: 150px;
    filter: grayscale(100%); /* Deixa as logos em cinza */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logos-container img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Animação Fade-in --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}