*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Open Sans";
}

/**Boot CSS**/

html,body{
	height: 100%;
}

img{
	width: 100%;
	max-width: 400px;
}
.center{
	max-width: 1280px;
	padding:0 2%;
	margin:0 auto;
}

.w33{
	width: 33.3%;
	padding: 0 10px;
}

.w50{
	padding: 0 10px;
	width: 50%;
}

.left{
	float: left;
}

.right{
	float: right;
}

.clear{
	clear: both;
}

/**Estilização do Site**/

.sucesso{
    display: none; /* 🔥 importante */
    position: fixed;
    right: 20px;
    top: 20px;
    padding: 10px 2%;
    width: 210px;
    color: white;
    background: #4CAF50; /* verde mais bonito */
}

.erro{
    display: none;
    position: fixed;
    right: 20px;
    top: 20px;
    padding: 10px 2%;
    width: 210px;
    color: white;
    background: #f44336;
}

.overlay-loading{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: rgba(0, 0, 0, 0.4);
}

.overlay-loading img{
	width: 64px;
	height: 64px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}

header{
	padding: 4px 0;
	background: #548B54;
}

header .logo img {
   	width: 130px; 
	max-width: 100%;
    height: auto;
}

.logo a{
	text-decoration: none;
	color: white;
}


.mobile{
	display: none;
}

nav.desktop ul{
	position: relative;
	top: 6px;
	list-style-type: none;
}
nav.desktop li{
	font-weight: 300;
	font-size: 15px;
	padding:0 30px;
	text-transform: uppercase;
	display: inline-block;
}
nav.desktop a{
	transition: 1s;
	color: white;
	text-decoration: none;
}

nav.desktop a:hover{
	color: darkgreen;
	text-decoration: underline;
}

section.banner-container{
	width: 100%;
	height: 600px;
	position: relative;
}

.banner-single{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	display: none;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.overlay{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(51, 51, 51, 0.7);

}

section.banner-container form{
	width: 93%;
	max-width: 600px;
	z-index: 2;
	position: absolute;
	left: 50%;
	top: 50%;
	transform:translate(-50%,-50%) ;
	-ms-transform:translate(-50%,-50%);
}
section.banner-container form h2{
	color: white;
	font-weight: 300;
	font-size: 30px;
	text-align: center;
}
section.banner-container form input[type=email]{
	width: 100%;
	height: 66px;
	margin-top: 10px;
	background: white;
	color: #333;
	font-size: 22px;
	padding-left: 10px;
}
section.banner-container form input[type=submit]{
	width: 100%;
	height: 66px;
	margin-top: 10px;
	background: #548B54;
	color: white;
	cursor: pointer;
	font-size: 22px;
}

section.descricao-autor{
	padding: 40px 0;
	background-color: #F0FFF0;
}

section.descricao-autor h2{
	font-size: 28px;
	font-weight: 400;
	color: #444;
}

section.descricao-autor p{
	font-size: 16px;
	color: #444;
	font-weight: 300;
	margin-top: 10px;
}

section.especialidades{
	padding: 40px 0;
	background: #E0FFFF;
}

section.especialidades h2.title{
	font-size: 40px;
	text-align: center;
	font-weight: 400;
	color: #999;
}

.box-especialidade{
	margin: 40px 0;
	padding: 0 30px;
	text-align: center;
}

.box-especialidade h3{
	color: #2E8B57;
	font-size: 30px;
}

.box-especialidade h4{
	color: #8FBC8F;
	font-size: 20px;
}
.box-especialidade p{
	color: #444;
	font-size: 15px;
	margin-top: 10px;
}

section.extras{
	padding: 30px 0;
	background: #2E8B57;
}

.servicos-container, .depoimentos-container{
	padding: 0 50px;
}

section.extras .title{
	color: white;
	font-weight: 300;
	font-size: 25px;
	margin-bottom: 15px;
}

.depoimento-single{
	padding: 15px 0;
	border-bottom: 1px solid #3CB371;
}

p.depoimento-descricao{
	font-size: 15px;
	color: white;
	margin-top: 5px;
	font-weight: 300;
}

p.nome-autor{
	font-size: 15px;
	color: #90EE90;
	margin-top: 5px;
	font-weight: bold;
}

.servicos ul{
	margin: 20px 0;
}

.servicos li{
	margin-bottom: 15px;
	font-size: 15px;
	color: white;
	font-weight: 300;
}

.clientes-container{
	margin-top: 40px;
	padding: 20px 0;
}

.cliente-card{
	background: #1b1b1b;
	border: 1px solid rgba(0,123,255,0.25);
	border-radius: 14px;
	padding: 25px;
	margin-bottom: 25px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.35);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cliente-card::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg,#0084ff,#00c6ff);
}

.cliente-card:hover{
	transform: translateY(-6px);
	border-color: rgba(0,198,255,0.5);
	box-shadow: 0 8px 30px rgba(0,123,255,0.15);
}

.cliente-info h3{
	font-size: 22px;
	color: #ffffff;
	margin-bottom: 12px;
	font-weight: 600;
}

.cliente-info p{
	font-size: 15px;
	color: #c7c7c7;
	line-height: 1.7;
	margin-bottom: 20px;
}

.cliente-info a{
	display: inline-block;
	padding: 11px 20px;
	background: linear-gradient(90deg,#007bff,#00bfff);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: bold;
	font-size: 14px;
	transition: 0.3s;
}

.cliente-info a:hover{
	transform: scale(1.03);
	filter: brightness(1.1);
}

footer{
	background: #008B45;
	padding: 30px 0;
}

footer p{
	color: #90EE90;
	text-align: center;
	font-weight: 500;
	font-size: 16px;
}

footer.fixed{
	position: fixed;
	bottom: 0;
	width: 100%;
}

body{
	overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

footer {
  margin-top: auto; 
}

section.erro-404 h2{
	text-align: center;
	transform: translateY(-50%);
	color: #444;
	font-weight: 400;
	font-size: 28px;
	border-top: 2px solid #444;
}

section.erro-404 p{
	margin-top: 8px;
	text-align: center;
	font-size: 16px;
	color: #444;
	font-weight: 300;
}

section.erro-404 a{
	color: #444;
}

.wraper-404{
	transform: translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	width: 100%;
	left: 50%;
	max-width: 1280px;
	padding: 0 2%;
	text-align: center;
	position: absolute;
	top: 50%;
}

#map{
	width: 100%;
	height: 400px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* proporção 16:9 */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contato-container{
	padding: 40px 0;
	text-align: center;
	background-color: #F0FFF0;

}

.contato-container input[type=text],
.contato-container input[type=email]{
	margin: 8px 0;
	width: 100%;
	height: 40px;
	border: 1px solid #ccc;
	padding-left: 8px;
	font-size: 16px;
	max-width: 500px;
	color: #444;
}

.contato-container textarea{
	padding: 8px;
	margin: 8px 0;
	width: 100%;
	height: 120px;
	border: 1px solid #ccc;
	padding-left: 8px;
	font-size: 16px;
	max-width: 500px;
	resize: vertical;
	color: #444;
}

.contato-container input[type=submit]{
	background: #548B54;
	width: 140px;
	height: 40px;
	color: white;
	cursor: pointer;
}

.bullets{
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}

.bullets span{
	margin: 0 10px;
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	cursor: pointer;
	background-color: #98FB98;
}

.bullets span.active-slider{
	background: white;
}

.atualizacoes h2 {
  text-align: center;
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 20px;
}

/* Container dos cards */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

/* Estilo base dos cards */
.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border-top: 4px solid transparent; /* linha superior para status */
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #2c3e50;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

/* Efeito ao passar o mouse */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Status dos cursos */
.card.concluido {
  border-top-color: #2ecc71; /* verde */
}

.card.cursando {
  border-top-color: #f1c40f; /* amarelo */
}

.card.futuro {
  border-top-color: #3498db; /* azul */

}


@media screen and (max-width: 768px){
	img{
		float: none !important;
		display: block;
		margin:0 auto;
	}

	.w50{
		padding: 20px;
		width: 100%;
	}

	.w33{
		width: 100%;
		padding: 20px;
	}

	.box-especialidade{
		padding: 40px 20px;
		margin: 0;
	}
}


@media screen and (max-width: 700px){
	.logo img {
        max-width: 100px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

	nav.desktop{
		display: none;
	}

	nav.mobile{
		display: block;
	}

	.botao-menu-mobile{
		font-size: 24px;
		cursor: pointer;
		color: #66CDAA;
	}

	nav.mobile ul{
		top: 55px;
		z-index: 3;
		position: absolute;
		left: 0;
		width: 100%;
		display: none;
		text-align: center;
	}

	nav.mobile li{
		font-weight: 300;
		width: 100%;
		display: block;
		background: #66CDAA;
		border-bottom: 1px solid #ccc;
		font-size: 17px;
		padding: 8px 0;
	}

	nav.mobile li a{
		display: block;
		color: #444;
		text-decoration: none;
	}
}