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


.cinzel-decorative-regular {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-style: normal;
}

.cinzel-decorative-bold {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-style: normal;
}

.cinzel-decorative-black {
  font-family: "Cinzel Decorative", serif;
  font-weight: 900;
  font-style: normal;
}


.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

html {
  scroll-behavior: smooth;

}






body {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 1.4;
  background: #F9F8FD;
  color: #3D1483;

}



h1{
  font-family: "Cinzel Decorative", serif;
 font-size: 27px;
  font-weight: 400 !important;
font-style: normal;
color: #391478;

}

p {

  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: inherit;
  FONT-SIZE: 17PX
}

a {

  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: inherit;
}

h2 {

  font-family: "Montserrat", sans-serif;
  font-size: 18px;
 font-weight: 400 !important;
font-style: normal;

}

hr {
margin: 10px 6rem 10px 6rem;
color: #AEA5C0 !important;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #7498AD;
  color: white;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  top: 0;
  object-fit: contain;
  background: white;
}

.heroh1{

  letter-spacing: 0.25rem; 
  font-family: "Cinzel Decorative", serif;
  font-size: 1.7rem;
  text-align: left;
  padding: 10rem 2rem 2rem 2rem;
  COLOR: #9F91B9; 
}

.heroh2{
  COLOR: #9F91B9; 
text-transform: uppercase;
  letter-spacing: 0.25rem; 
  letter-spacing: 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  text-align: left;
  padding: 0rem 8rem 1rem 2rem;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
 BACKGROUND: WHITE;
}

.hero-overlay {
  
  left: 0;
  z-index: 2;
  width: 100%;
  min-height: 525px;
  color: #3D1483;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 1rem 0;
  position: relative;

.hero-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* pequeno delay no h2 */
.hero-reveal.delay {
  transition-delay: 0.4s;
}


}/* ================= NAV INFINITA ================= */
/* Estado Base da Nav (Enquanto na Hero) */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column; /* Empilha os elementos: Logo em cima, Scroll embaixo */
  align-items: center;
  padding: 3rem 0 1rem 0;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.nav-left {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  transition: all 0.7s ease;
  /* Centralizado por padrão no flex-column */
}

.nav-scroll {
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
  transition: all 0.7s ease;
}

/* Estado Ativo (Depois da Hero) */
.nav.nav-active {
  flex-direction: row; /* Volta para o alinhamento horizontal */
  justify-content: space-between;
  padding: 0.8rem 5%;
  border-bottom: 1px solid rgba(61, 20, 131, 0.1);
BACKGROUND: linear-gradient(280deg, #ffff 50%, #C6BCD9 100%);
}

.nav.nav-active .nav-left {
  font-size: 1.7rem;
  letter-spacing: 0.3rem;
  /* No row, ele volta naturalmente para a esquerda */
}

.nav.nav-active .nav-scroll {
  width: auto; /* Deixa de tomar todo o width */
  margin-top: 0;
}















/* TEXTO FIXO */
.nav-left {
text-transform: uppercase;
  letter-spacing: 0.25rem; 
  font-family: "Cinzel Decorative", serif;
  flex: 0 0 auto;
  padding-left: 27px;
  padding-right: 27px;
  font-weight: 400;
  color: #3D1483;
  white-space: nowrap;
  z-index: 2;
  font-size: 30px;
  
}

/* ÁREA SCROLLÁVEL */
.nav-scroll {
  overflow-x: auto;   /* precisa ser scrollável */
  overflow-y: hidden;
  flex: 1;
  cursor: grab;
  scroll-behavior: auto;
}

/* esconder barra */
.nav-scroll::-webkit-scrollbar {
  display: none;
}

/* trilho animado */
.nav-track {
  display: flex;
  width: max-content;

}

/* pausa quando o mouse estiver em cima */
.nav:hover .nav-track {
  animation-play-state: paused;
}

/* conteúdo */
.nav-content {
  display: flex;
  gap: 30px;
  padding: 0 20px;
  white-space: nowrap;
}

/* botões */
.nav-content a {
text-transform: uppercase;
  letter-spacing: 0.25rem; 
  display: inline-block;
  padding: 8px 17px;
BORDER: 1PX SOLID #C6BCD9 ;
  color: #3D1483;
  border-radius: 0px;
  text-decoration: none;
  transition: 0.3s ease;
  white-space: nowrap;

  
}

.nav-content a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}



.btn {

BACKGROUND: linear-gradient(280deg,  #DCD4EF 50%, #C6BCD9 100%);
color: #FFFF;
text-transform: uppercase;
  letter-spacing: 0.25rem; 
  padding: 0.9rem;
  border-radius: 0px;
  font-size: 1rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  margin:0 0 0 2rem;
transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 15px rgba(156, 134, 194, 0.1);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.telefoneinicio {
color: #391478;
margin: 6rem 2rem 5rem 2rem;
text-align: center;
font-size: 10px;
}
.textopresenca{
font-size:15px;
margin: 2rem 0 2rem 0;
}

.texthonra{
animation: borderColor 4s linear infinite;
}

.promessas {
  letter-spacing: 1px;
 background: #F9F8FD;
background-size: cover;
word-break: break-word;
border-radius: 9px;
margin:  1rem 1rem 0rem 1rem;
text-align: center;
height: auto;
bottom: 4rem;
padding: 1rem;
font-size: 18px;

}

@keyframes borderColor {
  0%   { border-color: #3D1483; color: #3D1483; }
  20%  { border-color: #6C4DA1; color: #6C4DA1; }
  40%  { border-color: #C6BCD9; color: #BBB1C3; }
  60%  { border-color: #C6BCD9; color: #3D1483; }
  80%  { border-color: #6C4DA1; color: #6C4DA1; }
  100% { border-color: #3D1483; color: #3D1483; }
}

.promessas {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.4s ease;
}

/* quando ativar */
.promessas.active {
  opacity: 1;
  transform: translateX(0);
}












.portfolio {
  min-height: 70vh;
  background-image: url("portiffundo.webp");
  background-size: cover;
  background-position: center bottom; /* ancora na base da imagem */
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* joga o conteúdo para baixo */

  padding: 3rem 0;
  text-align: center;
}



/* área rolável */


.carousel:active {
  cursor: grabbing;
}

/* esconder barra de scroll */
.carousel::-webkit-scrollbar {
  display: none;
}

.carousel {
 cursor: grab;
  scroll-behavior: smooth;
  gap: 65px;
  display: flex;
  overflow-x: auto;
  scroll-behavior: auto; /* importante */
  padding: 20px;
  width: 100%;
}

/* cada item */
.carousel-item {
  margin: 20rem 0 0 0;
  max-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  bottom: 0;
  
}

/* efeito glass */
.glass-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  color: white;
  min-height: 200px;
  border: 1px solid #ffff;
animation: borderColor 2s linear infinite;
}

/* setasFAQ */
.arrow {

  position: absolute;
  font-size: 40px;
  color: #3D1483;
  opacity: 1;
}

.arrow.left {
  left: 5px;
}

.arrow.right {
  right: 5px;
}



.titledobody{
  padding: 10rem 2rem 0 2rem;
 text-align:center;
font-size: 23px;

}
 

.h2arq{
margin: 0.2rem 2rem 2rem 3rem;}

.nossosencontros {
font-size: 13px;
  padding: 0 2.7rem 7REM 2.7REM;
text-align: left;
justify-content: left;
 color: #3D1483;
 font-family: "Montserrat", sans-serif;

}

.iconsesperar {
width:30px;
height:30px;
}


.oqueesperar {
font-size: 20px;
background-size: cover;
word-break: break-word;
color: #3D1483;
margin:  1rem 0 0 0;
text-align: center;
height: auto;
bottom: 1rem;
padding: 0.4rem;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
  text-align: left;
}





.titleexemplos{
  padding: 10rem 3rem 7rem 3rem;
 text-align:center;
 background: white;


}
.linkportif{
margin: 3rem 0rem 2rem 0rem;
padding: 1rem;
color: gray;
}


.exemplos {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0;
  padding: 20px;
  scroll-behavior: smooth;
  cursor: grab;
  width: 100%;
  height: auto;
  scrollbar-width: none; /* Firefox */
}

.exemplos::-webkit-scrollbar {
  display: none; /* Chrome */
}

.exemplo-img {
  flex: 0 0 auto; /* impede encolher */
  width: 10rem;
  height: 10rem;
  border-radius: 12px;
}


.titlefeedbacks{
margin: 6rem 2rem 1rem 2rem;
text-align: center;
font-size:35px;
font-family: "Cinzel Decorative", serif;
}

.feedbacks{
color: #391478;
margin: 7rem 0 7rem 0;
padding: 0 0 0 2rem;
text-align: center;

}

.feedbacksroll{
display: flex;
flex-wrap: nowrap;
overflow-x:auto;
gap: 10px;
padding: 3rem 0;
scroll-behavior: AUTO;
width: 100%;
scrollbar-width: none;
-ms-overflow-style: none;
cursor: grab;
}

.feedbacksroll:active{
cursor: grabbing;
}

.feedbacksroll::-webkit-scrollbar {
  display: none;              /* Chrome, Safari */

}

.item{
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
margin:3rem 0 0 0;
width: 350px;
min-height: 260px;
background-color:white;
flex-shrink: 0;
border-radius: 10px;
padding: 2rem 3rem;
color: #3D1483;
}


.headerfeedback{
display:flex;
align-items: center;
margin-bottom: 10px;
}

.perfil{
width:10px;
margin-right:12px;
}

.line {
height:10px;
color:#3D1483;
margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;}

.linelong{ width:270px;
TEXT-ALIGN: LEFT;}

.lineshort{ 
PADDING: 4PX 0 0 0;
width:280px;
TEXT-ALIGN: LEFT;
FONT-SIZE: 12PX;}



.duvidas{
 background: linear-gradient(45deg, #E1DFE4, #BBB1C3);
height: 100%;
padding:3rem 2rem 3rem 2rem;
text-align:center;
color: white;

}

#titleduvidas{
  font-family: "Cinzel Decorative", serif;
 font-size: 26px;
  font-weight: 400 !important;
font-style: normal;
color: #ffff;

}

.faq {
text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
text-align: left;
  border-bottom: 1px solid #ffff;
  padding: 15px 0;
}

.faq-question {
text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  
}

.faq-question h2 {
  justify-content: space-between;
  font-size: 19px;
  margin: 0 0 0 2.1rem;
text-align: left;
}

.arrow {
  transition: transform 0.3s ease;
  color: white;
  align-items: right;
  font-size:15px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 700px;
  opacity: 1;
  margin-top: 10px;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}





.finaltxt{
font-size: 15px;
margin: 0;
padding: 3rem 3rem 3rem 3rem;
text-align: center;
background: white;
}



.btncta {
  letter-spacing: 2px;
  background: linear-gradient(45deg, #4A1483, #C697EF);
  color: #ffff;
  padding: 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  margin:0 0 0 2rem
}




.btngeral {
BACKGROUND: linear-gradient(280deg,  #DCD4EF 50%, #C6BCD9 100%);
color: #FFFF;
text-transform: uppercase;
  letter-spacing: 0.25rem; 
  padding: 0.9rem;
  border-radius: 0px; 
  
  text-transform: uppercase;
  font-weight: 300;
  font-size: rem;
  
  padding: 1.2rem 2.5rem;
  max-width: fit-content;
  margin: 4rem auto; /* Centralização limpa */
  border: 1px solid transparent;
  
  transition: all 0.4s ease;
  display: block;
  text-align: center;
  cursor: pointer;
}

.btngeral:hover {
  background-color: transparent;
  color: #9C86C2;
  border: 1px solid #9C86C2;
}



.btncta {
    font-family: "Montserrat", sans-serif;
border:none;
  background-color: #3D1483;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  font-size: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
  position: center;
 margin: 1rem;
}

.ctafinal{
  opacity: 100%;
  height: 150px;
  width: auto;
  background-color: white;
  text-align: center; 

}


.copyright{
background-color: #7498AD;
}

.footer{

  padding: 40px 20px 10px 20px;
 background: linear-gradient(26deg, #E1E0E2, #fff1);
 font-size: 18px;
 justify-content: center;

}



.footer-icons {
  margin-bottom: 25px;
justify-content: center;
display:flex;
}

.footer-icons a {
  color: #3D1483;
  font-size: 30px;
  margin: 0 35px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-icons a:hover {
  opacity: 0.7;
}

.footer-text {
  color: #A9A8A9;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "Darker Grotesque", sans-serif;
}

.footer-link {
  color: #3D1483;
  transition: 0.3s;
  font-family: "Cinzel Decorative", serif;
  font-size: 35px;
  text-align:center;
  left:50%;
  display: block;
}

.footer-link:hover {
  opacity: 0.8;
}


/* ===== EFEITO DE ENTRADA ===== */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* variações opcionais */

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}


#metodolilas,
#arquiteturalilas,
#duvidas,
#final {
  scroll-margin-top: 0px;
}












/* Responsividade */



@media (min-width: 768px) {
  .container {
    padding: 1rem 3rem;
  }



  .cards-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .card {
    width: 30%;
  }

  .etapas {
    display: flex;
    justify-content: space-around;
    text-align: left;
  }

  .etapas .step {
    max-width: 300px;
  }

  .footer .info {
    justify-content: space-around;
    color: #0E4362;
  }
}
