/* ==========================
   FONTES
========================== */
@font-face {
  font-family: 'AmoretSans-Regular';
  src: url('./font/AmoretSans-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Light';
  src: url('./font/Montserrat-Light.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url('./font/Montserrat-Bold.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url('./font/Montserrat-Regular.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Amoret';
  src: url('./font/AmoretSans.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


/* ==========================
   RESET BÁSICO
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat-Light', sans-serif;
}

body {
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* ==========================
   HERO + VÍDEO DE FUNDO
========================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  font-family: 'Montserrat-Light';
}

/* 🎥 vídeo de fundo */
#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.9;
  filter: brightness(0.9) saturate(110%);
  transition: opacity 1s ease;
}
/* ==========================
   FUNDO MOBILE (IMG) - SEM QUEBRAR LAYOUT
========================== */
.bg-mobile {
  display: none;
  position: absolute;
  inset: 0;                 /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;               /* igual ao vídeo */
  opacity: 0.95;
  filter: brightness(0.9) saturate(110%);
}

/* No mobile: troca vídeo por imagem */
@media (max-width: 900px) {
  #bg-video {
    display: none !important;

  }

  .bg-mobile {
    display: block;
    width: 130%;
  }
}

/* camada escura sobre o vídeo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}


/* ==========================
   TOPO (LOGO E BOTÕES)
========================== */
.topbar {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 10;
  box-sizing: border-box;
}

.topbar .icon-topo {
  width: 30px;
  height: 30px;
}
/* ====== BOTÃO INSTAGRAM NO TOPO ====== */
.insta-link {
  position: absolute;
  top: 9px;             /* mesma altura que você já tinha */
  left: 87px;           /* mantém a posição que estava correta */
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  z-index: 20;
  border: 1.6px solid rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  padding: 6px 16px;
  background: transparent;
  transition: all 0.3s ease;
}

.insta-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* imagem da logo dentro da borda */
.insta-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(100%);
}
/* ========= INSTAGRAM MOBILE ========= */
@media (max-width: 900px) {
  /* oculta o Instagram do topo no celular */
  .insta-link {
    display: none;
  }

  /* mobile links ajustados */
  .mobile-links {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 30px;
  }

  .mobile-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    display: block;
    border: 1.6px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 10px;
    transition: all 0.3s ease;
  }

  .mobile-links a:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  /* estilo do botão do Instagram */
  .insta-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .insta-mobile img {
    width: 35px;
    height: 35px;
  }
}


/* Links topo – visíveis só no desktop */
.topbar a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 16px;
  font-family: 'Montserrat-Regular', sans-serif;
  transition: 0.3s;
  font-weight: 500;
  z-index: 11;
}

.topbar a:last-child {
  border: 1.6px solid rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  padding: 8px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.topbar a:last-child:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.topbar a:hover {
  opacity: 0.9;
}

/* logo centralizada no topo */
.logo-topo {
  width: 300px;
  height: auto;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
}

/* ==========================
   CONTEÚDO DO HERO
========================== */
.hero-content {
  position: relative;
  z-index: 3;
  margin-top: 200px;
  text-align: center;
}

.hero-content h2 {
  font-size: 18px;
  font-family: 'Montserrat-Regular';
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hero-content p {
  font-family: 'AmoretSans-Regular', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
.mobile-links a{
  display: none;
}

/* ==========================
   MOBILE (TELAS PEQUENAS)
========================== */
@media (max-width: 900px) {
  .hero {
    height: 100vh;
    padding: 20px;
  }

  #bg-video {
    display: block;
    opacity: 0.85;
    filter: brightness(0.85);
  }

  /* 🔒 Oculta os botões do topo no celular */
  .topbar a {
    display: none !important;
  }

  /* Reduz a logo no topo */
  .logo-topo {
    width: 200px;
    top: 8px;
  }

  /* Ajusta o conteúdo central */
  .hero-content {
    margin-top: 100px;
    padding: 0 20px;
  }

  .hero-content h2 {
    font-size: 12px;
  }

  .hero-content p {
    font-size: 20px;
    line-height: 1.3;
  }

  /* Exibe os botões do meio (mobile-links) */
  .mobile-links {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 30px;
    animation: fadeIn 0.6s ease;
  }

  .mobile-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    display: block;
    border: 1.6px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 10px;
  }

  .mobile-links a strong {
    font-weight: 700;
  }

  .mobile-links a:hover {
    text-decoration: underline;
  }
}

/* Animação suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================
   SEÇÕES GERAIS
========================== */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}
/* ==========================
   BLOCO ZIG-ZAG COM DESLOCAMENTO LATERAL AJUSTADO
========================== */
.bloco-zigzag {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
  max-width: 1300px;
  margin: 180px auto;
  padding: 0 40px;
}

.bloco-zigzag .texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 320px; /* mais estreito */
  line-height: 1.4;
  margin-left: 50px;
}

.bloco-zigzag .texto .subtitulo {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #8a8a8a;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Montserrat-Regular';
}

.bloco-zigzag .texto h2 {
  font-size: 23px;
  font-weight: 600;
  color: #000;
  line-height: 1.25;
  margin-bottom: 18px;
  word-break: break-word;
  font-family: 'Amoret';

}

.bloco-zigzag .texto p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  max-width: 300px; /* deixa o parágrafo mais contido */
  font-family: 'Montserrat-Light';
  text-align: justify;
}


/* ==========================
   IMAGENS
========================== */
.bloco-zigzag .imagens {
  position: relative;
}

/* faz com que imagem + legenda se comportem como um grupo */
.bloco-zigzag .imagens div {
  display: flex;
  flex-direction: column;
}

/* Imagens */
.bloco-zigzag .imagens img {
  width: 100%;
  border-radius: 1px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: block;
  margin-bottom: 4px; /* legenda próxima da imagem */
}

/* Imagem superior */
.bloco-zigzag .imagens div:first-child img {
  width: 100%;
  transform: translateX(-140px);
  z-index: 2;
}

/* Imagem inferior (deslocada para a esquerda no primeiro bloco) */
.bloco-zigzag .imagens div:last-child img {
  width: 100%;
  margin-top: -20px;
  transform: translateX(-610px); /* move para a esquerda */
  z-index: 3;
}

/* ==========================
   LEGENDAS DAS IMAGENS (POSIÇÃO AJUSTADA)
========================== */
.bloco-zigzag .legenda {
  display: block;
  font-size: 13px;
  color: #777;
  font-family: 'Montserrat-Regular';
  margin: 0;              /* remove margens que afastavam */
  line-height: 1.2;
  text-align: right;      /* alinhada à direita no bloco normal */
  margin-right: 6px;      /* leve recuo lateral */
}

/* No bloco reverso, legenda à esquerda */
.bloco-zigzag.reverse .legenda {
  text-align: left;
  margin-left: 6px;
  margin-right: 0;
}

/* ==========================
   BLOCO REVERSE
========================== */
.bloco-zigzag.reverse .texto {
  order: 2;
  text-align: left;
}

.bloco-zigzag.reverse .imagens {
  order: 1;
}

/* Imagem superior no reverse */
.bloco-zigzag.reverse .imagens div:first-child img {
  transform: translateX(40px);
  z-index: 2;
}

/* Imagem inferior no reverse (deslocada para a direita) */
.bloco-zigzag.reverse .imagens div:last-child img {
  transform: translateX(500px);
  z-index: 3;

}

/* ==========================
   RESPONSIVO (BÁSICO)
========================== */
@media (max-width: 900px) {
  .bloco-zigzag,
  .bloco-zigzag.reverse {
    grid-template-columns: 1fr;
    gap: 50px;
    margin: 100px auto;
    padding: 0 25px;
  }

  /* Oculta imagem superior no mobile */
  .bloco-zigzag .imagens div:first-child,
  .bloco-zigzag.reverse .imagens div:first-child {
    display: none;
  }

  /* Mostra apenas a imagem inferior */
  .bloco-zigzag .imagens div:last-child img,
  .bloco-zigzag.reverse .imagens div:last-child img {
    transform: none;
    margin-top: 0;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  /* Centraliza a legenda da imagem */
  .bloco-zigzag .legenda,
  .bloco-zigzag.reverse .legenda {
    text-align: center;
    margin-top: 8px;
    color: #666;
    font-size: 13px;
  }

  /* Centraliza texto */
  .bloco-zigzag .texto,
  .bloco-zigzag.reverse .texto {
    margin: 0 auto;
    text-align: center;
    max-width: 90%;
  }
}

/* ==========================
   RESPONSIVO EXTRA
========================== */
@media (max-width: 950px) {
  .bloco-diagonal.reverse {
    margin: 100px auto;
    padding: 0 25px;
  }

  .bloco-diagonal.reverse .conteudo {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bloco-diagonal.reverse .texto {
    grid-column: 1;
    text-align: left;
    padding-top: 0;
  }

  .bloco-diagonal.reverse .imagem-topo,
  .bloco-diagonal.reverse .imagem-baixo {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .bloco-diagonal.reverse .imagem-baixo {
    margin-top: -30px;
  }

  .bloco-diagonal.reverse .legenda {
    text-align: left;
    margin-left: 5px;
  }
}

/* ==========================
   RESPONSIVIDADE DIAGONAIS
========================== */
@media (max-width: 900px) {
  .conteudo,
  .diagonal.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .imagem-baixo,
  .diagonal.reverse .img-large {
    margin-top: 0;
  }

  .imagem-topo,
  .imagem-baixo,
  .diagonal.reverse .img-small,
  .diagonal.reverse .img-large {
    grid-column: 1 / -1;
  }

  .text-card,
  .texto {
    grid-column: 1 / -1;
  }

  .caption {
    text-align: left;
  }
}


/* ==========================
   OUTRAS SEÇÕES (mantidas)
========================== */
.imagem-full {
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.imagem-full img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* ==========================
   SEÇÃO SOBRE (2 COLUNAS)
========================== */

.sobre {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre .texto {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
}

/* Coluna esquerda (Título grande) */
.sobre .texto h2 {
  font-family: 'Amoret';
  flex: 1;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #000;
  text-transform: uppercase;
  letter-spacing: -1px;
    
}

/* Coluna direita (Texto menor) */
.sobre .texto p {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  max-width: 550px;
  font-family: 'Montserrat-Light';
  text-align: justify;
}

/* Responsivo para telas menores */
@media (max-width: 900px) {
  .sobre {
    flex-direction: column;
    padding: 60px 30px;
  }

  .sobre .texto {
    flex-direction: column;
    gap: 20px;
  }

  .sobre .texto h2 {
    font-size: 2rem;
    text-align: center;
  }

  .sobre .texto p {
    text-align: justify;
    max-width: 100%;
  }
}


/* ==========================
   OFERTAS FULLWIDTH AJUSTADO
========================== */
/* ==========================
   OFERTAS FULLWIDTH AJUSTADO
========================== */
.ofertas {
  max-width: none !important;
  margin: 0 !important;
  left: 0 !important;
  right: 0 !important;
  position: relative;
  background: #002A43;
  padding: 40px 0;
}

.container-ofertas {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  padding: 0 20px;
}
.ofertas .card {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  color: white;
  padding: 20px;
}
.ofertas .icon {
  width: 200px;              /* tamanho fixo do container */
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ofertas .icon img {
  width: 100%;               /* mantém proporção e centraliza */
  height: auto;
  max-height: 60px;         /* impede que algum ícone passe do limite */
  object-fit: contain;      /* evita distorção */
  display: block;
}

.ofertas h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  font-family: 'Montserrat-Light';
}

.ofertas p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Montserrat-Light';
}

.ofertas a {
  display: inline-block;
  background: white;
  color: #002A43;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 100px;
  transition: 0.3s;
  font-family: 'AmoretSans-Regular';
}

.ofertas a:hover {
  background: #dceefc;
}

/* Responsivo */
@media (max-width: 900px) {
  .container-ofertas {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .ofertas .card {
    max-width: 90%;
  }
}



/* ==========================
   RESPONSIVO
========================== */
@media (max-width: 900px) {
  .container-ofertas {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .ofertas .card {
    max-width: 90%;
  }
}

/* ==========================
   EMPREENDIMENTOS (PARCEIROS)
========================== */
.empreendimentos {
  max-width: 1200px;
  margin: 100px auto;

  display: flex;
  flex-direction: column;
  gap: 100px;
  box-sizing: border-box;
}

.empreendimento {
  display: flex;
  align-items: center; /* <-- Centraliza verticalmente imagem + texto */
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

/* Coluna de imagem */
.coluna-imagem {
  flex: 1;
  min-width: unset;
}

.coluna-imagem img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* Coluna de texto */
.coluna-info {
  flex: 1;
  min-width: unset;
  display: flex;
  flex-direction: column;
  justify-content: center; /* <-- Centraliza verticalmente */
  align-items: flex-start; /* <-- Mantém texto alinhado à esquerda */
  box-sizing: border-box;
}

.coluna-info .logo {
  max-width: 240px;
  margin-bottom: 20px;
  height: auto;
}

.coluna-info p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
  font-family: 'Montserrat-Light';
  max-width: 420px; /* <-- Limita largura do texto */
  text-align: justify;
}

.coluna-info .botao {
  display: inline-block;
  color: #002A43;
  font-weight: bold;
  text-decoration: none;
  border: 1.5px solid #002A43;
  padding: 10px 26px;
  border-radius: 100px;
  transition: 0.3s;
  font-family: 'AmoretSans-Regular';
}

.coluna-info .botao:hover {
  background: #002A43;
  color: white;
}

/* Responsividade */
@media (max-width: 900px) {
  .empreendimento {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .coluna-info {
    align-items: center;
  }

  .coluna-info p {
    max-width: 100%;
  }
}

/* ==========================
   RESPONSIVO (CELULAR)
========================== */
@media (max-width: 900px) {
  .empreendimento {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin: 0 auto;
  }

  .coluna-imagem,
  .coluna-info {
    width: 100%;
    max-width: 100%;
  }

  .coluna-imagem img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .coluna-info {
    align-items: center;
  }

  .coluna-info .logo {
    margin: 20px auto;
  }

  .coluna-info .botao {
    margin: 0 auto;
  }
}

/* ==========================/* ==========================
   FORMULÁRIO RESPONSIVO
========================== */
.formulario {
  position: relative;
  background: url('img/Rua.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  width: 100%;
  max-width: 100%;
}

.form-overlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
  color: white;
}

/* Texto lateral */
.form-texto {
  flex: 1;
  color: white;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
  font-family: 'AmoretSans-Regular';
}

.form-texto h3 {
  font-family: 'Amoret';
}

/* Bloco do formulário */
.formulario form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  color: white;
  max-width: 450px;
  margin-left: auto;
}

.formulario form h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'AmoretSans-Regular';
}

/* Campos */
.formulario input,
.formulario select,
.formulario button {
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

.formulario input,
.formulario select {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}

.formulario button {
  background: linear-gradient(90deg, #37a048, #2E7D32);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-size: 14px;
  font-family: 'AmoretSans-Regular';
}

.formulario button:hover {
  background: linear-gradient(90deg, #2E7D32, #37a048);
}

/* ==========================
   MODO MOBILE
========================== */
@media (max-width: 900px) {
  .form-overlay {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
  }

  .form-texto {
    font-size: 20px;
    line-height: 1.5;
    max-width: 90%;
  }

  .formulario form {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.18);
  }

  .formulario form h4 {
    text-align: center;
  }

  .formulario input,
  .formulario select,
  .formulario button {
    font-size: 16px;
  }

  .formulario button {
    padding: 16px;
    border-radius: 10px;
  }
}

/* ==========================
   FOOTER
========================== */
.footer {
  background: #002A43;
  color: white;
  width: 100%;
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  max-width: 300px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-family: 'Montserrat-Regular';
}

.footer-links a:hover {
  color: #84c4ff;
}

.footer-social p {
  margin-bottom: 8px;
  font-size: 14px;
  font-family: 'Montserrat-Light';
}

.footer-social .insta {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-social .insta img {
  width: 40px;
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Montserrat-Regular';
}

.footer-bottom a {
  color: #84c4ff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #c8e4ff;
}

/* Botão WhatsApp flutuante */
.whatsapp-float {
  position:absolute;
  right: 40px;
  bottom: 40px;
  background: none;
}

.whatsapp-float img {
  width: 45px;
  transition: 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social .insta {
    justify-content: center;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
  }
}
/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 25px;        /* distância da borda inferior */
  right: 25px;         /* distância da borda direita */
  z-index: 1000;       /* garante que fique acima de outros elementos */
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 65px;         /* tamanho do ícone */
  height: 65px;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* efeito de destaque ao passar o mouse */
}
/* ==========================
   VÍDEO DE FUNDO HERO
/* CTA ENTRE SEÇÕES */
.cta-between {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #ffffff;
}

.cta-visita {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #1f8f5f, #2fbf71);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.cta-visita:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #177a4f, #28a965);
}

/* Mobile */
@media (max-width: 768px) {
  .cta-visita {
    width: 100%;
    max-width: 320px;
    font-size: 16px;
    padding: 16px 24px;
  }
}
/* WHATSAPP FLOAT – VERSÃO PREMIUM */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  color: #1f2937;

  padding: 12px 20px;
  border-radius: 50px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);

  transition: all 0.25s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* Hover elegante */
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  background: #f9fafb;
}

/* Mobile – mantém apenas o ícone */
@media (max-width: 768px) {
  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }
}
/* ==========================
   BOTÃO AGENDAR – ESPECÍFICO DO HERO
========================== */
.hero-agendar{
  position: absolute;
  bottom: 90px; /* 🔼 mais alto */
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}


.btn-agendar-hero{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 38px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;

  background: linear-gradient(135deg, #1f8f5f, #2fbf71);
  border-radius: 50px;

  box-shadow: 0 14px 32px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn-agendar-hero:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0,0,0,.45);
  filter: brightness(1.03);
}

/* Mobile */
@media (max-width: 900px){
  .hero-agendar{ display: none;}

  .btn-agendar-hero{
    padding: 14px 30px;
    font-size: 16px;
  }
}
