/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

section {
    scroll-margin-top: 80px;
}


#slides {
    margin: 0;
    padding: 0;
}
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: linear-gradient(to right, #3E4095, black);
    transition: background-color 0.3s ease-in-out;
}

.navbar.scrolled {
    background: linear-gradient(to right, #1E8261, black);
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 18px;
    padding: 15px 20px;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #56A8D4 !important;
}

.navbar .navbar-brand img {
    max-width: 250px;
}

.navbar-toggler {
    border-color: #fff;
}

.navbar-toggler-icon {
    background-color: #fff;
}

/* Slide */
 

.carousel-inner {
    width: 100%;
    max-width: 1920px;
    height: 550px;
    margin: 0 auto;
}

.carousel-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

#slides {
    margin-top: 80px; /* Compensa o navbar fixo em todas as resoluções */
}

/* Ajustes específicos para mobile */
@media (max-width: 768px) {
    .carousel-inner {
        height: auto;
    }

    .carousel-item img {
        height: 100%;
        max-height: none;
        object-fit: cover;
        background-color: #000;
    }

    @media (max-width: 768px) {
        #slides {
            margin-top: 110px; /* mesma altura do navbar */
        }
    }
    
}
/* WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 15px;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn:hover {
    background-color: #25d366;
}



 



/* Títulos */
#servicos h2,
#depoimentos h2 {
    font-size: 2rem;
}

#depoimentos .card {
    margin-bottom: 20px;
}

/* Rodapé */
footer {
    background-color: #f8f9fa;
}

footer p {
    font-size: 1rem;
}
