/**
 * Cores
 * 
 * Bordo: #864445
 * Terracota: #934C4F
 * Cinza: #D3D3D3
 * Azul Petróleo: #002C3D
 * Branco: #FFFFFF
 * 
 * */

/* GERAL */
* {
	padding: 0px;
	margin: 0px;
}
html, body {
	font-family: 'Poppins', sans-serif;
	background-color: #f8f9fa;
	margin: 0; padding: 0; overflow-x: hidden;
}

.scrollToTop {
	background-color: #fff;
	border-radius: 65px;
	bottom: 20px;
	box-shadow: 2px 3px 19px -2px rgba(0, 0, 0, .75);
	color: #d9a000;
	cursor: pointer;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	position: fixed;
	right: 20px;
	z-index: 3;
	margin-top: 10px;
}
.img-top {
	height: 30px;
	margin-top: 15px;
}
.scrollToWa {
	border-radius: 65px;
	left: 20px;
	bottom: 20px;
	box-shadow: 2px 3px 19px -2px rgba(0, 0, 0, .75);
	color: #d9a000;
	cursor: pointer;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	position: fixed;
	z-index: 3;
	margin-top: 10px;
}
.img-wa {
	height: 60px;
}

/* NAV */
.navbar-maroon {
	background-color: #864445;
}
.img-logo {
	height: 60px;
}
.nav-link {
	color: white;
}
.nav-link:hover {
	background-color: white;
	border-radius: 20px;
	color: #864445;
}
/* Estado normal */
.navbar-custom {
	background-color: #864445;
	/*opacity: 0.8;*/
	transition: padding 0.3s ease, background-color 0.3s ease;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}
.navbar-custom.scrolled {
	opacity: 0.8;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.navbar-brand img {
	transition: height 0.3s ease;
	height: 60px;
}
.navbar-custom.scrolled .navbar-brand img {
	height: 40px; /* opcional: diminui a logo também */
}

/* MAIN */
main h2 {
	font-family: 'Raleway', sans-serif;
	border-bottom: solid 1px #864445;
	color: #864445;
	padding-bottom: 20px;
	margin-bottom: 30px;
}
main i {
	color: black;
}

/* HERO */
.hero-section {
	background-image: url('../img/bg-gray.jpg');
	background-size: cover;      /* cobre toda a área */
	background-position: center; /* centraliza a imagem */
	background-repeat: no-repeat;
	min-height: 100vh;           /* ocupa altura total da tela */
	padding-top: 100px;
	display: flex;
	align-items: center;
}
.hero-section h1{
	font-family: 'Raleway', sans-serif;
	font-size: 56px;
	font-size: clamp(1.8rem, 5vw, 3.2rem);
	line-height: 1.2;
}
/* NICHO */
#nicho {
	background-color: white;
}
.nicho-card {
	background: #f1f1f1;
	border-radius: 28px;
	padding: 40px 30px;
	text-align: left;
}
.nicho-card:hover {
	background: #062b4f;
}
.nicho-card:hover p.text-muted { 
	color: white !important; 
}
.nicho-card h5 {
	color: #864445;
}
.icon-circle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* QUEM SOMOS */
.quem-subtitle {
	font-family: 'Raleway', sans-serif;
}

/* SERVICOS */
#servicos {
	position: relative;
	background-image: url('../img/home-servicos.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
/* Camada azul */
#servicos::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(11, 45, 79, 0.85); /* azul transparente */
	z-index: 1;
}
/* Conteúdo acima do overlay */
#servicos > .container {
	position: relative;
	z-index: 2;
}
#servicos .card { transition: transform 0.3s ease; /* suaviza o movimento */ }
#servicos .card:hover { transform: translateY(-20px); /* sobe 20px */ }

/* DEPOIMENTOS */
/* Estado inicial (fora da tela) */
.reveal-left {
	opacity: 0;
	transform: translateX(-80px);
	transition: all 0.7s ease-out;
}
/* Quando entra na tela */
.reveal-left.active {
	opacity: 1;
	transform: translateX(0);
}


/* CONTATO */
#contato label {
	margin: 10px 0px;
}
.btn-custom {
	background-color: #864445;
	color: white;
}
.btn-custom:hover {
	background-color: #934C4F;
	color: white;
	margin: 20px 0px;
	width: 100%;
}

/* FOOTER */
footer{
	background-color: #934C4F;
	color: black;
}
footer a {
	text-decoration: none;
	color: black;
}
footer i {
	font-size: 18px;
}

@media (max-width: 720px){
	.hero-section a {
		margin-bottom: 10px;
	}
	.text-justify-mobile {
		text-align: justify;
		text-justify: inter-word;
	}
	.btn-center-mobile {
		display: flex;
		justify-content: center;
	}
}