* {
    font-family: 'Poppins', sans-serif;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('início.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #bbb486 !important;
}

ul {
    gap: 30px;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color: #bbb486 !important;
    border-color: #bbb486 !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(187, 180, 134, 0.4);
    background-color: #a39f75 !important;
    border-color: #a39f75 !important;
}

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

.modal-dialog.modal-lg {
    max-width: 90%;
    margin: 1.75rem auto;
}

.carousel-item img {
    max-height: 80vh;
    width: 100%;
    object-fit: contain;
}

.form-control {
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem #bbb486a8(0, 123, 255, 0.25);
}

footer {
    margin-top: 2rem;
}

/* Estilos do Carrossel */
#portfolioCarousel {
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

#portfolioCarousel .carousel-item img {
    height: 600px;
    object-fit: cover;
    width: 100%;
}

#portfolioCarousel .carousel-control-prev,
#portfolioCarousel .carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.3);
}

#portfolioCarousel .carousel-indicators {
    margin-bottom: 0.5rem;
}

#portfolioCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }

    #portfolioCarousel .carousel-item img {
        height: 400px;
    }
}
