/* Estilos para o elemento de carregamento */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loading-text {
    font-size: 24px;
}

body {
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 5vw;
    max-font-size: 32px;
    text-align: justify;
    margin-bottom: 10px;
}

p {
    margin: 0;
}

.small {
    font-size: 0.8rem;
}

.rota {
    margin-left: 40px;
}

.input-cinza {
    background-color: #ccc;
}

/* Estilos para as imagens do carrossel */
.carousel-item img {
    width: 100%;
    max-height: 500px;
    object-fit: cover; /* Garante que a imagem cubra o espaço sem deformar */
}


/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
  body {
    font-size: 0.9rem; /* Tamanho base ajustado para telas menores */
  }
    h1 {
        font-size: 7vw; /* Ajuste para telas pequenas */
       
    }

    .small {
        font-size: 0.7rem; /* Ajuste para texto menor em telas pequenas */
    }
  .container {
   padding: 5px;
  }
   .form-inline {
                flex-direction: column;
            }

            .col-md-8 {
                margin-bottom: 20px;
            }

            .ml-2 {
                margin-left: 0;
            }

            .ml-5 {
                margin-left: 0;
            }

            .mt-3 {
                margin-top: 10px;
            }
/* Ajuste para o tamanho das imagens no carrossel em telas menores */
 .carousel-item img {
        max-height: 300px; /* Reduz a altura máxima da imagem */
    }

}

.lead {
    font-size: 1.1rem;
}

.icon {
    margin-right: 8px;
}













