
@media (max-width: 768px) {
    body{
  background-color: rgb(44, 8, 8);
  margin: 0px;
  padding: 0px;
}/* Celulares */

header{
    width: 100%;
    background-color: rgba(7, 7, 7, 0.692);
    height: 60px;
    display: flex;
    flex-direction: row;
    line-height: 60px;
    justify-content: space-between;
    
}
.ld1{color: #fff; font-family: Arial, Helvetica, sans-serif;  font-family: "Inter", sans-serif;
width: 40%;
margin-left: 20px;
}

.input{
    padding: 5px;
    width: 100%;
    background-color: #ffffff00;
    border: 0;
    outline: none;
}

.ld2{
    display: flex;
    justify-content:end ;
    background-color: rgba(250, 235, 215, 0);
    width:60%;
    line-height: 60px;
}

.ld3{
    display: flex;
    justify-content:end ;
    background-color: rgba(250, 235, 215, 0);
    width:50%;
    line-height: 60px;
}

.ld2 form{
    display: flex;
    justify-content: end;
    height: 35px;margin-top:13px;
    gap: 5px;
    margin-right: 20px;
    width: 100%;
    background-color: rgba(0, 0, 255, 0);
    border: solid rgb(114, 26, 26) 1px;
    border-radius: 10px;
    color: #d32f2f;


}
.ld1 input{
   color: #f03333; 
}

.bt_envia{
    background-color: #ffffff00;
    border: 0;
    outline: none;
    text-align: center;
}

.bt_envia img{
    width: 30px;
}
.menunn{
   
    padding: 10px;
    background-color: rgba(128, 255, 0, 0);
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    text-align: center;
}


.menunn a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
}

.menunn span{
    border: solid 1px #f03333;
    width: 100%;
    padding: 5px;
    background-color: darkred;
    border-radius:10px ;
}

   * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
        }
        body {
            font-family: Arial, sans-serif;
            background: #1a1a1a;
        }

        #banner {
            width: 360px;
            height: 200px;
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }

        .banner-item {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.6s ease;
    color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* 🔴 ADICIONE ESTA LINHA: Desativa o clique no slide quando ele estiver transparente */
    pointer-events: none; 
}
       /* 🟢 ADICIONE ESTE BLOCO LOGO ABAIXO: */
.banner-item.ativo {
    opacity: 1;
    
    /* Libera o clique APENAS quando o slide estiver ativo/visível */
    pointer-events: auto; 
}
        .banner-titulo {
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            text-align: left;
            margin-top: 5px;
        }

        .banner-texto {
            font-size: 0.82rem;
            line-height: 1.4;
            color: #e5e5e5;
            text-align: left;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            margin-top: 3px;
        }

        /* ESTILO DO LINK IGUAL BOTÃO */
        .btn-vermais {
            margin-top: auto;
            width: fit-content;
            padding: 5px 12px;
            background: #fff;
            color: #1a1a1a !important;
            text-decoration: none !important;
            border-radius: 3px;
            font-size: 0.78rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-block;
        }

        .btn-vermais:hover { background: #ddd; }

        .controles {
            position: absolute;
            bottom: 8px;
            right: 12px;
            display: flex;
            gap: 8px;
        }

        .controle {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
        }

        .controle.ativo { background: #fff; }

        @media (max-width: 360px) {
            #banner {
                width: 100%;
                min-height: 200px;
            }
            .banner-titulo { font-size: 1.15rem; }
            .banner-texto { font-size: 0.78rem; }
  
  
        }



/* Container da Seção */
.lista-historias-container {
  background-color: #e5e5e5; /* Fundo cinza claro igual ao da imagem */
  padding: 15px;
  font-family: Arial, sans-serif;
  color: #000000;
}

.titulo-secao {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 5px 0;
  color: #000000;
}

.linha-divisora {
  border: 0;
  height: 1px;
  background-color: #a0a0a0;
  margin-bottom: 20px;
}

/* Cards das Histórias */
.card-historia {
  margin-bottom: 20px;
}

.historia-titulo {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 4px 0;
  color: #000000;
}

.historia-resumo {
  font-size: 13px;
  color: #555555;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

/* Botão Vermelho "Ler mais" */
.btn-ler-mais {
  display: inline-block;
  background-color: #d32f2f; /* Vermelho forte */
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 12px; /* Bordas bem arredondadas */
  transition: background-color 0.2s;
}

.btn-ler-mais:hover {
  background-color: #b71c1c;
}

#campoBuscaLd2{
 color:#ddd;
}




}
