* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   
    font-family: 'Montserrat', sans-serif;
            font-weight: 200; /* Garante que a variante Extra Light seja aplicada */
    overflow-x: hidden;
}

.bg-black-transparent{
    background-color: rgba(0, 0, 0, 0.7); 
}

.navbar .social-icons a {
    color: white;
    margin-right: 10px;
}

.navbar .menu-icon {
    cursor: pointer;
    color: white;
}

.dropdown-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    color: white;
    z-index: 2000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-menu .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.dropdown-menu .menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dropdown-menu .menu-content a {
    font-size: 24px;
    margin: 20px 0;
    cursor: pointer;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    text-align: center;
   
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    
}

section {
    padding: 60px 20px;
    min-height: 100vh;
    background-color: black;
}

.parceiros{
    min-height: auto;
    background-color: rgb(19, 18, 18);
}

.posto{
    min-height: auto; 
    background-color: black;
}

#servicos{
    background-color: rgb(19, 18, 18);
}

#contato{
    background-color: black;
   
}

#contato a{
    text-decoration: underline;
    color: white;
}

#sobre-nos{
    background-color: rgb(19, 18, 18);
}


footer {
    text-align: center;
    background-color: rgb(19, 18, 18);
}


.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    display: none;
}

.scroll-to-top.show {
    display: block;
}

/*botao pulsante */

.botao-animado {
    background-color:rgba(255, 255, 255, 0.116);
 /* Cor de fundo preto com 70% de transparência */
    border: none;
    color: white; /* Branco */
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    position: relative;
    animation: subirDescer 2s infinite;
}

.cor{
    color:black;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

@keyframes subirDescer {
    0% {
        top: 0;
    }
    50% {
        top: -10px; /* Mover para cima */
    }
    100% {
        top: 0;
    }
}

/*efeito fade */
.image-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.image-container {
    display: flex;
    animation: slide 36s infinite;
}

.image-container img {
    width: 100%;
    flex-shrink: 0;
    transition: opacity 1s ease-in-out;
}

@keyframes slide {
    0% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    100% { transform: translateX(0); }
}

.divisor{
    width: 100%;
    background-color: black;
    text-align: center;
}

 /* Estilo para remover os marcadores padrão */
 ul {
    list-style-type: none; /* Remove os marcadores */
    padding: 0; /* Remove o padding padrão */
    width: 100vw; /* Largura total da tela */
    
}

/* Estilo opcional para os itens da lista */
li {
    margin-bottom: 10px; /* Espaçamento entre os itens da lista */
    background-color: rgba(255, 255, 255, 0.116); /* Cor de fundo branco com transparência */
    width: 100%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
   
}

li a {
    color: white;
}

li a:hover{
    color: white;
    text-decoration: underline;
}

/* Galeria de fotos */
#galeria {
    padding-top: 0;
    background-color: black;
}

.carousel-item img {
    max-height: 550px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-item img {
        max-height: 300px;
    }
}

.carousel-control-prev-icon{

background-color: black ; /* Cor de fundo branco com transparência */
width: 40px;
height: 120px;
}

.carousel-control-next-icon{
    background-color: black; /* Cor de fundo branco com transparência */
    width: 40px;
height: 120px;
}

/* Botão Instagram */
.button-instagram {
    display: inline-block;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transition: background 0.3s ease;
}

.button-instagram:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
}