@charset "UTF-8";
/* INTRO */
#nicoletti{
  width: 100vw;
  margin: 0 auto;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.nicoletti-container{
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 70px;
}
.nicoletti-left{
  width: 30%;
}
.nicoletti-right{
  width: 50%;
  display: flex;
  align-items: flex-end;
}
.nicoletti-title{
  font-size: 31px;
  margin-bottom: 20px;
}
.nicoletti-subtitle{
  width: 100%;
  font-size: 5vw; 
  font-size: clamp(24px, 6cqw, 120px);
  line-height: 1.1;
}
.nicoletti-paragraph{
  font-size: 18px;
  line-height: 1.5;
}
@media only screen and (max-width: 1280px){
  .nicoletti-subtitle{
	  font-size: clamp(24px, 7cqw, 120px);
  }
}
@media only screen and (max-width: 900px){
  #nicoletti{
	  min-height: 85vh;
  }
  .nicoletti-container{
	  flex-direction: column;
  }
  .nicoletti-left, .nicoletti-right{
	  width: 100%;
  }
  .nicoletti-subtitle{
	  font-size: clamp(36px, 7cqw, 180px);
  }
}
@media only screen and (max-width: 768px){
  .nicoletti-paragraph{
	  font-size: 15px;
  }
  .nicoletti-title{
 	 font-size: 26px;
  }
}

/* A FORMA - O TOM */
#nicoletti-forma {
  width: 100vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.nicoletti-forma-title {
  margin: 0;
  font-size: clamp(76px, 18vw, 380px);
  line-height: .7;
}
@media only screen and (max-width: 768px) {
	.nicoletti-forma-title {
	  font-size: clamp(44px, 18vw, 220px);
	}
}

/* CLIENTS */
#clients{
  width: 100vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 10em 0;
}
.clients-container{
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients-left{
  width: 40%;
  display: flex;
  justify-content: flex-end;
}
.clients-right{
  width: 60%;
}
@media only screen and (max-width: 768px) {
	#clients{
	  padding: 7em 0;
	}
}

/* CORE */
#core{
  width: 100vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 5em 0;
}
.core-container{
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.core-title{
  font-size: 51px;
  line-height: 1.2;
}
.core-paragraph{
  font-size: 18px;
  line-height: 1.5;
  padding-top: 2em;
}
.core-a{
  width: 25%;
}
.core-b{
  width: 30%;
}
.core-c{
  width: 25%;
}
@media only screen and (max-width: 1080px) {
	.core-title{
		font-size: 41px;
	}
	.core-container{
		flex-direction: column;
	}
	.core-a, .core-b, .core-c{
		width: 100%;
	}
}

/* CASE */
#case{
  width: 100vw;
  margin: 0 auto;
  display: flex;
}
.case-container{
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.case-title {
  font-size: 100px;
  line-height: 0.3;
}
.case-subtitle{
	text-align: center;
	width: 50%;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.3;
}
.case-left{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.case-right{
  width: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 900px) {
	.case-title{
		font-size: 60px;
	}
	.case-container{
	    padding: 50px 0;
		flex-direction: column-reverse;
	}
	.case-container.no-reverse {
		flex-direction: column;
	}
	.case-left, .case-right{
		width: 100%;
	}
	.case-left{
		padding-top: 20px;
	}
}
/* CONTATO */
#contato{
  width: 100vw;
  margin: 0 auto;
  display: flex;
}
.contato-container{
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 3em 0 5em;
}

/* PORFOLIO */
#portfolio{
  width: 100vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 7em 0;
}
.portfolio-container {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.card {
  border-radius: 7px;
  padding: 20px;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 30px;
  aspect-ratio: 3 / 4;
}
.card-title{
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;
}
#home{
  width: 100vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.home-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
	#portfolio{
	  padding: 3em 0;
	}
}