/* css/style.css */

/*font*/

@font-face {
  font-family: 'Titulos';            /* nome que você vai usar no font-family */
  src: url('font/Fontspring-DEMO-theseasons-bd.woff2') format('woff2'),
       url('fonts/Fontspring-DEMO-theseasons-bd.woff')  format('woff'),
       url('fonts/Fontspring-DEMO-theseasons-bd.otf')   format('opentype');
  font-weight: normal;                  /* ajuste se tiver variações */
  font-style: normal;                   /* normal, italic etc. */
  font-display: swap;                   /* opção para melhorar performance */
}
.titulo {
  font-family: 'Titulos', serif;
}

p {
    font-family: 'Lato', sans-serif;
}

 /* Header transparente com sobreposição */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8); /* Fundo escuro com opacidade */
      z-index: 10;
      padding: 15px 30px;
      transition: background-color 0.3s ease; /* Animação suave na troca */
    }
    header.scrolled {
  background-color: #000; /* Preto total quando faz scroll */
}

header, .topbar {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

    .logo {
      height: 100px;
    }

    /* Hero section */
   /* Hero section */
    .hero {
    height: 100vh;
    position: relative;
    padding-top: 120px;
    color: white;
    overflow-x: hidden;

    /* degradê de baixo para cima */
    background-image:
      linear-gradient(
        to bottom,
        rgba(59, 59, 59, 0.44) 0%,   /* na base: #3B3B3B a 44% de opacidade */
        rgba(13, 13, 13, 1   ) 100%  /* no topo: #0D0D0D a 100% de opacidade */
      ),
      url('../img/coworking.png');

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    transition: background-image 1s ease-in-out;
  }

  .hero::after {
  content: "";
  position: absolute;
  left: 0;                     /* sempre no canto esquerdo do viewport */
  top: var(--line-top);        /* altura da linha — aqui via CSS var */
  width: var(--line-length);   /* comprimento da linha — aqui via CSS var */
  height: 3px;                 /* espessura da linha */
}

    .hero-content {
      max-width: 1200px;
      margin: 0 auto;
      height: 80%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 30px;
    }

    .headline-container {
      position: relative;
      margin-left: 0;
      padding-left: 0px;
      max-width: 1200px;
    }

    .headline {
      font-size: 5rem;
      padding: 10px 15px;
    }


    .subtext {
      font-size: 2rem;
      max-width: 1200px;
    }

    @media (max-width: 768px) {
      .headline {
        font-size: 2rem;
      }

      .subtext {
        font-size: 1rem;
        margin-left: 0;
      }
    }

/*botão inglês*/

.english-btn {
  border: 1px solid #A87008;
  color: #A87008;
  background-color: transparent;
  text-decoration: none;
  border-radius: 50px;
  padding: 6px 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}

.english-btn:hover {
  background-color: #A87008;
  color: #000;
  text-decoration: none;
}

.english-btn img {
  height: 16px;
  width: 16px;
}

/*botao header*/
html, body {
      background-color: #0d0d0d;
      font-family: 'textos';
      max-width: 100%;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }
  

    .topbar {
      width: 100%;
  max-width: 100%;
  overflow-x: hidden;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      background-color: #0d0d0d;
    }

    .hamburger {
      width: 24px;
      height: 18px;
      position: relative;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
    }

    .hamburger span {
      position: absolute;
      height: 3px;
      width: 100%;
      background-color: #A87008;
      left: 0;
      transition: 0.4s ease;
    }

    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 7.5px; }
    .hamburger span:nth-child(3) { top: 15px; }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 7.5px;
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg);
      top: 7.5px;
    }

    .english-btn {
      border: 1px solid #A87008;
      color: #A87008;
      background-color: transparent;
      border-radius: 50px;
      padding: 6px 14px;
      font-weight: 500;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .english-btn img {
      width: 16px;
      height: 16px;
    }

    .menu-overlay {
      position: fixed;
      top: 117px;
      right: 30px;
      left: auto;
      background: rgba(0, 0, 0, 0.85);
      width: 100%;
      max-width: 220px;
      padding: 1rem;
      display: none;
      z-index: 999;
      border-radius: 0 0 10px 0;
    }

    .menu-overlay a {
      display: block;
      color: white;
      font-weight: 600;
      text-decoration: none;
      margin-bottom: 1rem;
      position: relative;
      padding-left: 18px;
    }

    .menu-overlay a::before {
      content: '›';
      position: absolute;
      left: 0;
      color: white;
    }

    .show-menu {
      display: block !important;
    }

/*info*/
#info {
  position: relative;
  margin-top: 00px;
  padding: 80px 60px;
  overflow: hidden;
  color: white;
  z-index: 3;
  background: none; /* não usar background direto aqui */
}

#info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 1));
  z-index: 0;
}

#info::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background: #D9D9D9;
  z-index: 0;
}

.info-content {
  position: relative;
  z-index: 1; /* fica acima dos fundos */
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.info-content .text {
  flex: 1;
  padding-right: 50px;
}

.info-content .text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 30px;
  color: white;
}

.info-content .text p {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: white;
}

.btn-saiba-mais {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  background: #D9D9D9;
  color: black;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-saiba-mais:hover {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  background:#D9D9D9;
  color: black;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.info-content .imagem {
  flex-shrink: 0;
  width: 30%;
  z-index: 1;
}

.info-content .imagem img {
  width: 100%;
  height: auto;
  display: block;
}

/*projetos-----------------------------------------------*/

#projetos {
  background-color: #D9D9D9; /* Tom de branco levemente acinzentado */
  color: black;
  padding-top: 500px;
}

#projetos p {
  font-size: 1.2em;
}

#projetos .titulo {
  font-size: 50px;
}

/* Faz com que a .row seja sempre horizontal */
.row.g-0 {
  display: flex;
  flex-wrap: nowrap;
}

/* Corrige o tamanho do container da esquerda */
.col-lg-8 > .container {
  padding-left: 150px; /*LEMBRAR DESSA PARTE PARA RESPONSIVIDADE */
  padding-right: 15px;
  max-width: 1140px; /* Ou 1320px, conforme seu grid Bootstrap */
  margin-left: auto;
  margin-right: auto;
}

.bloco-laranja .p-4 {
  padding-top: 0.1rem;
  padding-bottom: 0.3rem;
}


/* Parte direita: bloco laranja colado na borda da tela */
.bloco-laranja {
  background-color: #A87008;
  height: 50px;
  max-height: 280px;
  width: 110%;
  display: flex;
}

@media (max-width: 991.98px) {
  .row.g-0 {
    flex-wrap: wrap;
  }

  .bloco-laranja {
    width: 100%;
  }
}

/* __________________ MISSAO  __________________ */

#missao {
  background: linear-gradient(to right, #0e0f0f 20%, #d9d9d9 20%);
  color: black;
  padding-bottom: 100px;
}

#img-missao {
  margin-top: 110px;
}

#missao h3 {
  font-size: 40px;
}

#missao p {
  font-size: 20px;
}

#btn-missao {
  margin-top: 20px;
  margin-left: 530px;
}


#textos-missao {
  margin-top: 170px;
  background-color: #A87008;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 100px;
  padding-right: 100px;
  z-index: 4;
  position: relative;
  margin-left: -200px; /* Faz o bloco avançar sobre a imagem */
}

.btn-servicos {
      background-color: white;
      color: #000;
      border-radius: 20px;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      padding: 8px 20px;
      font-weight: bold;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      border: none;
      transition: 0.2s;
    }

    .btn-servicos:hover {
      box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
      text-decoration: none;
      color: #000;
    }

    .btn-servicos svg {
      width: 18px;
      height: 18px;
    }

/* --------------------------- SOBRE ------------------------ */

#sobre {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #0e0f0f;
  color: white;
  background-size: 3px 3px;
  display: flex;
  align-items: center; /* centraliza o conteúdo verticalmente */
  padding: 0; /* remove espaçamento interno que atrapalhe */
}

#sobre .container {
  flex: 1;
}

#sobre h4 {
  color: #A87008;
  font-size: 2.4em;
}

#sobre h5 {
  font-size: 1.6em;
}

#danielle {
  height: 100%;
  width: 100%;
  object-fit: cover; /* mantém proporção e cobre todo espaço */
  border-radius: 0; /* remove bordas arredondadas se quiser full height */
  max-height: 100vh;
}


.btn-sobre {
      color: #A87008; /* Cor do texto (amarelo queimado) */
      border: 1.5px solid #A87008; /* Cor da borda */
      border-radius: 30px; /* Bordas arredondadas */
      background-color: transparent; /* Fundo transparente */
      padding: 3px 37px; /* Espaçamento interno */
      font-weight: bold; /* Texto em negrito */
      font-size: 1.3em;
      text-transform: uppercase; /* Letras maiúsculas */
    }

    .btn-sobre:hover {
      background-color: #A87008; /* Fundo amarelo queimado no hover */
      color: black; /* Texto preto no hover */
    }

.textos-sobre {
  border-left: 2px solid #A87008;
  padding-left: 20px;
}

.textos-sobre p {
  font-size: 1.2em;
}

.midia {
  color: white;
  font-size: 2.5em;
}

.midia:hover {
  color: #A87008;
  font-size: 2.5em;
}

/* --------------------------- Imagens ------------------------ */

.btn-custom-arquitetura {
            background-color: #e4e0dc; /* tom claro */
            color: #000000; /* texto preto */
            border-radius: 8px;
            font-weight: bold;
            font-size: 2.5em;
            padding: 10px 140px;
        }

        .btn-custom-interiores {
            background-color: #b17a10; /* tom amarelo/dourado queimado */
            color: #000000; /* texto preto */
            border-radius: 8px;
            font-weight: bold;
            font-size: 2.5em;
            padding: 10px 140px;
        }

        .btn-custom-arquitetura:hover,
        .btn-custom-interiores:hover {
            opacity: 0.8;
        }

        .btn-group-custom {
            display: flex;
            gap: 10px;
        }

#imagens {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #0e0f0f;
  color: white;
  background-size: 3px 3px;
}

#sobre a .btn-saiba-mais {
  font-size: 2em;
}

/* --------------------------- nossos-servicos ------------------------ */

#nossos-servicos {
  background-color: black;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}

.nossos-servicos h1 {
    color: #b17a10; /* Dourado suave */
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 3px solid #b17a10;
    display: inline-block;
}

.nossos-servicos .descricao2 {
  color: white;
    margin: 0 auto;
    font-size: 1.4rem;
    max-width: 1000px;
}

.card-servico {
    background-color: #1c1c1c;
    border-radius: 30px;
    overflow: hidden;
    text-align: left;
    color: #c7c7c7;
}

.card-servico h5 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.card-servico p {
    font-size: 1.05rem;
    line-height: 1.5;
}

#nossos-servicos .img-fluid {
    object-fit: cover;
    height: 180px;
    width: 100%;
}

/* --------------------------- antes de depois ------------------------ */

#antes {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #D9D9D9; /* Tom de branco levemente acinzentado */
  color: black;
}

#antes .img-fluid {
    object-fit: cover;
    border-radius: 20px;
    height: 500px;
    width: 100%;
}

/* --------------------------- contato ------------------------ */

#contato {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #D9D9D9; /* Tom de branco levemente acinzentado */
  color: black;
}

.btn-contato {
    background-color: #b17a10; /* Cor dourada */
    color: #000; /* Texto preto */
    padding: 12px 25px;
    border-radius: 25px; /* Bordas bem arredondadas */
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3); /* Sombra discreta */
    transition: background-color 0.3s, transform 0.2s;
}

.btn-contato:hover {
    background-color: #a06b0f; /* Um tom mais escuro no hover */
    transform: scale(1.05); /* Pequeno zoom no hover */
}

.btn-contato:active {
    transform: scale(0.98);
}

.imagem-com-fundo {
    position: relative;
    display: inline-block;
}

.fundo-dourado {
    position: absolute;
    top: 20px; /* Ajuste a distância vertical */
    left: -350px; /* Deslocamento lateral para esquerda */
    width: 200%;
    height: 115%;
    background-color: #b17a10; /* Dourado */
    z-index: 1;
}

.imagem-com-fundo img {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 100%;
    height: auto;
}

/* --------------------------- Footer ------------------------ */

footer {
  background-color: #1d1c19;
  color: #d6a740;
  min-height: 300px;
}

footer h3 {
  font-size: 1.3em;
}

footer i {
  font-size: 1.7em;
}

.footer-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links h3 {
  font-size: medium;
  color: #b17a10;
}

footer .footer-links a{
  text-decoration: none;
  color: #b17a10;
  text-transform: uppercase;
  font-size: larger;
  font-weight: 400;
}

.espacamento-inferior {
  margin-bottom: 50px;
}

footer .footer-links a:hover{
  color: white;
}

#icones a {
  margin-right: 20px;
  color: #b17a10;
  text-decoration: none;
  font-size: 25px;
}

#icones a:hover {
  color: white;
}

.textosfooter {
  margin-top: 45px;
  
  color: #b17a10;
}

.textosfooter h3 {
  font-size: 1.1em;
}

.textosfooter .baixo {
  padding-top: 20px;
  font-size: 0.8em;
}


/* --------------------------- LightBox ------------------------ */

#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px #fff;
}

#close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2em;
  cursor: pointer;
}

#imagens img {
  cursor: pointer;
}

#imagens img:hover {
  opacity: 0.8;
  transition: opacity 0.2s;
}

/* --------------------------- Perguntas ------------------------ */

.accordion-header {
  background-color: transparent;
  border-left: 3px solid #b17a10;
  cursor: pointer;
  padding: 12px 15px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 18px;
  color: #333333;
  font-family: 'Arial', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f9f9f9;
  color: #000000;
}

.accordion-content {
  display: none;
  padding: 10px 15px 15px 25px;
  background-color: #fdfdfd;
  border-left: 3px solid #b17a10;
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
}

.accordion-item + .accordion-item {
  margin-top: 8px;
}

.accordion-item.active .accordion-content {
  display: block;
}
/* --------------------------- Fotos ------------------------ */

.categoria {
  transition: all 0.5s ease;
}

/* --------------------------- Antes e depois ------------------------ */
.before-after {
  position: relative;
  overflow: hidden;
  height: 500px; /* ou 400px, conforme o tamanho das suas imagens */
}

.before-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.before-after .before-img {
  opacity: 1;
  z-index: 1;
}

.before-after .after-img {
  opacity: 0;
  z-index: 2;
}

.before-after:hover .after-img {
  opacity: 1;
}

.pagina-contato .fundo-contato {
    background-image: url('../img/home_office.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 200px;
}

.pagina-contato .fundo-contato::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.pagina-contato .container,
.pagina-contato .row,
.pagina-contato .col-md-5,
.pagina-contato .col-md-7 {
    position: relative;
    z-index: 2;
}

.pagina-contato .titulo-contato {
    border-left: 4px solid #ffae00;
    padding-left: 10px;
    font-weight: bold;
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.pagina-contato .info-contato p {
    margin-bottom: 10px;
}

.pagina-contato .formulario-contato {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
}

.pagina-contato .formulario-contato label {
    color: #fff;
}

.pagina-contato .formulario-contato input,
.pagina-contato .formulario-contato textarea {
    background-color: #222;
    color: #fff;
    border: 1px solid #fff;
}

.pagina-contato .formulario-contato input::placeholder,
.pagina-contato .formulario-contato textarea::placeholder {
    color: #bbb;
}

.pagina-contato .formulario-contato .btn-warning {
    background-color: #fff;
    border: none;
    color: #000;
}

.pagina-contato .formulario-contato .btn-warning:hover {
    background-color: #fff;
}

.map-container {
  width: 100%;
  height: 200px; /* ou ajuste como preferir */
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #e89c00;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Media Queries
-------------------------------------------------------------------*/

.logo-img {
  max-width: 800px;      /* Limite máximo de largura */           /* Faz ela escalar automaticamente dentro do container */
  height: auto;          /* Mantém a proporção da imagem */
  display: block;        /* Remove espaços indesejados em volta */
}

#header-direita {
  max-width: 100%;
  overflow-x: hidden;
}

.line{
  --line-length:780px; --line-top:460px;
}


/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .logo-img {
    max-width: 250px;    /* Em telas bem pequenas, deixa menor ainda */
  }
  .headline {
    font-size: 2.3rem;
    padding: 10px 15px;
  }

  .line{
    --line-length:0px; --line-top:0px;
  }

  .col-lg-8 > .container {
    padding-left: 20px; /*LEMBRAR DESSA PARTE PARA RESPONSIVIDADE */
    padding-right: 15px;
    max-width: 1140px; /* Ou 1320px, conforme seu grid Bootstrap */
    margin-left: auto;
    margin-right: auto;
  }

  #danielle {
    width: 300px;
    margin-left: 35px;
  }

  #textos-missao {
    margin-top: 170px;
    background-color: #A87008;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 200px;
    padding-right: 100px;
    z-index: 4;
    position: relative;
    margin-left: -200px; /* Faz o bloco avançar sobre a imagem */
  }

  .btn-custom-arquitetura {
            background-color: #e4e0dc; /* tom claro */
            color: #000000; /* texto preto */
            border-radius: 8px;
            font-weight: bold;
            font-size: 2.3em;
            padding: 10px 70px;
        }

        .btn-custom-interiores {
            background-color: #b17a10; /* tom amarelo/dourado queimado */
            color: #000000; /* texto preto */
            border-radius: 8px;
            font-weight: bold;
            font-size: 2.3em;
            padding: 10px 70px;
        }
        
  .fundo-dourado {
    position: absolute;
    top: 20px; /* Ajuste a distância vertical */
    left: -350px; /* Deslocamento lateral para esquerda */
    width: 110%;
    height: 115%;
    background-color: #b17a10; /* Dourado */
    z-index: 1;
}

.menu-overlay {
      position: fixed;
      top: 69px;
      right: 0px;
      left: auto;
      background: rgba(0, 0, 0, 0.85);
      width: 100%;
      max-width: 220px;
      padding: 1rem;
      display: none;
      z-index: 999;
      border-radius: 0 0 10px 0;
    }
#info::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 00%;
  height: 100%;
  background: #D9D9D9;
  z-index: 0;
}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .logo-img {
    max-width: 250px;    /* Em telas bem pequenas, deixa menor ainda */
  }
  .headline {
      font-size: 3rem;
      padding: 10px 15px;
    }
  .line{
    --line-length:0px; --line-top:0px;
  }

  .col-lg-8 > .container {
    padding-left: 20px; /*LEMBRAR DESSA PARTE PARA RESPONSIVIDADE */
    padding-right: 15px;
    max-width: 1140px; /* Ou 1320px, conforme seu grid Bootstrap */
    margin-left: auto;
    margin-right: auto;
  }

  #textos-missao {
    margin-top: 170px;
    background-color: #A87008;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 200px;
    padding-right: 100px;
    z-index: 4;
    position: relative;
    margin-left: -200px; /* Faz o bloco avançar sobre a imagem */
  }

  .btn-custom-arquitetura {
            background-color: #e4e0dc; /* tom claro */
            color: #000000; /* texto preto */
            border-radius: 8px;
            font-weight: bold;
            font-size: 2.3em;
            padding: 10px 70px;
        }

        .btn-custom-interiores {
            background-color: #b17a10; /* tom amarelo/dourado queimado */
            color: #000000; /* texto preto */
            border-radius: 8px;
            font-weight: bold;
            font-size: 2.3em;
            padding: 10px 70px;
        }
    .fundo-dourado {
    position: absolute;
    top: 20px; /* Ajuste a distância vertical */
    left: -350px; /* Deslocamento lateral para esquerda */
    width: 110%;
    height: 115%;
    background-color: #b17a10; /* Dourado */
    z-index: 1;
}

.menu-overlay {
      position: fixed;
      top: 63px;
      right: 0;
      left: auto;
      background: rgba(0, 0, 0, 0.85);
      width: 100%;
      max-width: 220px;
      padding: 1rem;
      display: none;
      z-index: 999;
      border-radius: 0 0 10px 0;
    }
#info::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 00%;
  height: 100%;
  background: #D9D9D9;
  z-index: 0;
}
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
  .logo-img {
    max-width: 450px;    /* Em telas bem pequenas, deixa menor ainda */
  }

  .headline {
      font-size: 4rem;
      padding: 10px 15px;
    }
  
    .line{
    --line-length:0px; --line-top:0px;
  }

  #textos-missao {
    margin-top: 170px;
    background-color: #A87008;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 200px;
    padding-right: 100px;
    z-index: 4;
    position: relative;
    margin-left: -200px; /* Faz o bloco avançar sobre a imagem */
  }
  .fundo-dourado {
    position: absolute;
    top: 20px; /* Ajuste a distância vertical */
    left: -350px; /* Deslocamento lateral para esquerda */
    width: 110%;
    height: 115%;
    background-color: #b17a10; /* Dourado */
    z-index: 1;
}

.menu-overlay {
      position: fixed;
      top: 70px;
      right: 0;
      left: auto;
      background: rgba(0, 0, 0, 0.85);
      width: 100%;
      max-width: 220px;
      padding: 1rem;
      display: none;
      z-index: 999;
      border-radius: 0 0 10px 0;
    }


}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
  .logo-img {
    max-width: 650px;    /* Em telas bem pequenas, deixa menor ainda */
  }

  .headline {
      font-size: 4rem;
      padding: 10px 15px;
    }

    .line{
    --line-length:00px; --line-top:00px;
  }

  .menu-overlay {
      position: fixed;
      top: 103px;
      right: 0;
      left: auto;
      background: rgba(0, 0, 0, 0.85);
      width: 100%;
      max-width: 220px;
      padding: 1rem;
      display: none;
      z-index: 999;
      border-radius: 0 0 10px 0;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { 
  
}

/* Whatsapp*/
.whatsapp-float {
  position: fixed;
  bottom: 30px; /* ajuste conforme quiser */
  right: 30px;
  text-decoration: none;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  font-size: 30px;
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

.whatsapp-float i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
}

/* ==========================================================================
   NOVA TENTATIVA: Correção para o problema de "blur" em dispositivos Apple
   ========================================================================== */

/* 1. Força uma renderização 3D mais robusta nas seções problemáticas */
#projetos,
#sobre,
#missao,
#imagens,
#antes,
#contato {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000;
          perspective: 1000;
  -webkit-transform: translateZ(0); /* Usando translateZ(0) que é mais comum para isso */
          transform: translateZ(0);
}

/* 2. Aplica o mesmo tratamento aos elementos que causam a repintura (o hover) */
.before-after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000;
          perspective: 1000;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

/* 3. Melhora a renderização de fontes em macOS e iOS (boa prática) */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/*Animations ----------------------------------*/

/* Estado inicial: invisível e um pouco abaixo */
.elemento-dinamico {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Transição suave */
}

/* Estado final: visível na posição correta */
.elemento-dinamico.aparecer {
  opacity: 1;
  transform: translateY(0);
}

.elemento-dinamico2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Transição suave */
}

/* Estado final: visível na posição correta */
.elemento-dinamico2.aparecer {
  opacity: 1;
  transform: translateY(0);
}

.elemento-dinamico3 {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Transição suave */
}

/* Estado final: visível na posição correta */
.elemento-dinamico3.aparecer {
  opacity: 1;
  transform: translateX(0);
}

.container-custom, .container-custom-fluid, .container-custom-lg, .container-custom-md, .container-custom-sm, .container-custom-xl, .container-custom-xxl {
    --bs-gutter-x: 20rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}