@charset "utf-8";
/* CSS Document */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Roboto&family=Tajawal:wght@300&family=Urbanist:wght@200&display=swap');

/* Estilos gerais */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Tajawal', sans-serif;
	background-color:#1D1D1D;
}

/* Estilos do header */
.header-container {
	width:100%;
	position: sticky;
	top: 0;
	z-index: 999;
	background-color: #1D1D1D;
	color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color:#1D1D1D;
    color: white;
	max-width:1300px;
	margin:0 auto;
}

.logo  {
	width: auto;
}

.logo img {
    width: auto;
}

.menu ul {
    list-style-type: none;
    display: flex;
}

.menu ul li {
    margin: 0 20px 0 30px;
	font-size:16px;
}

.menu ul li a{
    color:#fff;
	text-decoration:none;
	text-transform:uppercase;
}

.menu ul li a:hover{
    color:#0CC652;
	text-decoration:none;
}

.menu ul li a i{
	font-size:13px;
}

/* Estilos do menu hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.line {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease-out;
}

/* Estilos para telas menores que 1024px */
@media screen and (max-width: 1024px) {
    .menu ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .menu-list {
        flex-direction: column;
        align-items: flex-end;
        position: absolute;
        top: 80px;
        right: 20px;
        background-color: #333;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
		transition: all 0.5s ease-out; /* Adicionando transição */
    }

    .menu-list.active {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        position: absolute;
        top: 80px;
        right: 20px;
        background-color: #333;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        opacity: 1; /* Inicialmente visível */
        transform: translateY(0); /* Inicialmente sem deslocamento */
    }

    .menu-list li {
        margin: 10px 0;
    }

    .line.active:nth-child(2) {
        opacity: 0;
    }

    .line.active:nth-child(1) {
        transform: translateY(12px) rotate(-45deg);
    }

    .line.active:nth-child(3) {
        transform: translateY(-12px) rotate(45deg);
    }
}


/* Estilos do conteúdo */
main {
	background-color:#fff;
	padding: 0;
}

.capa-img {
  width: 100%; /* Largura desejada para a div */
  height: 900px; /* Altura desejada para a div */
  background-image:url(../images/capa.jpg); /* Caminho da imagem */
  background-size: cover;
  background-position: center;
}


.capa-img-content{
	text-align:center;
	max-width:1100px;
	margin:0 auto;
	padding: 370px 0 0 0;
}
	/* Estilos para telas menores */
	@media screen and (max-width: 770px) {
		.capa-img-content {
			padding: 240px 0 0 0;
		}
	}
		/* Estilos para telas menores */
		@media screen and (max-width: 600px) {
			.capa-img-content {
				padding: 180px 0 0 0;
			}
		}

.capa-img-content h1{
    color: #FFFFFF;
    font-size: 70px;
    font-weight: 600;
    letter-spacing: 2.3px;
	font-family: "Tajawal", Sans-serif;
	margin: 25px 0;
}
	/* Estilos para telas menores */
	@media screen and (max-width: 990px) {
		.capa-img-content h1 {
			font-size: 60px;
		}
	}
		/* Estilos para telas menores */
		@media screen and (max-width: 860px) {
			.capa-img-content h1 {
				font-size: 50px;
			}
		}
			/* Estilos para telas menores */
			@media screen and (max-width: 720px) {
				.capa-img-content h1 {
					font-size: 40px;
				}
			}
				/* Estilos para telas menores */
				@media screen and (max-width: 590px) {
					.capa-img-content h1 {
						font-size: 20px;
						display: block;
						padding: 0 0 10px 0;
					}
				}

.capa-img-content h3{
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 2.6px;
	font-family: "Tajawal", Sans-serif;
}
	/* Estilos para telas menores */
	@media screen and (max-width: 640px) {
		.capa-img-content h3 {
			font-size: 15px;
		}
	}
		/* Estilos para telas menores */
		@media screen and (max-width: 590px) {
			.capa-img-content h3 {
				font-size: 12px;
				padding: 0 0 15px 0;
				display: block;
			}
		}

.capa-img-content span{
	color: #E7E7E7;
	font-family: "Roboto", Sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	letter-spacing: 1.7px;
}
	/* Estilos para telas menores */
	@media screen and (max-width: 640px) {
		.capa-img-content span {
			font-size: 12px;
		}
	}

.capa-img-content button {
	font-family: "Tajawal", Sans-serif;
	font-size: 20px;
	font-weight: 400;
	background-color: #0CC652;
	border-radius: 10px;
	padding: 5px 20px;
	color: #fff;
	border-color: transparent;
	margin: 25px 0 0 0;
	transition: box-shadow 0.3s ease; /* Adicione uma transição suave */
	cursor:pointer;
}

.capa-img-content button:hover {
	box-shadow: 0 0 10px 3px #0CC652;  /*Adicione um brilho ao passar o mouse */
	transform: scale(1.1); /*Aumenta ao passar o mouse */
}

/* Estilos para telas menores */
@media screen and (max-width: 770px) {
    .capa-img {
        height: 475px;
    }
}


.capa-telefone {
	padding: 80px 60px 80px 0;
	width: fit-content;
	margin:0 auto;
}

/* Estilos para telas menores */
@media screen and (max-width: 770px) {
    .capa-telefone {
        display:none;
    }
}


/* pulsar da bandeira */
.capa-telefone-bandeira {
    height:50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse-bandeira 2s infinite;
    width: fit-content;
	float:left;
	margin: 0 -15px 0 0px;
}

@keyframes pulse-bandeira {
	0% {
			transform: scale(0.95);
			box-shadow: 0 0 0 0 #ffffff;
		}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
		}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
		}
}

.capa-telefone-bandeira img{
	margin:0;
}

.capa-telefone-bandeira-balao{
	display: none;
	float: left;
	background-color: rgba(255, 255, 255, 0.7);
	color: #333;
	border-radius: 20px;
	font-size: 15px;
	font-family: "Roboto", Sans-serif;
	padding: 7px 20px;
	box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 8px rgba(255, 255, 255, 0.8), 0 0 8px rgba(255, 255, 255, 0.8), 0 0 8px rgba(255, 255, 255, 0.8);
	animation: slideIn 1s forwards;
	margin:4px 0 0 0;
}

@keyframes slideIn {
	from {
		margin-left: -110%;
		opacity: 0;
	}
	to {
		margin-left: 0;
		opacity: 1;
	}
}
		
.capa-telefone-bandeira-balao span{
	color:#333 !important;
	font-size: 17px;
	font-weight: bold;
	font-family: "Roboto", Gadget, sans-serif;
	margin: 0 0 0 10px;
}



/*SERVIÇOS*/
.servicos {
  max-width: 1100px;
  margin: 0 auto;
  display: table;
  padding: 0 5%;
  opacity: 0;
  transform: translateY(10%);  /*Desloca a div para baixo */
  transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
}

.servicos.show {
  opacity: 1;
  transform: translateY(0); /* Reposiciona a div de volta */
}
			
	.servicos h1{
		color: #303030;
		font-family: "Urbanist", Sans-serif;
		font-size: 45px;
		font-weight: 300;
		letter-spacing: 2.2px;
		text-align:center;
		margin:25px 0 0 0;
	}
	
.line-section{
	margin:0 auto;
	display:table;
	text-align:center;
}

.line-descricao{
	color: #333333;
	font-family: "Roboto", Sans-serif;
	font-size: 15px;
	font-weight: normal;
	line-height: 21px;
	text-align:center;
	margin:25px 0 50px 0;
}

.service-boxes {
  float: left;
  width: 30%;
  margin: 10px; /* Margem entre as divs */
  border-radius: 10px;
  border: 1px solid #F8F8F8;
  text-align: center;
  box-sizing: border-box; /* Inclui as bordas e o padding na largura e altura */
  padding:45px 0;
  height:215px;
  transition: box-shadow 0.3s ease;
  cursor:pointer;
}

.service-boxes:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2); /* Cria um brilho ao passar o mouse */
}

/* A última div não deve ter margem direita para evitar quebrar a linha */
.service-boxes:last-child {
  margin-right: 0;
}

/* Estilos para telas menores */
@media screen and (max-width: 770px) {
    .service-boxes {
        width: 46%;
    }
}

/* Estilos para telas menores */
@media screen and (max-width: 575px) {
    .service-boxes {
        width: 100%;
		float:none;
    }
}


	.service-boxes h3{
		color: #0A0A0A;
		font-family: "Tajawal", Sans-serif;
		font-size: 18px;
		font-weight: 600;
	}
		.service-boxes h2{
			color: #0A0A0A;
			font-family: "Roboto", Sans-serif;
			font-size: 14px;
			font-weight: normal;
			padding: 15px 0 0 0;			
		}
			.service-boxes span i{
				color: #1ED715;
				border-color: #1ED715;
				font-size:35px;
				margin:0 0 20px 0;	
			}


/*CLIENTES*/
.clientes {
  max-width: 1100px;
  margin: 0 auto;
  display: table;
  padding: 0 5%;
  opacity: 0;
  transform: translateY(10%); /* Desloca a div para baixo */
  transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
}

.clientes.show {
  opacity: 1;
  transform: translateY(0); /* Reposiciona a div de volta */
}
			
	.clientes h1{
		color: #303030;
		font-family: "Urbanist", Sans-serif;
		font-size: 45px;
		font-weight: 300;
		letter-spacing: 2.2px;
		text-align:center;
		margin:25px 0 0 0;
	}
	
.clientes-boxes {
  float: left;
  width: 22%;
  margin: 10px; /* Margem entre as divs */
  border-radius: 10px;
  border: 1px solid #F8F8F8;
  text-align: center;
  box-sizing: border-box; /* Inclui as bordas e o padding na largura e altura */
  padding: 0;
  transition: box-shadow 0.3s ease;
}
	.clientes-boxes img{
	  width: 150px;
	}

.clientes-boxes:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2); /* Cria um brilho ao passar o mouse */
}

/* A última div não deve ter margem direita para evitar quebrar a linha */
.clientes-boxes:last-child {
  margin-right: 0;
}

/* Estilos para telas menores */
@media screen and (max-width: 770px) {
    .clientes-boxes {
        width: 30%;
    }
}

/* Estilos para telas menores */
@media screen and (max-width: 685px) {
    .clientes-boxes {
        width: 28%;
    }
}

/* Estilos para telas menores */
@media screen and (max-width: 620px) {
    .clientes-boxes {
        width: 100%;
		float:none;
    }
}

	.clientes-boxes h3{
		color: #0A0A0A;
		font-family: "Tajawal", Sans-serif;
		font-size: 18px;
		font-weight: 600;
	}
		.clientes-boxes h2{
			color: #0A0A0A;
			font-family: "Tajawal", Sans-serif;
			font-size: 17px;
			font-weight: 600;			
		}
			.clientes-boxes span i{
				color: #1ED715;
				border-color: #1ED715;
				font-size:35px;
				margin:0 0 20px 0;	
			}

/*QUEM SOMOS*/
.quem-somos {
  max-width: 1100px;
  margin: 0 auto;
  display: table;
  padding: 0 5%;
  opacity: 0;
  transform: translateY(10%); /* Desloca a div para baixo */
  transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
}

.quem-somos.show {
  opacity: 1;
  transform: translateY(0); /* Reposiciona a div de volta */
}
			
	.quem-somos h1{
		color: #303030;
		font-family: "Urbanist", Sans-serif;
		font-size: 45px;
		font-weight: 300;
		letter-spacing: 2.2px;
		text-align:center;
		margin:25px 0 0 0;
	}

.quem-somos-area{
	background-color:#f5f5f6;
	width:100%;
	margin:45px 0;
	box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.2), 0 10px 10px -10px rgba(0, 0, 0, 0.2);
}

.quem-somos-texto{
}
	.quem-somos-texto img{
		width:100%;
		margin:0 0 40px 0;
	}
		.quem-somos-texto p{
			text-align: justify;
			color: #2B2B2B;
			font-size:16px;
			margin: 30px 0 20px 0;
			font-family: "Roboto", Sans-serif;
			overflow-wrap: break-word;
			word-wrap: break-word;
		}
			.quem-somos-texto span{
				color: #2B2B2B;
				font-size:60px;
				font-weight:bolder;
				margin: -2px 15px 0 0;
				float: left;
				height: 56px;
				font-family: sans-serif;
			}


/*NOVIDADES DO INSTAGRAM*/
.instagram-news {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  opacity: 0;
  transform: translateY(10%); /* Desloca a div para baixo */
  transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
  overflow:auto;
}

.instagram-news.show {
  opacity: 1;
  transform: translateY(0); /* Reposiciona a div de volta */
}

			
	.instagram-news h1{
		color: #303030;
		font-family: "Urbanist", Sans-serif;
		font-size: 45px;
		font-weight: 300;
		letter-spacing: 2.2px;
		text-align:center;
		margin:25px 0 0 0;
	}


/*NOSSOS NUMEROS*/
.nossos-numeros {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  opacity: 0;
  transform: translateY(10%); /* Desloca a div para baixo */
  transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
}

.nossos-numeros.show {
  opacity: 1;
  transform: translateY(0); /* Reposiciona a div de volta */
}

			
	.nossos-numeros h1{
		color: #303030;
		font-family: "Urbanist", Sans-serif;
		font-size: 45px;
		font-weight: 300;
		letter-spacing: 2.2px;
		text-align:center;
		margin:25px 0 0 0;
	}
	
.counter-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}

.counter-container .box {
	width: calc(33.33% - 20px);
	padding: 20px;
	text-align: center;
	border: 1px solid #f0f0f0;
	border-radius: 10px;
	transition: box-shadow 0.3s ease-in-out;
	cursor:pointer;
	font-size:40px;
	font-weight:bold;
	font-family:"Roboto", Gadget, sans-serif;
	
}
	.counter-container .box i{
		font-size:30px;
		padding: 20px 0;
		text-align: center;
		color:#1ED715;
	}
		.counter-container .box span{
			font-size:15px;
			font-weight:bold;
			padding: 20px 0;
			text-align: center;
			color:#333;
			font-family:"Roboto", Gadget, sans-serif;
			font-size:17px;
			font-weight:normal;
		}

.counter-container .box:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Adaptação para resoluções menores */
@media screen and (max-width: 768px) {
  .counter-container .box {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .counter-container .box {
    width: calc(100% - 20px);
  }
}







/*CONTATO*/
.contato {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  opacity: 0;
  transform: translateY(10%); /* Desloca a div para baixo */
  transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
}

.contato.show {
  opacity: 1;
  transform: translateY(0); /* Reposiciona a div de volta */
}

			
	.contato h1{
		color: #303030;
		font-family: "Urbanist", Sans-serif;
		font-size: 45px;
		font-weight: 300;
		letter-spacing: 2.2px;
		text-align:center;
		margin:25px 0 0 0;
	}
	

.contato-form-area{
	height:400px;
}

.contato-form-dados {
	float:left;
	height:400px;
	width:39%;
	margin:0 2% 0 0;
	padding: 45px 0 0 0;
}

.contato-form-dados-icon{
	float:left;
	width:40px;
	margin:0 20px 30px 0;
}	
	.contato-form-dados-icon i{
		font-size:30px;
		color:#1ED715;
	}	

.contato-form-dados-content{
	float:left;
	margin:0 0 30px 0;
	font-family: "Roboto", Sans-serif;
	font-size: 15px;
	font-weight: normal;
}
		

.contato-form-campos {
	float:left;
	height:400px;
	width:59%;
}
/* CSS do Formulario */
.contato-form-campos .contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  /*border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}

.contato-form-campos .contact-form #lastname{
  display:none;
  visibility:hidden;
}


.contato-form-campos .form-group {
  margin-bottom: 20px;
}

.contato-form-campos input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size:15px;
  font-family: "Tajawal", Sans-serif;
}

.contato-form-campos textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  height:100px;
  font-size:16px;
  font-family: "Tajawal", Sans-serif;
}

.contato-form-campos button {
  padding: 10px 20px;
  background-color: #0CC652;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Tajawal", Sans-serif;
  font-size:16px;
  font-weight:bold;
  letter-spacing:1px;
}

.contato-form-campos button:hover {
  background-color: #0AA945;
}

/* Efeitos ao focar nos campos */
.contato-form-campos input:focus,
textarea:focus {
  border-color: #0CC652;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 204, 82, 0.5);
}

/* Estilos para telas menores */
@media screen and (max-width: 770px) {
    .mobile-device {
        clear:left;
    }
	.contato-form-dados{
		width:100%;
		height:auto;
		padding:0;
	}
	.contato-form-campos{
		width:100%;
	}
}


/* GOOGLE MAPS */
.google-maps {
  width: 100%;
  margin: 0 auto;
  display: table;
  padding: 3% 0;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.google-maps.show {
  opacity: 1;
}
	
.map-container {
	width: 100%;
	height: 400px;
	position: relative;
	overflow: hidden; /* Garante que o mapa não ultrapasse a área designada */
}

/* Estilos para o iframe do mapa */
.map-container iframe {
	width: 100%;
	height: 100%;
	border: 0; /* Remove a borda padrão do iframe */
}



/* Estilos do rodapé */
footer {
	background-color:#212934;
	color: white;
	text-align: center;
	padding: 10px 0;
	bottom: 0;
	width: 100%;
}

/* Estilos para a classe que envolve as colunas */
.column-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px; /* Espaçamento entre colunas */
	max-width: 1400px;
	margin: 0 auto; /* Centralizar as colunas */
	padding: 20px; /* Adicionar espaçamento interno */
}

/* Estilos para cada coluna */
.column {
	flex: 1 1 200px; /* Largura máxima das colunas */
	max-width: calc(50% - 20px); /* Duas colunas por linha */
	margin-bottom: 20px; /* Espaçamento entre colunas na vertical */
	box-sizing: border-box; /* Inclui a borda na largura */
}

@media screen and (max-width: 768px) {
	/* Estilos para telas menores (mobile) */
	.column {
	max-width: 100%; /* Uma coluna por linha */
	}
}

.column-01{

}
	.column-01 img{
		margin:0 0 20px 0;
		
	}
		.column-01 p{
			color:#A6A9AE;
			font-size: 17px;
			font-family: "Roboto", Sans-serif;
			line-height: 27px;
		}

.column-01 h1,
.column-02 h1,
.column-03 h1,
.column-04 h1,
.column-05 h1 {
	color: #74BF35;
	font-family: "Montserrat", Sans-serif;
	font-size: 14px;
	font-weight: 700;
	padding:0 0 20px 0;
	text-align:left;
	margin:0 0 0 21px;
}

.column-02 span {
	color: #A6A9AE;
	font-family: "Montserrat", Sans-serif;
	font-size: 23px;
	font-weight: 500;
}
	.column-02 span i{
		color: #74BF35;
		font-size: 25px;
	}
		.column-02 h6{
			color: #A6A9AE;
			font-family: "Roboto", Sans-serif;
			font-size: 13px;
			font-weight: 400;
			line-height: 24px;
			text-align:left;
			margin:15px 0 25px 20px;
		}

.column-list{
	font-family: "Roboto", Sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #A6A9AE;
	margin: 0 0 0 20px;
	padding: 0 0 20px 0;
    text-align: left;
	border-bottom:1px solid #26303E;
}	
	.column-list i{
		color: #74BF35;
		font-size: 17px;
		margin: 0 10px 0 0;
	}	
	
	
	
	
/* ESTILOS PARA O BOTÃO DO WHATSAPP */
.whatsapp-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #25d366;
	color: #fff;
	font-size: 16px;
	padding: 0px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
	width: 51px;
	height: 50px;
}
    @keyframes pulse {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #29a71a;
      }

      70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
      }

      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
      }
    }
	
	
	
/* EFEITOS ADICIONAIS */

/* slide do botao orçamento */
#slide-button {
  opacity: 0;
  position: relative;
  bottom: -100vh; /* Inicia fora da tela */
  animation: slideFadeIn 1s forwards;
}

@keyframes slideFadeIn {
  to {
	opacity: 1;
	bottom: 0;
  }
}


/* slide do BEM VINDOS AO DREAM IT */
@keyframes bem-vindos {
  0% {
	transform: translateX(-1000px);
	opacity: 0;
  }
  100% {
	transform: translateX(0);
	opacity: 1;
  }
}

.bem-vindos {
  animation: bem-vindos 1s ease forwards; /* Adicionando a classe à animação */
}

/* slide do slagan criação de sites profissionais */
@keyframes slogan-capa {
  0% {
	-webkit-transform: translateX(1000px);
			transform: translateX(1000px);
	opacity: 0;
  }
  100% {
	-webkit-transform: translateX(0);
			transform: translateX(0);
	opacity: 1;
  }
}

.slogan-capa {
  animation: slogan-capa 1s ease forwards; /* Adicionando a classe à animação */
}


/* slide do texto a capa */
@keyframes fade-in-top {
  0% {
	transform: translateY(-50px);
	opacity: 0;
  }
  100% {
	transform: translateY(0);
	opacity: 1;
  }
}

/* Aplicando a animação à classe 'capa-texto' */
.capa-texto {
  animation: fade-in-top 1s ease-out forwards;
}

/* Estilo adicional para a capa de texto (apenas para ilustração) */
.capa-texto {
  padding: 20px;
}



/* ----------- MENU DROPDOWN DE IDIOMAS ----------- */
/* Style The Dropdown Button */
.header .menu-flag-container {
	width: 139px;
}
.header .round-flag {
    background-color: #f9f9f9;
    box-shadow: 0 0 8px 1px #f9f9f9;
    border-radius: 10px;
    height: 22px;
    border: 1px solid #f9f9f9;
	float:left;
}

.rotated-div {
  width: 10px;
  height: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 0 8px 2px #f9f9f9;
  transform: rotate(45deg); /* Gira a div em 45 graus */
  margin: 7px -16px 0 4px;
  float: left;
}

.header .dropbtn {
  background-color: #f9f9f9;
  color: #333;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  letter-spacing:1px;
  box-shadow: 0 0 8px 2px #f9f9f9;
  margin: 0px 0 0 6px;
  width:109px;
}

/* The container <div> - needed to position the dropdown content */
.header .dropdown {
  position: relative;
  display: inline-block;
}

.rotated-div-list {
  width: 10px;
  height: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 0 8px 2px #f9f9f9;
  transform: rotate(45deg); /* Gira a div em 45 graus */
  margin: -4px 0px 0 70px;
  float: left;
}

/* Dropdown Content (Hidden by Default) */
.header .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 0 8px 1px #f9f9f9;
  z-index: 1;
  border-radius: 10px;
  margin: 14px 0 0 -24px;
}

/* Links inside the dropdown */
.header .dropdown-content a {
  color: black;
  padding: 7px 16px;
  text-decoration: none;
  display: block;
  border-radius: 10px;
}
	.header .dropdown-content a img{
	  margin:0 15px 0 0;
	  float:left;
	}

/* Change color of dropdown links on hover */
.header .dropdown-content a:hover {
	background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.header .dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.header .dropdown:hover .dropbtn {
  background-color: #FFEADF;
}


@media screen and (max-width: 1010px) {
	/* Estilos para telas menores (mobile) */
	.header .menu-flag-container {
		display:none; /* Uma coluna por linha */
	}
	.header .menu ul li {
		margin: 0 20px 0 15px;
		font-size: 16px;
	}
}

@media screen and (max-width: 1155px) {
	/* Estilos para telas menores (mobile) */
	.header .menu ul li {
		margin: 0 20px 0 15px;
		font-size: 16px;
	}
}
	@media screen and (max-width: 1050px) {
		/* Estilos para telas menores (mobile) */
		.header .menu ul li {
			margin: 0 15px 0 10px;
			font-size: 16px;
		}
	}




/* CLASSES GLOBAIS */
.clear-div{
	clear:left;	
}

.inner-link{
	padding:30px 0;	
}



