

/* CSS MENU HORIZONTAL SUPERIOR */

/*
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
*/
.navbar {
/*    background-color: #f7f7f7;    */
    color: #000;
    display: flex;
    align-items: center;
    padding: 10px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
/*    font-size: 24px; */
    font-size: 1vw;
	
    margin-right: 10px;
}

.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu li {
    margin-right: 20px;
}

.menu li:last-child {
    margin-right: 0;
}

.menu a {
    color: #000;
    text-decoration: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
/*        background-color: #fff;    */
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    .menu li {
        margin-right: 0;
    }

    .menu.show {
        display: flex;
    }
}

/* CSS MENU VERTICAL */

.menuv-container {
    width: 300px;
/*    background-color: #f4f4f4; */
}

.menuv {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menuv-item {
/*    background-color: #ddd;  */
    padding: 10px; 
    cursor: pointer;
}

.submenuv {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 2rem;
    display: none;
}

.submenuv li {
    padding: 5px;
    cursor: pointer;
}

.show-submenuv {
    display: block;
    
/*    background-color: #ccc;   */
}




/* CSS DAS NOTï¿½CIAS TOPO DA Pï¿½GINA    */
.news-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid #ccc;
}

.news-scroll {
    display: inline-block;
    animation: scroll auto linear infinite;
}

.news-item {
    margin: 0;
    padding: 5px;
    display: inline-block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    300% {
        transform: translateX(-300%);
    }
}


/* CSS LOCAL E DATA */
.datetime-container {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
}

.connection-location {
    font-weight: bold;
}

.current-date {
    font-size: 24px;
}

/* CSS AVISO DE COOKIE */
/* Estilos para o pop-up de aviso de cookies */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.accept-cookies {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.accept-cookies:hover {
    background-color: #0056b3;
}


/* CSS DO CARROSSEL da rotação das notícias do body */
        .carousel-container {
            display: flex;
            justify-content: space-around;
        }
        .carousel {
            width: 95%;
            overflow: hidden;
            position: relative;
        }
        .carousel .slides {
            display: flex;
			width: 100%;
            min-width: 100%;
            transition: transform 0.5s ease-in-out;
        }
        .carousel .slide {
			width: 100%;
			min-width: 100%;
            box-sizing: border-box;
        }
        .carousel img {
            width: 100%;
            height: auto;
        }
        .dots {
            text-align: center;
        }
        .dots span {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 2px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
        }
        .dots .active {
            background-color: #717171;
        }

/* CARROSSEL DAS NOTÃ�CIAS AEL*/

.carousel1 {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel1-inner {
    display: flex;
    transition: transform 0.8s ease;
}
.carousel1-item {
    min-width: 100%;
    box-sizing: border-box;
}
.carousel1 img {
    width: 11rem;
    height: auto;
}

.carousel1-dots {
    text-align: center;
    margin-top: 15px;
}
.carousel1-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.carousel1-dot.active1 {
    background-color: #333;
}


/* CARROSSEL DAS NOTÃ�CIAS CIÊNCIA HOJE E MUSICAL*/

.carousel2 {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel2-inner2 {
    display: flex;
    transition: transform 0.8s ease;
}
.carousel2-item2 {
    min-width: 100%;
    box-sizing: border-box;
}
.carousel2 img {
    width: 11rem;
    height: auto;
}

.carousel2-dots2 {
    text-align: center;
    margin-top: 15px;
}
.carousel2-dot2 {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.carousel2-dot2.active2 {
    background-color: #333;
}


/* CARROSSEL DAS NOTÃ�CIAS do diversos meios jornalísticos*/

.carousel3 {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel3-inner3 {
    display: flex;
    transition: transform 0.8s ease;
}
.carousel3-item3 {
    min-width: 100%;
    box-sizing: border-box;
}
.carousel3 img {
    width: 11rem;
    height: auto;
}

.carousel3-dots3 {
    text-align: center;
    margin-top: 15px;
}
.carousel3-dot3 {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.carousel3-dot3.active3 {
    background-color: #333;
}

/* MOLDURA DOS QUADROS DE NOTï¿½CIAS */

.bordanews {
	margin-top: 1rem;
	margin-left: 1rem;
	border: solid 1px #7b7979;
	border-radius: 20px;
	box-shadow: 10px 10px 10px 5px #a5a2a2;
/*	cursor: pointer;  */
	max-width: 90%;
}

.botao {
	border: solid 1px #7b7979;
	border-radius: 20px;
	box-shadow: 10px 10px 10px 5px #a5a2a2;
	cursor: pointer;
	max-width: 90%;
	background-color: #9dcfbe;
	max-width: 200%;
}

.botao:hover {
	background-color: #a3e7d8;
}

/* EXIBIï¿½ï¿½O DAS NOTï¿½CIAS CAPTURADAS NO GOOGLE NEWS */
.ticker-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #EAEAEA;
    color: #000;
    font-size: 16px;
}

.news-ticker {
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* MENU HORIZONTAL COM SUBMENUS, RESPONSIVO COM SANDUICHE */
        #menuh {
            background-color: #d5f7ea;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
        }

        #menuh ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        #menuh ul li {
            margin-right: 20px;
            position: relative;
            
        }

        #menuh ul li:hover ul {
            display: block;
        }

        #menuh ul ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #444;
            min-width: 200px;
        }

        #menuh ul ul li {
            padding: 10px;
            text-align: left;
        }

        #menuh-button {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        @media screen and (max-width: 768px) {
            #menuh ul {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
            }

            #menuh ul.open {
                display: flex;
            }

            #menuh ul li {
                margin-right: 0;
                margin-bottom: 10px;
            }

            #menuh ul ul {
                position: static;
                background-color: transparent;
            }

            #menuh-button {
                display: flex;
            }
        }
        
/* DIV DO MENU LATERAL ESQUERDO - REDUZ A MARGEM DO TOPO QUANDO ABERTO NO COMPUTADOR E MANTEM A POSIï¿½ï¿½O QDO ABERTO NO CELULAR */

.sua-div {
    margin-top: -10rem;
}

@media screen and (max-width: 768px) {
    .sua-div {
        margin-top: 0;
    }
}

/* OCULTA A DIV DO BANNER VERTICAL DIREITO NAS Pï¿½GINAS INTERNAS QUANDO ABERTO EM CELULAR */
/* Estilo padrï¿½o para a DIV */
.banner-div {
    /* Estilos aqui */
}

/* Media query para dispositivos mï¿½veis (por exemplo, largura mï¿½xima de 768px) */
@media screen and (max-width: 768px) {
    .banner-div {
        display: none; /* Oculta a DIV em dispositivos mï¿½veis */
    }
}


/* OCULTA A DIV DO BANNER VERTICAL DIREITO NAS Pï¿½GINAS INTERNAS QUANDO ABERTO EM CELULAR */
/* Estilo padrï¿½o para a DIV */
.banner-img {
     width: 15rem;
}

/* Media query para dispositivos mï¿½veis (por exemplo, largura mï¿½xima de 768px) */
@media screen and (max-width: 1130px) {
    .banner-img {
     width: 9rem;
    }
}





/* EXIBE AS NOTï¿½CIAS LADO A LADO, COM IMAGEM ACIMA E TEXTO ABAIXO QUANDO ABERTO NO COMPUTADOR MAS JOGA A IMAGEM A ESQUERDA E O TEXTO A DIREITA QUANDO ABERTO NO CELULAR */
.item img {
    max-width: 100%;
    height: auto;
}

/* Para dispositivos menores, como celulares e tablets */
@media screen and (max-width: 768px) {
    .item img {
        float: left; /* Alinha a imagem ï¿½ esquerda */
        clear: both;
        margin-right: 10px; /* Espaï¿½amento entre a imagem e o texto */
        width: 8rem;
        height: 8rem;
    }
    .item p {
        margin-left: 2%; /* Remove a margem ï¿½ esquerda do texto */   
    }
}


/* EXIBE MENU LATERAL DIREITO */
.itemd img {
    max-width: 100%;
    height: auto;
}

/* Para dispositivos menores, como celulares e tablets */
@media screen and (max-width: 768px) {
    .itemd img {
        float: left; /* Alinha a imagem ï¿½ esquerda */
        clear: both;
        margin-right: 10px; /* Espaï¿½amento entre a imagem e o texto */
        width: 8rem;
        height: 8rem;
    }
    .itemd p {
/*        margin-left: 10rem;  Remove a margem ï¿½ esquerda do texto */
    }
}

/* REDUZIR O TAMANHO DO FONTE DO MENU HORIZONTAL SUPERIOR QUANDO ABERTO EM CELULAR */
/* Estilo padrï¿½o para a DIV */
.font-menu {
    /* Estilos aqui */
        font-size: 18px;
}

/* Media query para dispositivos mï¿½veis (por exemplo, largura mï¿½xima de 768px) */
@media screen and (max-width: 1200px) {
    .font-menu {
        font-size: 12px;
    }
}

/* QUEBRA LINKS EXTENSOS NO CELULAR */
.contentl {
    max-width: 100%;
    padding: 20px;
}

p {
    word-wrap: break-word; /* Essa propriedade faz o texto quebrar a linha */
}



  	.borda {
  		background-color: #fff;
  		border: 1px solid #C0C0C0;
	    /* definimos o quï¿½o arredondado irï¿½ ficar nosso box */
	    border-radius: 5px;
	    /* Declaraï¿½ï¿½o para aparecer no Firefox */
	    -moz-border-radius: 5px;
	    /* Para exibir nos outros navegadores como Chrome, safari, opera*/
	    -webkit-border-radius: 5px;
	   -webkit-box-shadow: 0px 3px 5px 0px rgba(184,175,184,1);
	   -moz-box-shadow: 0px 3px 5px 0px rgba(184,175,184,1);
	   box-shadow: 0px 3px 5px 0px rgba(184,175,184,1);
  	}

/* CSS Ajuda - AcordeÃ£o */

.accordion {
    background-color: #f9f9f9;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
  }
  
  .active, .accordion:hover {
    background-color: #ddd;
  }
  
  .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  /* CSS pop-up */
  

#popupWrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
}

#closePopup {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

#closePopup:hover {
  color: red;
}
  

/* CARROSSEL DO BANER SUPERIOR */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.carouselb-container {
    position: relative;
    overflow: hidden;
    width: 100%;
/*    height: 100vh; */
}

.carouselb {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carouselb-item {
    min-width: 100%;
 /*   height: 100vh; */
}

.carouselb-item img {
    width: 100%;
    height: 100%;
/*    object-fit: cover;   */
}

.carouselb-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
  
  
  
  