* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}




@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,700;1,300&family=Roboto:ital,wght@0,100..900;1,100..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');



.hero h1,
.hero p {
  font-family: "Spectral", serif;
}


body, html {
  height: 100%;
  overflow-x: hidden;
}

.header {
  position: absolute; /* em vez de fixed */
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: transparent;
}

.logo img {
  height: 120px;
  width: auto;
}

.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #e1aa4b;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
}

.carousel img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slides.active {
  opacity: 1;
}

/* TEXTO CENTRAL */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 12;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #e0ac4e;
}

.hero-text p {
  font-size: 21px;
  margin: 10px 0 30px;
}

.btn-orcamento {
  background-color: #e1aa4b;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-orcamento:hover {
  background-color: #fff;
}


.hero.hide-content .hero-text {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* RESPONSIVO */
@media (max-width: 900px) {

    .hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

   .nav ul {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.97);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 80vh;
    padding: 120px 20px 20px;
    border-radius: 0;
    z-index: 100;
  }

  .nav ul.active {
    display: flex;
  }

 
  .menu-toggle {
    display: block;
    z-index: 101; 
    position: relative;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 21px;
  }

  .logo img {
    height: 100px;
  }


}

@media (max-width: 768px) {
   .hero-text {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 30%; /* menor que 50% para subir o texto */
    padding: 0 15px;
    text-align: center;
  }
  .hero-text h1,
  .hero-text p {
    display: block;
    width: 100%;
    white-space: normal; /* garante que o texto possa ajustar naturalmente */
    word-wrap: break-word; /* evita overflow */
  }

    .hero-text h1 {
    font-size: clamp(36px, 8vw, 60px);
    line-height: 1.1;
  }

    .hero-text p {
    font-size: clamp(18px, 5vw, 26px);
    line-height: 1.3;
    margin: 10px 0 20px;
  }
}



.sobre-nos {
  background-image: url("fundo1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-nos-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
}

.sobre-nos-texto {
  flex: 1 1 500px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.sobre-nos-imagem {
  flex: 1 1 300px;
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
 
}

.sobre-nos-texto.aparecer {
  opacity: 1;
  transform: translateY(0);
}

.sobre-nos-imagem.aparecer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s; /* imagem aparece um pouco depois */
}

.sobre-nos-texto h3 {
  color: #e0ac4e;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.sobre-nos-texto h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.sobre-nos-texto p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

.sobre-nos-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsivo */
@media (max-width: 900px) {
  .sobre-nos-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-nos-texto,
  .sobre-nos-imagem {
    transform: translateY(40px);
  }
}



.numeros {
 
  padding: 60px 20px;
  border-top: 1px solid #19334d;
  border-bottom: 1px solid #19334d;
}

.container-numeros {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
  color: #19334d;
}

.numero-item {
  flex: 1;
  min-width: 200px;
}

.numero-item h2 {
  font-size: 2.5rem;
  color: #19334d;
  font-weight: 700;
}

.numero-item p {
  font-size: 1rem;
  color: #19334d;
}

.divider {
  width: 1px;
  height: 60px;
  background-color: #19334d;
}

@media (max-width: 768px) {
  .container-numeros {
    flex-direction: column;
    gap: 35px;
  }

  .divider {
    display: none;
  }

    .numero-item {
    padding: 10px 0; /* 🔹 adiciona mais espaço interno */
  }

}

.planejamento {
  background: url("fundo2.png") center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.planejamento::before {
  content: "";
  position: absolute;
  inset: 0;
 
  z-index: 0;
}

.planejamento-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.planejamento h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #e0ac4e;
}

.planejamento h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #e0ac4e;
  margin-bottom: 60px;
}

.planejamento-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.planejamento-card {
  background-color: #0e1b27; /* 🔹 Azul escuro elegante */
  color: #fff; /* texto branco */
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  width: 260px;
  text-align: center;
  opacity: 0;
 
 
}

/* Efeito inicial */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Quando entra em cena */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Caso queira que os cards tenham o mesmo efeito */
.planejamento-card.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}




.planejamento-card:hover {
 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.planejamento-card img {
  width: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1); /* deixa o ícone branco mesmo se o PNG for colorido */
}
.planejamento-card h4 {
  font-size: 1rem;
  color: #e0ac4e;
  margin-bottom: 10px;
}

.planejamento-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
}

.btn-planejamento {
  margin-top: 50px;
}

.botao {
  background-color: #e0ac4e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.botao:hover {
  background-color: #e0ad4e69;
}



/* Responsividade */
@media (max-width: 900px) {
  .planejamento-container {
    flex-direction: column;
    align-items: center;
  }

  .planejamento h2 {
    font-size: 1.8rem;
  }

  .planejamento-card {
    width: 85%;
    margin-bottom: 20px;
  }

  .planejamento-card p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
}

.planejamento-card img {
  width: 60px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1); /* deixa o ícone branco mesmo se o PNG for colorido */
}
}

.diferenciais {
  background-image: url('fundo1.png'); /* 🖼️ Coloque aqui o caminho da sua imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  text-align: center;
}

.diferenciais h1 {
  color: #0e1b27;
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.diferenciais-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.diferenciais-container img {
  width: 250px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  background-color: white; /* opcional: destaca a imagem */
}

.diferenciais-container img:hover {
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
  .diferenciais-container {
    flex-direction: column;
    gap: 30px;
  }

  .diferenciais h1 {
    font-size: 2rem;
  }

  .diferenciais-container img {
    width: 80%;
    max-width: 320px;
  }
}




@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

.momentos-magicos {
  
  text-align: center;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
}

.titulo-momentos {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.titulo-momentos .verde {
  color: #0e1b27;
}

.titulo-momentos .azul {
  color: #e0ac4e;
  border-bottom: 3px solid #e0ac4e;
}

.descricao-momentos {
  color: #444;
  font-size: 16px;
  margin-bottom: 40px;
}

.momentos-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.momentos-slider {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: deslizar 25s linear infinite;
}

.slider-item {
  flex: 0 0 auto;
  width: 250px;
  height: 370px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-legenda {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-item:hover .hover-legenda {
  opacity: 1;
}

/* Animação contínua e looping suave */
@keyframes deslizar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {

    .descricao-momentos {
  color: #444;
  font-size: 19px;
  margin-bottom: 40px;
}

}

.form-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 60px 150px 60px 0px;
  background: url('capaform.png') no-repeat center center/cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
 
  min-height: 60vh;
}

.form-container {
  max-width: 450px;
  width: 100%;
}

.form-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-box h2 {
  margin-top: 0;
  font-size: 26px;
  text-align: center;
}

.form-box p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

label {
  display: block;
  font-weight: bold;
  margin: 10px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #f1f1f1;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  resize: vertical; 
}

button {
  background-color: #c49a3d;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

button:hover {
  background-color: #a37f30;
}

.checkbox {
  margin-top: 15px;
  font-size: 12px;
  color: #777;
}

.checkbox input {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .form-section {
    justify-content: center;
    padding: 40px 20px; /* reduz espaço lateral no mobile */
  }
}


.footer {
  background-color: #fff;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding-top: 30px;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 5% 20px 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 8px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #a8c6de;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #000;
}

.footer-info i {
  color: #fff;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 12px 0;
  font-size: 0.8rem;
  color: #a8c6de;
  letter-spacing: 0.5px;
}

.footer-bottom strong {
  color: #000;
}

/* --- ÍCONES DE REDES SOCIAIS (FOOTER) --- */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a img {
  width: 26px;
  height: 26px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}


/* --- RESPONSIVO --- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-info {
    text-align: center;
    margin-top: 20px;
  }
}



.botao-canto {
  position: fixed;
  right: 20px; /* canto direito */
  bottom: 50px;
  width: 60px;
  height: 60px;
  background-color: #25d366; /* verde WhatsApp */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
  text-decoration: none;
}

/* Ícone dentro do círculo - branco */
.botao-canto img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1); /* força o ícone ficar branco */
}

/* Mensagem acima do botão */
.botao-canto .mensagem-orcamento {
  position: absolute;
  bottom: 70px; /* acima do círculo */
  right: 50%;
  transform: translateX(50%);
  background-color: #25d366;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Mostrar mensagem ao passar o mouse */
.botao-canto:hover .mensagem-orcamento {
  opacity: 1;
  bottom: 80px;
}

/* Pulsar efeito */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .botao-canto {
    width: 50px;
    height: 50px;
    bottom: 20px;
  }

  .botao-canto img {
    width: 24px;
    height: 24px;
  }

  .botao-canto .mensagem-orcamento {
    font-size: 0.8rem;
    bottom: 60px;
  }

  .botao-canto:hover .mensagem-orcamento {
    bottom: 70px;
  }
}