/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo global */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #000; /* Preto */
}

.navbar-brand {
    color: #fff !important; /* Branco */
}

.navbar-nav .nav-link {
    color: #fff !important; /* Branco */
}

.navbar-nav .nav-link:hover {
    color: #ccc !important; /* Cinza claro */
}

/* Home Banner */
#home {
    background: url('pest-control.jpg') no-repeat center center;
    background-size: cover;
    height: 70vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center; /* Alinha verticalmente ao centro */
    justify-content: center; /* Alinha horizontalmente ao centro */
    text-align: center; /* Alinha o texto ao centro */
}

#home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Cor preta com 50% de opacidade */
    display: flex;
    align-items: center;
    justify-content: center;
}

#home .container {
    position: relative;
    z-index: 1;
}

#home .display-4 {
    font-size: 2.5rem; /* Tamanho da fonte ajustado */
    margin-bottom: 0.5rem; /* Espaçamento inferior ajustado */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra no texto */
}

#home .lead {
    font-size: 1.125rem; /* Tamanho da fonte ajustado */
    margin-bottom: 1rem; /* Espaçamento inferior ajustado */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Sombra no texto */
}

#home .btn-primary {
    border-radius: 0; /* Remove bordas arredondadas */
}

/* Seções */
section {
    padding: 60px 0;
}

/* About Us Section */
#about .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

#about .card:hover {
    transform: scale(1.05);
}

/* Services Section */
#services {
    background-color: #f8f9fa;
}

#services .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Pricing Section */
#pricing {
    text-align: center;
}

/* Blog Section */
#blog {
    background-color: #f8f9fa;
}

#blog .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Formulário */
form {
    max-width: 800px;
    margin: auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: 0;
}

textarea {
    resize: vertical;
}

/* Rodapé */
footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
}

footer p {
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar-expand-lg {
        flex-direction: column;
    }

    .navbar-collapse {
        margin-top: 10px;
    }

    #home .display-4 {
        font-size: 2rem; /* Ajusta o tamanho da fonte em telas menores */
    }

    #home .lead {
        font-size: 1rem; /* Ajusta o tamanho da fonte em telas menores */
    }
}
