
/* === FONTES AUTOHOSPEDADAS === */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-latin-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
}

.hero {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #111;
}

.logo {
  width: 300px;
  margin-bottom: 20px;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #d4af37;
  color: #111;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background-color: #b9962f;
}

.video-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #1a1a1a;
}

.video-section h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.galeria-section {
  background-color: #111;
  padding: 40px 20px;
  text-align: center;
}

.galeria-section h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.form-section {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 2rem;
}
.form-section h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
#cadastro-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}
#cadastro-form input,
#cadastro-form button {
  padding: 12px;
  border: none;
  border-radius: 5px;
}
#cadastro-form input {
  font-size: 1rem;
}
#cadastro-form button {
  background-color: #b9962f;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
#cadastro-form button:hover {
  background-color: #b9962f;
}

.carousel img {
  max-height: 400px; /* ajuste conforme necessário */
  object-fit: cover;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.tab-button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
}

.tab-button.active {
  background-color: #d4af37;
  color: #000;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  padding-bottom: 2rem;
}

.swiper {
  width: 90%;
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

.swiper-slide{
  display:flex;              /* centra a imagem horizontalmente   */
  justify-content:center;
}

.swiper-slide img{
  width:100%;
  height:auto;
  aspect-ratio:16/9;   /* mantém proporção fixa */
  object-fit:cover;
  border-radius:8px;
}
/* seta Swiper – vale para todos os carrosseis */
.swiper-button-prev,
.swiper-button-next {
  color: #d4af37;      /* dourado */
  width: 44px;
  height: 44px;
}

/* opcional: aumentar contraste no hover */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.1);
}

/* --- Bloco vídeo + texto --- */
.video-content {
  display: flex;
  justify-content:space-between;
  align-items: flex-start;
  gap: 40px;                 /* espaço entre texto e vídeo */
  flex-wrap: wrap;           /* empilha no mobile */
}

.descricao-video {
  flex:1 1 320px;           /* mínimo 320 px          */
  max-width:420px;
  line-height:1.5;
  text-align:left;
}

.video-container {
  flex: 1 1 480px;           /* deixa o vídeo flexível, mas limitado */
  max-width: 640px;
  aspect-ratio: 16 / 9;      /* mantém proporção sem precisar do height fixo */
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border:0;
  border-radius: 8px;
}

/* Mobile: empilha e centraliza */
@media (max-width: 900px) {
  .video-content{flex-direction:column; align-items:center; gap:24px;}
  .descricao-video {
    text-align: center;
  }
}
/* — Centraliza o vídeo em telas até 600 px — */
@media (max-width: 600px){
  .video-container{
    margin: 0 auto;        /* alinha no centro */
    flex: 0 1 100%;        /* ocupa 100% sem “forçar” largura maior */
    max-width: 100%;       /* garante que não passe da tela        */
  }
}

/* Espaço interno nas laterais do bloco texto+vídeo */
.video-section {
  padding-left: 6vw;   /* 5% da largura da janela */
  padding-right: 6vw;
}
/* Centraliza e dá respiro ao par TEXTO+VÍDEO */
.video-section .video-content{
  max-width: 1100px;   /* largura máxima do bloco */
  margin: 0 auto;      /* centraliza na seção     */
  padding: 0 40px;     /* 40 px de folga lateral  */
}
/* --- Ajustes da seção PLANTA --- */
#planta{ background:#111; }

.planta-texto{
  max-width:780px;
  margin:0 auto 20px;
  line-height:1.5;
}

.planta-box{
  display:flex;
  flex-direction:column;   /* empilha ícones e imagem */
  align-items:center;      /* centraliza os dois       */
  gap:2px;                /* espaço entre eles        */
}

/* chips dourados */
.icones-infos{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0;
}
.icone-item{
  background: #d4af37;      /* dourado da marca */
  color: #111;
  padding: 6px 16px;
  border-radius: 24px;
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.imagem-planta img{
  height: 600px;      /* mesmo valor usado no carrossel */
  width: auto;        /* mantém proporção original       */
  object-fit: contain;
  border-radius: 8px; /* mantém o cantinho arredondado   */
  max-width: 100%;    /* evita exceder o contêiner       */
}
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  padding: 40px 20px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('fundo.webp') center center / cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 220px;
  margin-bottom: 20px;
}
/* === Exclusividades =================================================== */
.exclusividades-section{
  background:#1a1a1a;
  padding:60px 6vw;
  text-align:center;
}
.exclusividades-section h2{
  font-size:1.6rem;
  margin-bottom:32px;
}

.exclusividades-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
  max-width:1100px;
  margin:0 auto;
}

.ex-card{
  background:#111;
  border-radius:12px;
  padding:32px 24px;
  transition:transform .3s ease,box-shadow .3s ease;
}
.ex-card:hover{
  transform:translateY(-6px);
  box-shadow:0 8px 20px rgba(0,0,0,.4);
}
.ex-icone{
  font-size:2.4rem;
  display:block;
  margin-bottom:16px;
  color:#d4af37;  /* dourado padrão */
}
.ex-card h3{
  font-size:1.1rem;
  margin:0 0 8px;
  color:#d4af37;
}
.ex-card p{
  font-size:.95rem;
  line-height:1.5;
  margin:0;
}
/* === Comercialização Exclusiva ============================================ */
.exclusiva-section{
  background:#111;
  color:#fff;
  padding:60px 6vw;
}
.exclusiva-container{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  max-width:1100px;
  margin:0 auto;
}
.exclusiva-texto{
  flex:1;
  min-width:280px;
}
.exclusiva-texto h2{
  font-size:1.6rem;
  color:#d4af37;
  margin-bottom:20px;
}
.exclusiva-texto p{
  font-size:1rem;
  line-height:1.6;
  margin-bottom:16px;
}
.exclusiva-logo{
  flex:0 0 180px;
  text-align:center;
}
.exclusiva-logo img{
  max-width:100%;
  height:auto;
  filter:brightness(1.2);
}
/* === Botão WhatsApp flutuante ====================================== */
.btn-whatsapp{
  position:fixed;
  bottom:24px;
  right:24px;
  width:56px;
  height:56px;
  background:#25D366;         /* verde WhatsApp */
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,.35);
  z-index:1000;               /* fica sempre à frente */
  transition:transform .25s ease;
}
.btn-whatsapp:hover{
  transform:scale(1.1);
}
.btn-whatsapp svg{
  width:28px;
  height:28px;
  fill:#fff;
}
/* === Rodapé ========================================================== */
.site-footer{
  background:#0d0d0d;
  color:#bbb;
  font-size:.85rem;
  line-height:1.5;
  padding:48px 6vw 32px;
}
.footer-wrap{
  max-width:900px;
  margin:0 auto 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:28px;
}

/* Logos */
.footer-logos{
  display:flex;
  gap:40px;
  justify-content:center;
}
.logo-footer{
  width:80px;
  height:auto;
  filter:brightness(0) invert(1);      /* deixa as logos brancas sobre fundo escuro */
  opacity:.9;                  /* leve suavizada */
  transition:opacity .2s ease;
}
.logo-footer:hover{opacity:1;}

/* Texto legal */
.footer-legal{
  text-align:center;
  max-width:560px;
  color:#aaa;
}

/* Crédito */
.footer-credit{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.8rem;
  color:#777;
}

.logo-gd{
  width:30px;
  height:auto;
  opacity:.9;
  transition:opacity .2s ease;
}
.logo-gd:hover{opacity:1;}


/* Linha final */
.footer-copy{
  text-align:center;
  font-size:.75rem;
  color:#555;
  border-top:1px solid #1b1b1b;
  padding-top:14px;
}

/* Responsivo */
@media(max-width:480px){
  .footer-logos{gap:24px;}
  .logo-footer{width:80px;}
  .logo-gd{width:25px;}
}
/* ===== Ajuste do logo no HERO ========================================= */
.hero .logo{                 /* usa o seletor de contexto para ganhar força */
  width:420px;               /* defina o tamanho desejado */
  max-width:90vw;            /* garante que não estoure em telas pequenas  */
  height:auto;
}
/* ================================================================
   AJUSTES RESPONSIVOS FINAIS (mobile → desktop)
   ---------------------------------------------------------------- */

/* 1) Telefones + pequenos tablets  ≤ 600 px  --------------------- */
@media (max-width: 600px){

  /* Hero --------------------------------------------------------- */
  .hero            { padding: 100px 20px 60px; min-height: 420px; }
  .hero h1         { font-size: 1.3rem; line-height: 1.4; }
  .hero .logo      { width: 72vw; }              /* encolhe suavemente */

  /* Botões Tabs -------------------------------------------------- */
  .tabs            { flex-wrap: wrap; gap: .6rem; }
  .tab-button      { font-size: .8rem; padding: 8px 14px; }

  /* Carrosséis / Imagens ---------------------------------------- */
  .swiper-slide img,
  .imagem-planta img { height: 250px; }          /* menos altas no mobile */

  /* Exclusividades ---------------------------------------------- */
  .ex-card         { padding: 24px 16px; }

  /* Formulário --------------------------------------------------- */
  #cadastro-form   { max-width: 95%; }

  /* Rodapé ------------------------------------------------------- */
  .footer-logos    { gap: 24px; }
  .logo-footer     { width: 64px; }
  .footer-legal    { font-size: .75rem; }

    /* Comercialização Exclusiva – centraliza o logo no mobile */
  .exclusiva-container{
    flex-direction: column;     /* empilha texto + logo          */
    align-items: center;        /* centraliza tudo               */
  }
  .exclusiva-texto{
    text-align: center;         /* texto centralizado            */
  }
  .exclusiva-logo{
    flex: 0 0 100%;             /* ocupa a linha inteira         */
    margin-top: 20px;           /* respiro abaixo do texto       */
    text-align: center;         /* garante alinhamento           */
  }


}

/* 2) Tablets médios  601 – 900 px  ------------------------------- */
@media (min-width: 601px) and (max-width: 900px){

  .hero h1         { font-size: 1.5rem; }
  .swiper-slide img,
  .imagem-planta img { height: 320px; }

}

/* 3) Telas grandes  ≥ 1200 px  ----------------------------------- */
@media (min-width: 1200px){

  .hero            { height: 80vh; }             /* aproveita tela grande */
  .hero h1         { font-size: 2.2rem; }
  .hero .logo      { width: 480px; }

  .swiper-slide img,
  .imagem-planta img { height: 540px; }

}
/* === Centraliza e expande o vídeo no mobile ====================== */
@media (max-width:600px){
  .video-container{
    flex: 0 1 100%;   /* ocupa 100 % da coluna                                 */
    max-width: 100%;  /* não deixa um limite fixo de 640 px                    */
    margin: 0 auto;   /* garante alinhamento horizontal ao centro              */
  }
}



