.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajuste a opacidade conforme necessário */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
}

/* daqui pra baixo faz parte do carrousel de fotos */

.thumbnail {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    border: 2px solid #007bff;
}
.mini-carousel {
    max-width: 800px;
    margin: auto;
}
.mini-carousel .carousel-inner {
    display: flex;
    align-items: center;
}
.mini-carousel .carousel-item {
    text-align: center;
}
.mini-carousel img {
    width: 100px;
    height: 60px;
    object-fit: cover;
}
/* Personalizar os botões de navegação */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #EF4135; /* Vermelho personalizado */
    border-radius: 50%;
    padding: 10px;
}

/* Ajustar cor ao passar o mouse */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #d0352b; /* Um tom mais escuro para hover */
}

#carouselExample .carousel-item img {
    width: 1080px;
    height: 600px; /* Ajuste conforme necessário */
    object-fit: cover; /* Recorta a imagem mantendo o centro visível */
}
/* fim  do botões carrousel */


.mtg {
 margin-top: -2.75rem;
}


/* modal das fichas técnicas */


.modal-content {
    height: 100%;
}

.modal-body {
    height: 100%;
    padding: 0; /* Remove o espaço interno para ocupar toda a área */
}

.modal-body iframe {
    width: 100%;
    height: 80vh; /* Preenche toda a altura do modal */
    border: none;
}
.spacer {
    margin-top: 15px;
}
.card {
    --bs-card-border-color: rgb(16 120 204 / 44%);
}
.shadow-box {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    background-color: white;
}