/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	scroll-behavior: smooth;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
body {
	line-height: 1;
	font-family: "Montserrat", sans-serif;
	background-color: white;
	margin: 0 !important;
	padding: 0 !important;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
/* Geral */

.container {
	width: 100%;
	max-width: 80rem; /* 1280px */
	margin: 0 auto;
	padding: 0 1.25rem; /* 20px */
}
/* Linha de separação entre o texto e as imagens */
.separator-line {
	border-top: 2px solid #b8a45c;
	margin: 2rem 0; /* 2rem de distância da linha para as imagens */
}

/* Estilos do header */
.header {
	width: 100%;
	height: 5rem; /* 80px */
	background-color: #f5f5eb;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1); /* 2px 4px */
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Estilos do navbar */
.nav {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	border-bottom: 1px solid black;
}

/* Estilos da lista de navegação */
.nav-list {
	display: flex;
	justify-content: space-evenly;
	width: 100%;
	gap: 2rem;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 10;
	position: absolute;
	top: 1.5rem;
	right: 1rem;
}

.hamburger .bar {
	width: 25px;
	height: 3px;
	background-color: #333;
	border-radius: 2px;
}

/* Estilos dos itens do menu */
.nav-item {
	text-transform: uppercase;
	color: black;
	font-size: 1.25rem;
	text-decoration: none;
	font-weight: 500;
}

/* Adicionando um efeito de hover (opcional) */
.nav-item:hover {
	color: #b8a45c; /* Altere a cor para algo que combine com seu design */
}

/* Isa Section */
.isa {
	background-color: #f5f5eb;
	height: 37.5rem; /* 600px */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
}

.isa-title {
	font-size: 9.063rem; /* 145px */
	font-weight: bold;
	margin: 0;
	color: #111;
	font-family: Times New Roman;
	font-style: italic;
}

.isa-subtitle {
	font-size: 1.25rem; /* 20px */
	margin: 0;
	line-height: 1.5;
	color: #111;
}

/* About Section */
.about {
	width: 100%;
	background-color: #f6f6f6;
	display: flex;
	justify-content: center;
}

.about-talk-to-me {
	font-size: 0.938rem; /* 15px */
	text-align: center;
	margin-top: 1.25rem;
	font-size: 1rem;
	font-weight: 500;
}

.about-content {
	text-align: center;
	padding: 5rem; /* 100px */
}

.about-title {
	font-size: 3.125rem; /* 50px */
	color: #333;
	font-weight: 600;
	text-align: left;
	color: #655544;
	font-family: Times New Roman;
	font-style: italic;
}

.about-flex {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem; /* 20px */
}

.about-flex > div:first-child {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.about-text {
	font-size: 1.25rem; /* 20px */
	color: #555;
	text-transform: lowercase;
	text-align: justify;
	flex: 1;
	min-width: 280px;
	max-width: 700px;
}
.about-paragraph {
	margin-top: 1rem;
	font-size: 1.25rem; /* 20px */
	color: #555;
	text-transform: lowercase;
	text-align: justify;
	line-height: 1.625;
}

/* Work Section */
.work {
	background-color: #eeece8;
	display: flex;
	justify-content: center;
	padding: 5rem 0; /* 40px */
	align-items: center; /* Centraliza verticalmente */
}

.work-content {
	text-align: left; /* Alinha o conteúdo à esquerda */
	padding: 0 0 0 5rem; /* 60px */
	flex: 1;
}
.work-wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 2rem;
	padding: 5rem 0;
	width: 100%;
	max-width: 1280px;
}
.work-title {
	font-size: 3.125rem; /* 50px */
	font-weight: 600;
	color: #655544;
	font-family: Times New Roman;
	font-style: italic;
}

.work-paragraph {
	margin-top: 1rem;
	font-size: 1.25rem; /* 20px */
	color: #555;
	text-transform: lowercase;
	text-align: justify;
	line-height: 1.625;
}

/* Estilo para a imagem centralizada */
.work-img {
	max-width: 331px;
	height: 285px;
	object-fit: cover;
	margin-left: 2rem; /* Espaçamento entre o texto e a imagem */
	display: block; /* Garante que a imagem seja tratada como um bloco */
	margin-top: 1.25rem; /* Espaçamento superior para a imagem */
	margin-right: auto;
	margin-left: auto; /* Centraliza horizontalmente */
}

/* Social Section */
.social {
	width: 100%;
	background-color: #f1f2ed;
	display: flex;
	justify-content: center;
}

.social-content {
	text-align: center;
	padding: 5rem;
	width: 100%;
}

.social-title {
	font-size: 3.125rem; /* 50px */
	color: #333;
	font-weight: 600;
	text-align: left;
	color: #655544;
	font-family: Times New Roman;
	font-style: italic;
}

.social-paragraph {
	font-size: 1.25rem; /* 20px */
	color: #555;
	text-transform: lowercase;
	text-align: justify;
	line-height: 1.625;
}

/* Social Images */
.social-images {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 2rem;
	flex-wrap: wrap;
	max-width: 90rem;
	margin: 4rem auto;
}

.social-text {
	max-width: 20rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
}

.social-button {
	background-color: #ffffff;
	color: #655f44;
	border: 1px solid #655f44;
	text-decoration: none;
	padding: 0.75rem 1rem;
	font-weight: bold;
	font-size: 0.938rem;
	text-align: center;
	border-radius: 0.5rem;
	transition: background-color 0.3s ease;
}
.crp-info {
	text-decoration: none;
}

/* FAQ Section */
.faq {
	background-color: #f6f6f6;
	text-align: center;
	padding: 5rem; /* 60px */
}

.faq-content {
	text-align: left; /* Alinha o conteúdo à esquerda */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.faq-title {
	font-size: 3.125rem;
	font-weight: 600;
	margin: 10px 0;
	color: #655544;
	font-family: Times New Roman;
	font-style: italic;
	text-align: center;
}

.faq-text {
	line-height: 1.625;
}

.faqs {
	padding: 2rem;
}

/* FAQ Button Style */
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background-color: #ffffff;
	border: 1px solid black;
	font-size: 1.25rem;
	color: #333;
	padding: 5px 20px;
	cursor: pointer;
	border-radius: 20px;
	margin: 20px 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.faq-question:hover {
	background-color: #f9f9f9;
}

/* FAQ Icon Style */
.faq-icon {
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	background-color: #655544;
	color: #ffffff;
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.faq-question:hover .faq-icon {
	background-color: #a08e69;
}

/* FAQ Answer Style */
.faq-answer {
	display: none;
	font-size: 1.125rem;
	color: #555;
	margin: 10px 0;
	padding: 10px 20px;
	border-left: 3px solid #b3a776;
}

/* Contact Section */
.contact {
	background-color: #f5f5eb;
	padding: 5rem;
	height: auto;
}

.contact-content {
	margin: 0 auto;
	max-width: 62.5rem;
}

.contact-phone {
	text-decoration: none;
}

.contact-title {
	color: black;
	font-size: 3rem; /* 50px */
	font-weight: bold;
	text-align: center;
	margin: 2rem 0;
	font-family: Times New Roman;
	font-style: italic;
}

.contacts {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
}

.contact-info {
	max-width: 480px;
}
.contact-img {
	display: flex;
	flex-direction: column;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1rem;
	color: #333;
	min-height: 40px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* Círculo externo */
.contact-item .icon-wrapper {
	width: 32px;
	height: 32px;
	background-color: #aca48c;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Ícone interno dentro do círculo */
.contact-item .icon-wrapper img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.text-line {
	flex-grow: 1;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.divider {
	flex-grow: 1;
	height: 1px;
	background-color: #aca48c;
	border: none;
}

.divider-img {
	width: 100%;
	height: 108px;
	background: url("/assets/img/divider.webp") no-repeat center;
	background-size: cover;
	border: none;
	margin-bottom: -4px;
}

.about-talk-to-me {
	text-align: center;
	display: inline-block;
	margin-top: 0.75rem;
	background-color: #ffffff;
	color: #655f44;
	border: 1px solid #655f44;
	text-decoration: none;
	font-size: 0.938rem;
	font-weight: bold;
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	transition: background-color 0.3s ease;
	text-align: center;
	max-width: 14.563rem;
	align-self: center;
}

.contact-paragraph {
	font-size: 1.25rem; /* 20px */
	color: #555;
	text-transform: lowercase;
	text-align: justify;
	line-height: 1.625;
	margin: 0;
	padding: 0;
}

.whatsapp-float,
.arrow-up {
	position: fixed;
	right: 20px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}

/* Cor unificada para ambos */
.whatsapp-float {
	bottom: 20px;
	background-color: #655544;
	color: white;
	text-decoration: none;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
	font-size: 22px;
	color: white;
	line-height: 1;
}

/* Botão scroll para cima */
.arrow-up {
	bottom: 70px;
	background-color: #655544;
}

.arrow-up img {
	width: 24px;
	height: 24px;
}

/* Classe para mostrar */
.show-scroll {
	opacity: 1 !important;
	visibility: visible !important;
}

/* Responsividade para tablets e celulares */
@media screen and (max-width: 1024px) {
	.nav-list {
		flex-direction: row;
		gap: 1rem;
	}
	.nav-item {
		font-size: 1rem;
	}

	.isa {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.isa-title {
		font-size: 4rem;
	}

	.isa-subtitle {
		font-size: 1rem;
	}

	.about-content,
	.social-content,
	.faq,
	.contact {
		padding: 2rem;
	}

	.about-flex {
		flex-direction: column;
		align-items: center;
	}

	.about-text {
		text-align: left;
	}

	.work {
		flex-direction: column;
		padding: 2rem;
	}

	.work-content {
		padding: 0;
		text-align: left;
	}

	.social-images {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}

	.contacts {
		flex-direction: column;
		gap: 2rem;
	}

	.faq-question {
		font-size: 1rem;
	}

	.contact-paragraph {
		font-size: 1rem;
	}

	.contact-title {
		font-size: 2rem;
	}
}

@media screen and (max-width: 768px) {
	.isa {
		padding-top: 2rem;
		padding-bottom: 2rem;
		max-height: 250px;
		overflow: hidden;
	}

	.container {
		padding: 0.25rem; /* 20px */
	}

	.header {
		height: auto;
	}

	.nav {
		flex-direction: column;
		align-items: center;
		padding: 1rem;
		border-bottom: none;
	}

	.nav-list {
		flex-direction: column;
		position: absolute;
		top: 60px;
		right: 0;
		background-color: #f5f5f5;
		width: 100%;
		display: none;
		padding: 1rem;
		z-index: 5;
	}

	.nav-list.active {
		display: flex;
	}

	.hamburger {
		display: flex;
	}

	.nav-item {
		font-size: 1rem;
		color: #333;
		text-align: center;
		display: block;
		width: 100%;
		padding: 0.5rem 0;
		border-bottom: 1px solid #e2e2e2;
	}

	.nav-item:last-child {
		border-bottom: none;
	}

	.work-img {
		margin: 2rem auto 0 auto;
		display: block;
	}

	.social-images {
		flex-direction: column;
		align-items: center;
	}

	.social-image {
		width: 100%;
		max-width: 320px;
		height: auto;
	}

	.social-text {
		max-width: 100%;
		text-align: center;
	}

	.faqs {
		padding: 0.5rem;
	}

	.faq-question {
		text-align: left;
		line-height: 1.5;
	}
	.faq-answer {
		font-size: 1rem;
	}

	.faq .about-talk-to-me {
		margin-top: 2rem;
	}

	.contacts {
		flex-direction: column;
		align-items: center;
	}

	.contact-img {
		align-items: center;
		text-align: center;
	}

	.contact-img img {
		max-width: 100%;
		height: auto;
		display: block;
	}

	.about-talk-to-me {
		margin-top: 1rem;
	}
	.work-wrapper {
		flex-direction: column;
		align-items: center;
		padding: 2rem;
	}

	.work-content {
		padding: 0;
		text-align: justify;
	}

	.work-img {
		margin: 2rem auto 0 auto;
		display: block;
		width: 100%;
		max-width: 280px;
		height: auto;
	}
}

/* Responsividade para celulares menores */
@media screen and (max-width: 600px) {
	.isa-subtitle {
		font-size: 0.875rem;
	}

	.about-title,
	.work-title,
	.social-title,
	.faq-title,
	.contact-title {
		font-size: 2rem;
	}

	.about-paragraph,
	.work-paragraph,
	.social-paragraph {
		font-size: 1rem;
	}

	.social-button,
	.about-talk-to-me {
		font-size: 0.875rem;
		padding: 0.5rem 1rem;
	}

	.social-text {
		max-width: 100%;
	}

	.social-image {
		width: 100%;
		height: auto;
	}

	.nav-list {
		gap: 0.5rem;
	}

	.faq-question {
		padding: 12px 16px;
	}

	.faq-answer {
		font-size: 1rem;
	}

	.contact-img img {
		max-width: 100%;
	}

	.faq-icon {
		width: 20px;
		height: 20px;
	}
}
