@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');

* {
    outline: none;
}
a,
button {
    text-decoration: none!important;
    cursor: pointer!important;
    transition: .3s;
}
a {
	color: black;
}
a:hover {
	color: #555555;
}
p {
    line-height: 1.5;
	margin: 0;
}
ul {
    padding: 0;
}
li {
    list-style: none;
}
body {
    margin: 0;
    font-family: 'Alexandria', sans-serif;
	position: relative;
}
.container {
    max-width: 1200px!important;
    width: 100%;
}

.titulo-geral {
	display: flex;
	flex-direction: column;
}
.titulo-geral h2 {
	text-transform: uppercase;
	font-size: 30px;
	color: black;
	white-space: nowrap;
}
.titulo-geral div {
	background-color: black;
	width: 35px;
	height: 3px;
	border-radius: 30px;
}

/* HEADER */
.navbar-default {
    background: transparent;
    border-color: transparent;
    margin-bottom: 0px;
    border-bottom: 1px solid #DADADA;
	width: 100%;
	padding: 0;
    transition: .3s;
}
.navbar-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-header .navbar-toggle {
    background: transparent !important;
    border: none;
	display: none;
}
.navbar-header .navbar-toggle img {
	width: 50px;
}
.navbar-header .menu-desktop {
	display: flex;
	align-items: center;
	gap: 40px;
}
.navbar-header .nav-ul {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 0;
}
.navbar-header .nav-ul li, .navbar-header .nav-ul li a {
	font-size: 20px;
	color: black;
	font-weight: 300;
	cursor:	pointer;
	transition: .3s;
}
.navbar-header .nav-ul li:hover, .navbar-header .nav-ul li:hover a {
	color: #555555;
}
.navbar-header .nav-ul .categorias {
	display: flex;
	align-items: center;
	gap: 5px;
	position: relative;
}
.navbar-header ul .categorias svg path {
	transition: fill 0.3s ease;
}
.navbar-header ul .categorias:hover svg path {
	fill: #555555;
}

/* DROPDOWN */
.dropdown-menu-custom {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    background-color: black; 
    padding: 15px 0px;
    margin-top: 10px; 
    list-style: none; 
    width: fit-content;
    border-radius: 4px;
    z-index: 1000;
}

.dropdown-menu-custom li {
    display: block; 
}

.dropdown-menu-custom li a {
    display: block; 
    padding: 12px 24px;
    font-size: 16px !important; 
    color: white !important; 
    text-decoration: none;
    font-weight: 300;
    transition: background-color 0.2s ease;
	white-space: nowrap;
}

.dropdown-menu-custom li a:hover {
    background-color: #333333; 
    color: white !important; 
}

.navbar-header ul li.categorias.is-open .dropdown-menu-custom {
    display: block;
}

.navbar-header ul .categorias svg {
    transition: transform 0.3s ease;
}

.navbar-header ul li.categorias.is-open svg {
    transform: rotate(180deg);
}

.redes-sociais {
	display: flex;
	gap: 15px;
}
.redes-sociais svg {
	cursor: pointer;
}
.redes-sociais svg path {
	transition: fill 0.3s ease;
}
.menu-desktop .redes-sociais svg:hover path {
	fill: #555555;
}
.navbar-header .navbar-brand {
	padding: 0;
}
.navbar-header .navbar-brand .logo {
    transition: .3s;
	width: 500px;
}

.menu-mobile {
    background-color: #000; 
    color: white;
	display: flex;
	flex-direction: column;
	gap: 15px;
	justify-content: center;
	border-bottom-left-radius: 60px;
    position: fixed;
    top: 0;
    right: 0;
	width: 280px;
    z-index: 1000; 
    padding: 40px 20px;
    box-sizing: border-box; 
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto; 
}
.menu-mobile.is-open {
    transform: translateX(0);
}
.menu-mobile nav {
	width: 70%;
	margin: 0 auto;
}
.menu-mobile > div {
	width: 70%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.menu-mobile nav ul {
	margin: 0 auto;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.menu-mobile nav li {
    margin: 0;
    padding: 0;
}
.menu-mobile nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
	white-space: nowrap;
}
.menu-mobile .categorias > div {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-mobile .accordion-categorias {
    list-style: none;
    padding: 0;
    padding-left: 5px; 
    margin-top: 10px;
    width: 100%;
    height: 0;
    overflow: hidden;
}
.menu-mobile .accordion-categorias a {
    font-size: 14px;
}
.menu-mobile .categorias.is-open .accordion-categorias {
    height: 300px; 
}
.menu-mobile .categorias svg {
    transition: transform 0.3s ease;
}
.menu-mobile .categorias.is-open svg {
    transform: rotate(180deg);
}
.menu-mobile .redes-sociais {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 999; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; 
}
.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}


/* HOME */
main {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* SEÇÃO DE NOTÍCIAS EM DESTAQUE */

/* CARROSSEL DESTAQUES */
.destaques .container {
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
.destaques .container-carrossel {
    width: 70%;
	height: 450px;
}
#carouselDestaques .card > div {
	display: flex;
}
#carouselDestaques .container-img {
	width: 45%;
	height: 450px;
	overflow: hidden;
}
.container-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
.carousel-item:hover .carousel-card-img {
	transform: scale(1.1);
}
#carouselDestaques .container-info {
	flex: 1;
	padding: 10px 15px;
}
#carouselDestaques .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 5px;
	height: 100%;
}
#carouselDestaques .card-body > div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
#carouselDestaques .card-title {
	font-size: 30px;
	font-weight: 400;
}
#carouselDestaques .card-text {
	font-size: 18px;
	font-weight: 300;
}
#carouselDestaques .card-date {
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 0;
}
.carousel-indicators-custom {
	position: relative;
	bottom: 0;
	left: 0;
	margin: 0; 
	padding: 0;
	list-style: none; 
	display: flex;
	justify-content: center;
	flex-grow: 1;
}
.carousel-indicators-custom li {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ccc; 
	margin: 0 3px; 
	cursor: pointer;
	border-top: none;
	border-bottom: none;
	transition: all 0.3s ease-in-out;
}
.carousel-indicators-custom li.active {
  	background-color: black; 
	width: 30px;
	border-radius: 6px;
}
.carousel-nav-custom .prev, .carousel-nav-custom .next {
	background-color: black;
	color: white;
	transition: all 0.3s;
	box-shadow: none !important;
	border-radius: 0 !important;
}
.carousel-nav-custom .prev:hover, .carousel-nav-custom .next:hover {
	background-color: #333333;
}

/* OUTROS DESTAQUES */
.container-outros-destaques {
	flex: 1;
}
.container-outros-destaques .container-cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.container-outros-destaques .container-img {
	width: 180px !important;
	height: 120px;
	overflow: hidden;
	flex-shrink: 0;
}
.card-outros-destaques:hover .container-img img {
	transform: scale(1.1);
}
.card-outros-destaques {
	display: flex;
	align-items: center;
	gap: 10px;
}
.card-outros-destaques:not(:last-child) {
	border-bottom: 1px solid #DADADA;
	padding-bottom: 20px;
}
.card-outros-destaques .card-body {
	padding: 0;
}
.card-outros-destaques .card-category {
	font-size: 14px;
}
.card-outros-destaques .card-title {
	font-size: 16px;
	font-weight: 400;
	line-clamp: 3;
	display: -webkit-box;         
  	-webkit-box-orient: vertical; 
  	-webkit-line-clamp: 3;        
  	overflow: hidden;           
  	text-overflow: ellipsis; 
}
.card-outros-destaques .card-date {
	font-size: 12px;
	font-weight: 300;
}
.card-outros-destaques .card-body {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

/* SEÇÃO DE ÚLTIMAS NOTÍCIAS */
.container-ultimas-sidebar {
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}

.ultimas-noticias {
	width: 70%;
}
.container-noticias {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.container-noticias .card-noticias {
	display: flex;
	gap: 30px;
	height: 280px;
	border: 0;
	padding-bottom: 25px;
}
.container-noticias .card-noticias:not(:last-child) {
	border-bottom: 1px solid #DADADA;
}
.card-noticias .container-img {
	width: 380px;
	height: 100%;
	overflow: hidden;
	flex-shrink: 0;
}
.card-noticias:hover img {
	transform: scale(1.1);
}
.card-noticias .body {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.card-noticias .title {
	font-size: 30px;
	
}
.card-noticias .date {
	font-size: 14px;
	font-weight: 300;
}

.pagination {
    justify-content: center;
}
.pagination a,
.pagination span {
	font-size: 16px;
	color: #4f4f4f;
	margin: 0 5px;
}
.pagination .current {
	background: black;
	padding: 5px;
	border-radius: 5px;
	color: #fff;
	padding: 1px 7px;
}

/* SIDEBAR */
aside {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.sobre-home img {
	width: 190px;
}
.sobre-home .info {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.sobre-home .info strong {
	font-size: 20px;
}
.sobre-home .info p {
	font-size: 16px;
	font-weight: 300;
}


.mais-lidas .numero {
	font-size: 60px;
	color: black;
}
.mais-lidas ol {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 15px;
}
.mais-lidas ol li {
	padding-bottom: 10px;
}
.mais-lidas ol li:not(:last-child) {
	border-bottom: 1px solid #DADADA;
}
.mais-lidas a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
.mais-lidas a div {
	width: 80%;
}
.mais-lidas span {
	font-size: 14px;
	font-weight: 300;
}
.mais-lidas h4 {
	font-size: 16px;
}

/* CARROSSEL DE VÍDEOS */
.container-carrossel-videos {
	position: relative;
}
.container-carrossel-videos .info-video {
	display: block;
	padding: 20px 0;
}
.container-carrossel-videos .info-video .categoria-video {
	color: black;
}
.container-carrossel-videos .info-video .titulo-video {
	font-size: 30px;
	margin: 5px 0;
	color: #000;
	line-clamp: 3;
	-webkit-line-clamp: 3;        
	display: -webkit-box;         
	-webkit-box-orient: vertical; 
	overflow: hidden;           
	text-overflow: ellipsis; 
	transition: all 0.3s;
}
.container-carrossel-videos .info-video:hover .titulo-video {
	color: #555;
}
.container-carrossel-videos .info-video .data-video {
	font-size: 14px;
	font-weight: 300;
	margin-top: 30px;
}
.container-carrossel-videos video {
	background-color: #000;
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}

.carousel-controls-videos {
	display: flex;
	justify-content: space-between; 
	align-items: center;
	margin-top: 10px; 
}

.carousel-indicators-videos {
	position: relative;
	bottom: 0;
	left: 0;
	margin: 0; 
	padding: 0;
	list-style: none; 
	display: flex;
	flex-grow: 1;
}
.carousel-indicators-videos li {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ccc; 
	margin: 0 3px; 
	cursor: pointer;
	border-top: none;
	border-bottom: none;
	transition: all 0.3s ease-in-out;
}
.carousel-indicators-videos li.active {
  	background-color: black; 
	width: 30px;
	border-radius: 6px;
}
.carousel-nav-videos .prev,
.carousel-nav-videos .next {
	padding: 8px 10px;
	font-size: 1rem;
	line-height: 1;
}

/* PÁGINA DE SOBRE */
.sobre .content {
	display: flex;
	gap: 30px;
}
.sobre .content img {
	border-radius: 10px;
	object-fit: cover;
}
.sobre .content > div {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.sobre .content > div p {
	font-weight: 300;
}

/* PÁGINA DE CONTATO */
.form-contato {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.form-contato input {
	width: 100%;
	border: 1px solid black;
	border-radius: 30px;
	padding: 15px 40px;
}
.form-contato textarea {
	border: 1px solid black;
	border-radius: 30px;
	padding: 15px 40px;
	min-height: 150px;
}
.form-contato input::placeholder,
.form-contato textarea::placeholder {
	color: black;
	font-weight: 300;
}
.form-contato button {
	width: 180px;
	background-color: black;
	color: white;
	border-radius: 10px;
	padding: 20px 0;
	font-weight: 200;
	border: none;
}
.form-contato button:hover {
	background-color: #555555;
}


/* PAGINAÇÃO */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	list-style: none;
	padding: 0;
}

.pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	min-width: 40px; 
	height: 40px;    
}

.pagination a.page-numbers:not(.prev):not(.next) {
	color: #000;
}
.pagination a.page-numbers:not(.prev):not(.next):hover {
	color: #555;
}

.pagination span.page-numbers.current {
	background-color: #000;
	color: #fff;
	border-radius: 50%;
}

.pagination a.page-numbers.prev,
.pagination a.page-numbers.next {
	background-color: #000;
	color: #fff;
	font-size: 24px;
}

.pagination a.page-numbers.prev:hover,
.pagination a.page-numbers.next:hover {
	background-color: #333;
	color: #fff;
}

/* PÁGINA INTERNA DE NOTÍCIA/VÍDEO */
.interna .container > div {
	width: 80%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.interna .img-destacada, .interna .video-destacado {
	height: 550px;
}
.interna .img-destacada img, .interna .video-destacado video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}
.interna .info {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.interna .category-date {
	display: flex;
	align-items: center;
	gap: 15px;
}
.interna .date {
	font-size: 14px;
	font-weight: 300;
}
.interna .title {
	font-weight: bold;
}
.interna .excerpt, .interna .text {
	font-size: 18px;
	font-weight: 300;
}


/* SEARCH FORM */
.search-form-custom .search-container {
	position: relative;
	width: 100%;
}
.search-form-custom .search-field {
	width: 100%;
	padding: 15px 50px 15px 20px;
	font-size: 1.2rem;
	border-radius: 60px;
	border: 1px solid #ddd;
	font-size: 14px;
}
.search-form-custom .search-field::placeholder {
	font-weight: 300;
}
.search-form-custom .search-submit {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50px;
	border: none;
	background: transparent;
	cursor: pointer;
	opacity: 0.5;
}
.search-form-custom .search-submit:hover {
	opacity: 1;
}


/* FOOTER */
footer .logo-redes {
	background-color: black;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
}	
footer .logo-redes .logo {
	width: 320px;
}
footer .redes-sociais svg:hover path {
	fill: #c3c3c3;
}
.footer-bottom {
	background-color: #212121;
	padding: 15px 0;
}
.footer-bottom p {
	color: white;
	font-size: 14px;
	text-align: center;
	margin: 0;
	font-weight: 200;
}

/* --- MOBILE --- */
@media (max-width: 1200px) {
	.navbar-header .navbar-toggle {
		display: block;
	}
	.navbar-header .menu-desktop {
		display: none;
	}

	.destaques .container-carrossel {
		width: 60%;
	}
	.destaques .container-carrossel, #carouselDestaques .container-img {
		height: 400px;
	}
}

@media (max-width: 992px) {
	.destaques .container {
		flex-direction: column;
	}
	.destaques .container-carrossel {
		width: 80%;
		margin: 0 auto;
		margin-bottom: 100px;
	}
	.container-outros-destaques {
		width: 80%;
		margin: 0 auto;
	}
	.container-outros-destaques .container-img {
		width: 220px;
		height: 140px;
	}
	.card-outros-destaques {
		gap: 20px;
	}

	.container-noticias .card-noticias {
		height: 200px;
	}
	.card-noticias .container-img {
		width: 300px;
	}
	.card-noticias .title {
		font-size: 26px;
		line-clamp: 3;
		-webkit-line-clamp: 3;        
		display: -webkit-box;         
		-webkit-box-orient: vertical; 
		overflow: hidden;           
		text-overflow: ellipsis; 
	}

	.container-ultimas-sidebar {
		flex-direction: column;
	}

	.ultimas-noticias, aside {
		width: 80%;
		margin: 0 auto;
	}

	.videos {
		margin-bottom: 40px;
	}
	.container-carrossel-videos video {
		height: 400px;
	}

	.sobre .content {
		flex-direction: column;
		align-items: center;
	}
	.sobre .content img {
		width: 400px;
		height: auto;
	}

	.interna-noticias .container > div {
		width: 90%;
	}
	.interna .img-destacada, .interna .video-destacado {
		height: 500px;
	}
}

@media (max-width: 767px) {
    .navbar-header .navbar-brand .logo {
		width: 75%;
	}
	.navbar-header .navbar-toggle {
		display: block;
	}
	
	.destaques .container-carrossel, .container-outros-destaques {
		width: 100%;
	}
	#carouselDestaques .card-title {
		line-clamp: 3;
		-webkit-line-clamp: 3;        
		display: -webkit-box;         
		-webkit-box-orient: vertical; 
		overflow: hidden;           
		text-overflow: ellipsis; 
	}
	
	.ultimas-noticias, aside {
		width: 100%;
	}

	.interna .img-destacada, .interna .video-destacado {
		height: 400px;
	}
}

@media (max-width: 576px) {
	.titulo-geral h2 {
		font-size: 26px;
	}

	.navbar-header .navbar-brand .logo {
		width: 95%;
	}
	.navbar-header .navbar-toggle img {
		width: auto;
	}

	.destaques .container-carrossel {
		height: auto;
		margin-bottom: 50px;
	}
	#carouselDestaques .card > div {
		flex-direction: column;
	}
	#carouselDestaques .container-img {
		width: 100%;
		height: 400px;
	}
	#carouselDestaques .card-title {
		font-size: 26px;
		line-clamp: 2;
		-webkit-line-clamp: 2;
	}
	#carouselDestaques .card-text {
		display: none;
	}
	.carousel-nav-custom {
		display: none;
	}
	.container-outros-destaques .container-img {
		width: 180px;
		height: 120px;
	}

	.container-noticias .card-noticias {
		flex-direction: column;
		height: auto;
	}
	.card-noticias .container-img {
		width: 100%;
		height: 200px;
	}

	.mais-lidas {
		margin-top: 20px;
	}

	.form-contato input,
	.form-contato textarea {
		border-radius: 15px;
	}

	.pagination {
		margin-top: 0;
		margin-bottom: 20px;
	}

	.interna .img-destacada, .interna .video-destacado {
		height: 250px;
	}

	footer .logo-redes {
		flex-direction: column;
		gap: 20px;
	}
}