/* === CAROUSEL CUSTOMIZADO PRINCIPAL === */
.carrossel-hero {
    position: relative;
    z-index: 10;
}

.carousel-item {
    height: auto;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

.carousel-item img {
    width: 100%;
    height: 779px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
}

.carousel-caption {
    bottom: 5%;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.carousel-caption h2 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.carousel-caption p {
    font-size: 1.5rem;
    color: var(--light-color);
}

.carousel-caption a {
    text-decoration-color: var(--primary-color) ;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--light-color);
    background: transparent;
}

.carousel-indicators .active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
    width: 3rem;
    height: 3rem;
}


:root {
--vermelho: #ff0000;
--branco: #fff;
--cinza-escuro: rgb(64,64,64);
--cinza-claro: #f8f9fa;
}

body {
font-family: 'Montserrat', sans-serif;
background-color: var(--cinza-claro);
}

.hero-section {
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./assets/img/background-hero.jpg');
background-size: cover;
background-position: center;
color: white;
padding: 4rem 0;
margin-bottom: 2rem;
}