@charset "utf-8";
/* CSS Document */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* HEADER */
.header-img {
  width: 100%;
  height: 210px;
margin-bottom: 0px;
  
}

/* NAV */
nav {
  background-color: #d96312;
margin-top: 0px;
}

nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 10px 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

nav ul li a:hover {
  color:#ee9c1a;
}

/* INTRO */
.intro {
  text-align: center;
  padding: 40px 20px;
  line-height: 1.8;

}

/* POSTS */
.post {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.postado {
  display: flex;
  align-items: center;
  gap: 15px;
	margin-bottom: 45px;
}

.autor-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.titlepost1 h3 {
  margin-top: 10px;
  color: #db760e;
 text-align: center;
}

/* LAYOUT DOS POSTS */
.post-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  align-items: center;
}

.img-left img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.text-right {
  flex: 1;
  padding: 20px;
text-align: left;
}
.text-right p.text-post {
	font-size: 13px !important;
    color: #333 !important;
    text-align: left !important;
}

/* VÍDEOS */
.titlevideos{
	color: #db760e;
	text-align: center;
	font-size: 30px;
}
.video-container {
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
			gap: 40px;
			margin-bottom: 40px;
	
		}

		.video-box {
			display: flex;
			flex-direction: column;
			align-items: center;
			width: 480px;
		}

		.video-box iframe {
			
			border-radius: 12px;
			box-shadow: 0 4px 8px rgba(0,0,0,0.2);
		}
.descricao-videos{
	 text-align: center;
	font-size: 16px;
	color: #b5622b;
	width: 100%;
	
	
}
.negritoposttext{
	color: #f36c13;
	font-size: 18px;
}

/* AVALIE / COMENTARIO / TAGS */
.avalie,
.tags {
  text-align: center;
  padding: 15px;
  background-color: #f9f9f9;
  margin-top: 20px;
  border-radius: 10px;
}

.comentario {
  text-align: left;
  padding: 15px;
}

/* POST DE TEXTO */
.texto-container {
  background-color: #fff8f0;
  border-left: 4px solid #db760e;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  line-height: 1.8;
}

.texto-container p {
  font-size: 13px;
  color: #333;
  text-align: justify;
}






/* FOOTER */
footer {
  text-align: center;
  background: linear-gradient(to right, #db760e, #f3bb20);
  color: #fff;
  padding: 30px 10px;
}

.social-icons img {
  width: 30px;
  margin: 10px;
  filter: brightness(0) invert(1);
}

/* Contêiner para o vídeo */
        .video-container {
            position: relative;
            max-width: 100%;   /* Garantir que o container não ultrapasse a largura da tela */
            margin: 20px auto; /* Centralizar o container com espaçamento em cima e embaixo */
        }

        /* Estilo responsivo do vídeo */
        .video-container iframe {
            width: 50%;  /* 50% do tamanho da tela no desktop */
            height: 315px; /* Altura do vídeo */
            border: none;
        }

        /* Media query para dispositivos móveis */
        @media (max-width: 768px) {
            .video-container iframe {
                width: 90%;  /* 90% da largura no celular/tablet */
                height: 200px; /* Altura ajustada para dispositivos menores */
            }
        }



/* RESPONSIVO */
@media (max-width: 768px) {
  .post-content {
    flex-direction: column;
    text-align: center;
  }

  .img-left, .text-right {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
  }
}


