body {
  margin: 0;
  padding: 0;
  background-color: #000;
  overflow-x: hidden;
}
/* Estilo do Botão Hambúrguer (Escondido no Desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 3px;
}

/* Responsividade Mobile (Máximo 900px conforme seu código) */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex; /* Mostra o hambúrguer */
        z-index: 1001;
    }

    .ul-nav {
        position: fixed;
        right: -100%; /* Esconde a aba para a direita */
        top: 0;
        flex-direction: column !important;
        background-color: rgba(0, 0, 0, 0.95);
        width: 70%; /* Largura da aba lateral */
        height: 100vh;
        padding-top: 100px;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

    /* Quando a classe 'active' for adicionada pelo JS */
    .ul-nav.active {
        right: 0;
    }

    .ul-nav li {
        width: 100%;
        text-align: center;
    }

    /* Animação do Hambúrguer virando "X" */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
 nav {
  text-transform: uppercase;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  position: fixed;
  width: 100vw;
  top: 0;
  z-index: 1000;
  background-color: #000;
}


.logo img {
  height: 60px;          
  width: auto;           
  max-width: 100%;       
  transition: 0.3s ease; 
}


.ul-nav {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.ul-nav li a {
  cursor: pointer;
  position: relative;
  display: block;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: larger;
  border-radius: 15px;
  transition: background-color 0.3s ease;
}
.ul-nav li ::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #b4977b;
  transition: width 0.3s ease;
}

.ul-nav li :hover::after {
  width: 100%;
}
.ul-nav li :hover{
  color: #b4977b;
}



@media (max-width: 900px)   {
  nav {
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    height: 45px; 
    margin-bottom: 10px;
  }

  .ul-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .ul-nav li a {
    padding: 8px 12px;
    font-size: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: medium;
  }
  .ul-nav li :hover::after {
  display: none;
}
.ul-nav li ::after {
  display: none;
}
}
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background: 
    linear-gradient(to right, rgba(0, 0, 0, 0.9) 35%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 9)),
    url('imagens/bannerestudio.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 100px;
  box-sizing: border-box;
}

.conteudo {
  max-width: 600px;
  
}

.conteudo h1 {
  text-align: left;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: white;
  font-family: "Montserrat", sans-serif;
  
}

h1 span {
  color: #b4977b; 
}

p {
  font-weight: 300;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
}

.botao {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #b4977b;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.botao:hover {
  background-color: #d2b89c;
  transform: scale(1.03);
}

.sobre {
    background-color: #000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 40px;
    font-family: "Montserrat", sans-serif;
    position: relative;

}

.sobre img{
    width:100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    padding:0px 40px;
}

@media (max-width: 1200px) {
  .banner{
    text-align: left;
    padding: 10px;
  }
  .conteudo h1{
    font-size: 40px;
  }
  .sobre picture img {
    width: 100%;
    height: 300px;
    
  }
  .sobre {
    grid-template-columns: 1fr;

  }
}

.conteudo2 ul{
  list-style: none;
  color: white;
  display: list-item;
  margin-left: 0%;
  
}
.conteudo2 li{
    margin-bottom: 25px;
    list-style: none;
    margin-left: 0%;
}
.conteudo2 ul li::before {
  content: "";     
  left: 0;
  top: 0;
}
.conteudo2 {
    font-family: "Montserrat", sans-serif;
} 
.conteudo2 p{
  max-width: 100vw;
  margin-left: 30px;
  margin-right: 30px;
  
}
.icone-bege{
  color: #b4977b;
  margin-left: 0%;
}
.conteudo2 p strong{
  color: #dab593;
  font-weight: 700;
}

h1 {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-size: 4vw;
}

/* Container principal */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 95%;
    margin: 0 auto;
}

/* A janela que esconde o excesso */
.carousel-viewport {
    width: 100%;
    overflow: hidden; /* Remove o scroll de vez */
}

/* A linha que move os cards */
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    padding: 20px 0;
    /* Remove propriedades de scroll manual */
    overflow-x: visible; 
}

.card {
    flex: 0 0 300px; /* Largura fixa para o cálculo do JS funcionar */
    background-color: #222;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}
.card h3{
  text-align: center;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.card h3, .card p {
    font-family: "Montserrat", sans-serif;
    color: white;
    padding: 5px;
}

/* Botões de navegação */
.prev-btn, .next-btn {
    background: #b4977b;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background: #6b5949;
}

/* Ajustes dos botões internos do card */
.botoes {
    display: flex;
    justify-content: space-between;
    margin: 0 20px 15px 20px;
    gap: 10px;
}

.button {
    border-radius: 15px;
    flex: 1;
    height: 50px;
    background-color: transparent;
    border: 2px solid #b4977b;
    transition: 0.3s;
}

.button a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 550;
}

.button:hover {
    background-color: #6b5949;
}

/* --- RESPONSIVIDADE --- */

@media (max-width: 768px) {
    h1 {
        font-size: 30px; /* Título menor no celular */
        margin-top: 15%;
    }

    .carousel-container {
        width: 100%; /* Usa toda a largura no mobile */
    }

    .card {
        /* No celular, o card ocupa 85% da largura da tela para mostrar um pedaço do próximo */
        flex: 0 0 85vw; 
        min-width: 85vw;
    }

    .card img {
        height: 200px; /* Imagem um pouco menor */
    }

    /* Ajusta botões para não ficarem em cima do conteúdo no mobile */
    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }

    .botoes {
        flex-direction: column; /* Botões um em cima do outro no celular */
        gap: 8px;
    }

    .button {
        width: 100%;
        padding: 10px 0px;
    }
}

    .clienteh1{
      margin-top: 10%;
      text-transform: uppercase;
      font-family: "Montserrat", sans-serif;
      margin-left: 10px;
      margin-right: 10px;
      text-align: center;
    }
    .clientep{
      text-align: center;
      font-family: "Montserrat", sans-serif;
      font-size: 20px;
    }
    /* Container que esconde o que sai da tela */
/* Container que oculta o scroll manual */
.avaliacoes-container {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    background: #000;
}

/* Trilho que desliza */
.avaliacoes-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

/* Card Individual Estilizado */
.individual {
    flex: 0 0 350px; /* Largura fixa para preencher melhor a tela */
    background: #121212;
    border-radius: 20px;
    padding: 40px 25px 25px 25px;
    position: relative;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Aspas Decorativas */
.quote-icon {
    font-family: serif;
    font-size: 80px;
    color: #b4977b;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.2;
    pointer-events: none;
}

.review-text {
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    font-size: 14px;
    line-height: 1.8;
    color: #ccc !important;
    margin-bottom: 20px;
    min-height: 100px;
    text-align: center;
}

/* Footer do Card (Estrelas + Google) */
.stars-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.stars {
    color: #fbbc05; /* Amarelo Google */
    font-size: 18px;
    letter-spacing: 2px;
}

.google-mini-logo {
    width: 65px;
    height: auto;
}

.individual hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 15px 0;
}

.avaliah3 {
    font-size: 17px;
    color: #fff;
    margin: 0;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.avaliap {
    font-size: 12px !important;
    color: #b4977b !important;
    margin: 5px 0 0 0 !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pausa no Hover */
.avaliacoes-container:hover .avaliacoes-track {
    cursor: grab;
}
    .bannerorç{
      text-align: center;
      background: 
      linear-gradient(90deg,rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.75) 100%),
      url('imagens/tatuu.webp') center/cover no-repeat;
      position: relative;
      width: 100%;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      margin-top: 70px;
    }
    /* O container já esconde o que sai da tela */
.avaliacoes-container {
    overflow: hidden;
    width: 100%;
    display: flex;
}

/* O trilho que vai deslizar */
.avaliacoes-track {
    display: flex;
    gap: 30px; /* Mantenha o gap que você já usa */
    width: max-content;
    animation: scroll-infinito 40s linear infinite; /* Ajuste os segundos para mudar a velocidade */
}

/* Pausa a animação quando o usuário passa o mouse */
.avaliacoes-container:hover .avaliacoes-track {
    animation-play-state: paused;
}

/* Definição do movimento */
@keyframes scroll-infinito {
    from {
        transform: translateX(0);
    }
    to {
        /* Ele vai deslizar exatamente metade do trilho (o conteúdo duplicado) */
        transform: translateX(-50%);
    }
}

/* Ajuste para o card não encolher */
.individual {
    flex: 0 0 350px; 
}
    
    .h1orç{
      text-align: center;
      margin-top: 15%;
      font-size: 250%;
      font-weight: 1000;
    }
    .h1orç span{
      color: #b4977b;
    }
    .porç{
      font-family: "Montserrat", sans-serif;
      margin-bottom: 5%;
      padding: 0px 20px;
    }
    .buttonorç {
      border-radius: 15px;
      width: 45%;
      height: 50px;
      background-color: #b4977b;
      color: rgb(0, 0, 0);
      font-family: "Montserrat", sans-serif;
      font-size: medium;
      font-weight: 550;
      border-color: #b4977b;
      text-transform: uppercase;
      transition: 0.5s ease;
      box-shadow: 0.2px 0.2px 20px  rgb(61, 61, 61);
      margin-bottom: 15%;
      padding: 10px 30px;
      
    }

    .button-animate :hover{
      cursor: pointer;
      transform: scale(1.09);
    }
    footer {
  background-color: #0d0d0d;
  color: #d1d1d1;
  font-family: 'Poppins', sans-serif;
  padding: 40px 10%;
  border-top: 1px solid #222;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  min-width: 220px;
  flex-direction: column;
  text-align: center;
}

.footer-logo {
  width: 180px;
  margin-bottom: 10px;
}

.footer-column h3 {
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: center;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  text-align: start;
  font-family: "Montserrat", sans-serif;
}

.footer-column ul {
  font-family: "Montserrat", sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* força o empilhamento vertical */
  gap: 8px; /* espaçamento entre os itens */
}

.footer-column ul li {
  display: block;
  font-family: "Montserrat", sans-serif;
}

.footer-column ul li a {
  display: block;
  text-decoration: none;
  color: #bfbfbf;
  font-size: 14px;
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.footer-column ul li a:hover {
  color: #b4977b;
}
.instagram-icon{
  width: 10%;

}
.footer-bt-div {
  text-align: center;
  margin-top: 5%;
  margin-bottom: 10%;
  display: flex;
  justify-content: center;
}

.footer-bt {
  border-radius: 15px;
  width: 60px;
  height: 60px;
  background-color: #0d0d0d;
  font-family: "Montserrat", sans-serif;
  font-size: medium;
  font-weight: 550;
  border: 2px solid #b4977b;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bt img {
  width: 24px;
  height: 24px;
  pointer-events: none; /* garante que o hover funcione no botão, não na imagem */
}

.footer-bt:hover {
  background-color: #b4977b;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }
}
footer {
  background-color: #000;
}

