

<!-- :::::::::::::::::::::::::: -->
<!-- Banner Destaques -->
<!-- :::::::::::::::::::::::::: -->

.banner-destaque {
    width: 320px;
    height: 83px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.banner-destaque img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease-in-out;
}

<!-- :::::::::::::::::::::::::: -->
<!-- Banner Destaques End -->
<!-- :::::::::::::::::::::::::: -->


<!-- :::::::::::::::::::::::::: -->
<!-- Carrocel Infinito 2025 -->
<!-- :::::::::::::::::::::::::: -->

.carousel-container {
    width: 100%;
    max-width: 1200px; /* Definindo limite máximo para telas grandes */
    margin: auto; /* Centralizando o carrossel */
    padding: 0 40px; /* Espaçamento lateral para desktop */
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
}

/* Ajuste para celulares: mantém ocupando toda a largura */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0; /* Remove espaçamento lateral no mobile */
    }
}

.carousel-track {
    display: flex;
    gap: 15px;
    width: max-content; /* Ajuste para evitar espaço em branco */
    animation: scroll 65.5s linear infinite; /* Mantém a velocidade para desktop */
}

.carousel-slide {
    display: flex;
}

.carousel-track img {
    width: 150px;
    height: auto;
    border-radius: 10px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Ajuste para manter a continuidade */
}

/* Ajuste para celulares: reduz velocidade e garante fluidez */
@media (max-width: 768px) { 
    .carousel-track {
        animation: scroll 55.5s linear infinite; /* Ajuste para mobile */
    }
}

<!-- :::::::::::::::::::::::::: -->
<!-- Carrocel Infinito 2025 End -->
<!-- :::::::::::::::::::::::::: -->


<!-- :::::::::::::::::::::::::: -->
<!-- Contador 2025 -->
<!-- :::::::::::::::::::::::::: -->

.contador {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 15px;
    width: auto;
    margin: auto;
}

.contador p {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-bottom: 2px;
}

.contador .total {
    font-size: 26px;
    color: #007bff;
}

.contador .total-numero {
    font-size: 72px;
    font-weight: bold;
    color: #007bff;
    margin-top: -40px;
}

.contador .linha {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: -40px;
}

.contador .hoje, .contador .ontem {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.contador .hoje-numero, .contador .ontem-numero {
    font-size: 30px;
    font-weight: bold;
}

<!-- :::::::::::::::::::::::::: -->
<!-- Contador 2025 End -->
<!-- :::::::::::::::::::::::::: -->


<!-- :::::::::::::::::::::::::: -->
<!-- Busca 2025 -->
<!-- :::::::::::::::::::::::::: -->

.caixa-busca {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-radius: 10px;
    text-align: center;
}

.input-container {
    display: flex;
    align-items: center;
    width: 100%;
}

#searchBox {
    flex: 1;
    padding: 15px;
    border: 3px solid #fff;
    border-radius: 30px;
    font-size: 18px;
    height: 50px;
    background: rgba(0, 114, 177, 0.6);
    color: white;
}

#searchBox::placeholder {
    color: white;
    font-size: 17px;
}

/* Inclua as demais regras CSS aqui */


<!-- :::::::::::::::::::::::::: -->
<!-- Busca 2025 End -->
<!-- :::::::::::::::::::::::::: -->