@import url('https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300;400;500;600;700&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cormorant Unicase', sans-serif;
}

body {
    background-color: #ffffff;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
    padding: 0 4%;
    background-color: #08310d;
}

nav .menu-icon {
    cursor: pointer;
    display: none;
}

nav .logo a {
    font-size: 100px;
    font-weight: bold;
    color: #000000;
}

nav .logo {
    padding: 0 4%;
    margin-top: 2%;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    padding: 0 4%;
    height: 150px;
}

nav ul li {
    padding: 0 50px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a {
    text-decoration: none;
    font-size: 17px;
    text-transform: uppercase;
    color: #ffffff;
}

nav ul button {
    border: none;
    background-color: #a38219;
    color: #08310d;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: 1px;
    margin-left: 20px;
    cursor: pointer;
    border: 2px solid #a38219;
}

nav ul button:hover {
    background-color: #08310d;
    border: 2px solid #a38219;
}

nav ul button a {
    text-decoration: none;
    color: #ffffff;
}

/* Hover effect */
nav ul li:hover {
    transform: translateY(-3px);
}

nav ul li::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -68px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #c49b16;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

nav ul li:hover::before {
    transform: scaleY(1);
}

.select {
    color: #a38219
}

/* Estado inicial da animação */
.animate-left, .animate-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}

.animate-left {
  transform: translateX(-100px);
}

.center-h1 {
 align-items: center;
 padding: 60px 17%;
 color: #345c2c;
}

/* ===== GALERIA SIMPLES RESPONSIVA ===== */
.galeria-simples {
  width: 100%;
  padding: 60px 5%;
  background-color: #fafafa;
}

.galeria-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.galeria-item:hover img {
  transform: scale(1.05);
}

/* Texto sobreposto opcional */
.galeria-item::after {
  content: "Ver mais";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 14px;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galeria-item:hover::after {
  opacity: 1;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  transition: color 0.3s ease;
  font-weight: bold;
}

.close-lightbox:hover {
  color: #d0a46d;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsividade */
@media (max-width: 768px) {
  .galeria-simples { padding: 40px 4%; }
  .galeria-item::after { font-size: 12px; padding: 8px; }
  .close-lightbox { font-size: 28px; top: 20px; right: 25px; }
}

/* Quando visível */
.show {
  opacity: 1;
  transform: translateX(0);
}

/* Fundo dourado */
.clientes-section {
  padding: 60px 20px;
  text-align: center;
}

.clientes-section h2 {
  color: #000;
  font-size: 36px;
  margin-bottom: 10px;
}

.clientes-section p {
  color: #000;
  font-size: 18px;
  margin-bottom: 40px;
}

/* Área das logos */
.clientes-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.clientes-logos img {
  max-height: 200px;
  transition: transform 0.3s ease;
}

.clientes-logos img:hover {
  transform: scale(1.1);
}

/* Botão */
.botao-orcamento {
  margin-top: 50px;
}

.botao-orcamento a {
  height: 300px;
  background: #a38219;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.botao-orcamento a:hover {
  background: #ffc400;
}

/* Hero Section */
.hero {
  position: relative;
  height: 400px;
  width: 100%;
  background: url("../images/coffee-break-banner.jpg") no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Overlay escuro */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.55);
  z-index: -2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Título */
.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

/* Subtítulo */
.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ddd;
}

/* Botões */
.botoes {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primario {
  border: 1px solid #c1a74e;
  background: transparent;
  color: #c1a74e;
}

.btn-primario:hover {
  background: #c1a74e;
  color: #000;
}

.btn-secundario {
  border: none;
  color: #c1a74e;
  background: transparent;
}

.btn-secundario:hover {
  color: #ffffff00;
  transform: translateX(4px);
}

/* Responsivo */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .botoes {
    flex-direction: column;
  }
}

/* sobre nos */
.sobre {
  padding: 80px 10%;
  background: #fff;
}

.sobre-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.sobre-imagem img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
}

.sobre-conteudo {
  flex: 1;
}

.sobre-conteudo h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #000000;
}

.sobre-conteudo p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.btn-orcamento {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #a38219;
  border-radius: 25px;
  text-decoration: none;
  color: #a38219;
  transition: all 0.3s ease;
}

.btn-orcamento:hover {
  background: #a38219;
  color: #fff;
}

/* Main */
main {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
}

/* Reset básico */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}

.hero-conteudo {
  max-width: 900px;
  padding: 20px;
}

.hero-play {
  width: 70px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ddd;
}



/* Estatísticas */
.hero-dados {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
}

.hero-dados div {
  text-align: center;
}

.hero-dados strong {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.hero-dados span {
  font-size: 0.9rem;
  color: #c49a44; /* dourado */
}

/* Seção Sobre Nós */
.sobre-nos {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 0 0 20px 20px; /* canto arredondado embaixo */
}

.sobre-nos .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* mantém proporção da imagem */
  top: 0;
  left: 0;
  z-index: 1;
}

.sobre-nos .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* escurece a imagem */
  top: 0;
  left: 0;
  z-index: 2;
}

.sobre-nos .conteudo {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin-left: 80px;
  top: 50%;
  transform: translateY(-50%);
}

.sobre-nos h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
}

.sobre-nos p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Layout em 2 colunas */
.sobre-nos-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 10%;
}

/* Imagem */
.sobre-nos-2 .imagem {
  position: relative;
  flex: 1;
}

.sobre-nos-2 .imagem img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Selo */
.sobre-nos-2 .selo {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.85);
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}

/* Conteúdo */
.sobre-nos-2 .conteudo {
  flex: 1;
}

.sobre-nos-2 h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #000000;
}

.sobre-nos-2 p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

/* Botão */
.sobre-nos-2 .btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #a38219;
  color: #a38219;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sobre-nos-2 .btn:hover {
  background: #a38219;
  color: #fff;
}

/* Estilo do bloco de serviço principal (mantendo o padding que você já usa) */
.servico {
    padding: 60px 10%; /* Padding vertical ajustado */
    margin-bottom: 0; /* Remove margem entre blocos, usamos o padding da seção */
}

/* Container que envolve Imagem e Texto */
.servico-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px; /* Mais espaço entre os elementos */
    max-width: 1200px; /* Limita a largura para melhor leitura em telas grandes */
    margin: 0 auto; /* Centraliza o conteúdo */
}

/* Inversão da ordem dos elementos */
.servico.invertido .servico-container {
    flex-direction: row-reverse;
}

/* Área da Imagem */
.servico-img {
    flex: 0 0 500px; /* Define um tamanho fixo para a imagem (aprox.) */
    max-width: 50%; /* Limite para garantir que não ocupe demais */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Sombra mais destacada para a imagem */
    border-radius: 8px; /* Borda um pouco mais sutil */
    overflow: hidden; /* Garante que a imagem respeite o border-radius */
    transition: transform 0.3s ease;
}

.servico-img:hover {
    transform: translateY(-3px); /* Leve elevação no hover para dar vida */
}

.servico-img img {
    width: 100%;
    height: 350px; /* Altura fixa para as imagens do seu site */
    object-fit: cover;
    display: block;
}

/* Área do Texto (Catering/Coffee Break) */
.servico-texto {
    max-width: 500px; /* Define um tamanho de coluna para o texto */
}

.servico-texto h2 {
    font-family: Georgia, serif; /* Se você usar uma fonte serifada para os títulos */
    font-size: 3rem; /* Título grande, com impacto */
    margin-bottom: 25px;
    color: #345c2c; /* Título em verde escuro */
    font-weight: normal; /* Menos negrito, mais elegante */
}

.servico-texto p {
    font-size: 1.15rem; /* Texto levemente maior para melhor leitura */
    color: #555;
    line-height: 1.7; /* Espaçamento entre linhas maior */
    margin-bottom: 20px;
}

/* Estilo do Link/CTA Sutil */
.cta-link {
    display: inline-block;
    color: #e5b045; /* Destaque com o dourado/marrom claro */
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease, color 0.3s ease;
}

.cta-link:hover {
    color: #f0c978;
    border-bottom: 2px solid #f0c978; /* Sublinhado no hover */
}

/* Responsividade (Ajustes para Mobile/Telas Menores) */
@media (max-width: 992px) {
    .servico {
        padding: 40px 5%; /* Menos padding lateral em telas menores */
    }

    .servico-container {
        flex-direction: column !important; /* Imagem acima do texto em qualquer caso */
        gap: 40px;
        text-align: center; /* Centraliza o texto no mobile */
    }
    
    .servico-img, .servico-texto {
        max-width: 100%;
        flex: auto;
    }
    
    .servico-img img {
        height: 300px;
    }
    
    .servico-texto h2 {
        font-size: 2.5rem;
    }
}

.form-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-section h1 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 26px;
  text-transform: uppercase;
  color: #000000;
}

.form-orcamento {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.linha {
  display: flex;
  gap: 15px;
}

.linha input {
  flex: 1;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
}

input:focus, textarea:focus {
  border-color: #888;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

button {
  background: #d9a066;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
  transition: background 0.3s;
}

button:hover {
  background: #b97d3e;
}

p {
  font-family: Arial, Helvetica, sans-serif;
}

/* Responsividade */
@media (max-width: 768px) {
  .linha {
    flex-direction: column;
  }
}

.text-bx {
    width: 100%;
    padding: 0 4%;
}

.text-bx h1 {
    font-size: 3rem;
    text-transform: uppercase;
}

.text-bx h1 b {
    color: #000000;
}

.text-bx p {
    color: #000000;
    font-weight: 400;
    margin-top: 20px;
}

/* Inputs */
.text-bx .input-bx {
    margin: 20px 0;
    display: flex;
}

.text-bx .input-bx input {
    width: 60%;
    height: 50px;
    padding: 10px;
    border: none;
    outline: none;
    color: #000000;
    font-size: 16px;
}

.text-bx .input-bx input::placeholder {
    color: #000000;
}

.text-bx .input-bx button {
    border: none;
    background-color: #2e2e2e;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: 1px;
    margin-left: 20px;
    cursor: pointer;
}

.text-bx .input-bx button:hover {
    background-color: #a38219;;
}

/* Social */
.social-midia {
    margin-top: 30px;
}

.social-midia a {
    text-decoration: none;
}

/* Botão Play */
.play-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Popup do vídeo */
.popup-video {
  display: none; 
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.popup-content {
  margin: auto;
  background: transparent;
  position: relative;
  width: 80%;
  max-width: 900px;
  height: 500px;
}

.popup-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close {
  position: absolute;
  top: -30px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* RECAPCHA */
.g-recaptcha {
  align-items: center;
}

.social-midia i {
    font-size: 23px;
    margin: 0 3px;
    color: #ffffff;
    background-color: #a38219;;
    padding: 7px;
    border-radius: 5px;
}

.social-midia i:hover {
    background-color: #c59e1f;
}

/* Footer */
footer {
    background-color: #08310d;
    padding: 50px 0;
}

.container-footer {
    max-width: 1400px;
    padding: 0 4%;
    margin: auto;
}

.row-footer {
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
}

.footer-col ul li {
    margin: 10px 0;
    list-style: none;
}

.footer-col ul li a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #a38219;
    padding-left: 10px;
}

.footer-col .form-sub input {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    outline: none;
    border: 1px solid white;
    color: white;   
    background-color: black;
}

.footer-col .form-sub input::placeholder {
    color: white;
}

.footer-col .form-sub button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    color: #000000;
    border-radius: 3px;
    font-weight: bold;
    background-color: #ffffff;
}

.Desenvolvido,
.Desenvolvido a {
    text-decoration: none;
    color: #ffffff;
}

/* Imagens */
img {
    border-radius: 15px;
}

svg:not(root) {
    overflow: hidden;
}

.cls-1 {
    fill-rule: evenodd;
}

/* WhatsApp Fix */
.fixed-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #028916;
    fill: #ffffff;
    border: 2px solid #028916;
    border-radius: 100%;
    transition: .5s ease;
}

.wptwa-toggle {
    height: 70px;
    width: 70px;
    align-items: center;
    margin-right: 50px;
    background-color: #0dc152!important;
    color: #fff;
    display: flex;
    justify-content: center;
    white-space: nowrap;
    line-height: 100%;
    padding: 5px 5px 5px 5px;
    border-radius: 50px;
    position: fixed;
    float: center;
    margin-left: 10px;
    bottom: 60px;
    right: 40px;
    cursor: pointer;
}
/* Seção principal */
.cardapios {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
}

/* Título */
.cardapios .titulo {
  text-align: left;
  margin-bottom: 3rem;
}

.cardapios .titulo h1 {
  color: #000000;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.cardapios .titulo p {
  font-size: 1rem;
  color: #444;
}

/* Grid dos cardápios */
.grid-cardapios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card .info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #111;
  background: rgba(255,255,255,0.85);
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
}

.card .info h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Botão */
.btn {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid #a38219;
  border-radius: 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
}

.btninfo {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid #a38219;
  border-radius: 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #a38219;
  transition: 0.3s;
}

.btninfo:hover {
  background: #a38219;
  color: #fff;
}

.btn:hover {
  background: #a38219;
  color: #fff;
}

/* Experiências */
.experiencias {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.experiencias .text h2 {
  color: #000000;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.experiencias .text p {
  margin-top: 1rem;
  color: #444;
}

.experiencias .img img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Responsividade */
@media (max-width: 768px) {
  .experiencias {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .experiencias .text {
    order: 1;
  }

  .experiencias .img {
    order: 2;
  }
}
/* ===== Estilos do formulário de orçamento ===== */
#orcamento {
  padding: 80px 20px;
  text-align: center;
  background: #fafafa;
}

#orcamento h2 {
  font-size: 2rem;
  align-items: center;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
  line-height: 1.4;
}

.form-orcamento {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.form-orcamento input,
.form-orcamento select {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

.form-orcamento input:focus,
.form-orcamento select:focus {
  border-color: #d3af37;
}

/* Labels dos checkboxes */
.form-orcamento label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
}

.form-orcamento input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.1);
}

/* Botão */
.form-orcamento button {
  width: 100%;
  padding: 16px;
  margin-top: 20px;
  border: none;
  border-radius: 30px;
  background: #a38219; /* dourado escuro */
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

.form-orcamento button:hover {
  background: #d3af37; /* dourado mais claro */
  transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 600px) {
  #orcamento h2 {
    align-items: center;
    font-size: 1.5rem;
  }
}

.localizacao {
  text-align: center;
  background-color: #faf9f7;
  padding: 50px 20px;
}

.localizacao h1 {
  font-size: 2.5rem;
  color: #3b2f23; /* tom terroso elegante */
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.map-container {
  position: relative;
  width: 100%;
  height: 60vh; /* altura de tela cheia */
  border: none;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .localizacao {
    padding: 30px 10px;
  }

  .localizacao h1 {
    font-size: 1.8rem;
  }

  .map-container {
    height: 60vh;
    border-radius: 8px;
  }
}

@media(max-width:425px) {
.wptwa-toggle {padding: 16px 18px;float: right;margin-bottom: 7%;margin-right: 0}
.wptwa-text {display: none!important}}

/* Responsividade */
@media (max-width:1024px) {
    .nav {padding: 10px; font-size: 18px}
    .scroll-hint {bottom: 70px}
}

@media (max-width:600px) {
    .nav {padding: 8px; font-size: 16px}
    .scroll-hint {font-size: 13px; bottom: 60px}
    .dots {gap: 8px}
}

@media (max-width:970px) {
    nav .menu-icon {
        display: block;
        z-index: 1001; /* Ícone do menu */
        position: relative;
    }

    nav ul {
        position: fixed;
        width: 60%;
        height: 100%;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease-in;
        background-color: #203418;
        z-index: 2000; /* MENU SEMPRE NA FRENTE */
    }

    nav ul.active {
        transform: translateX(0);
        z-index: 2000; /* Garantindo que fique na frente */
    }

    nav ul li {
        padding: 10px;
    }

    nav ul li a {
        font-size: 18px;
        color: #ffffff;
    }

    nav ul button {
        background-color: #895129;
        font-size: 18px;
        margin: 10px;
    }

    main {
        flex-direction: column;
    }

    .text-bx, .img-bx {
        width: 100%;
        text-align: center;
    }

    .text-bx {
        margin-bottom: 40px;
    }

    .text-bx .input-bx {
        justify-content: center;
    }
}
/* Responsividade */
@media (max-width: 992px) {
  .servico-container {
    flex-direction: column;
    text-align: center;
  }

  .servico.invertido .servico-container {
    flex-direction: column;
  }

  .servico-img img {
    max-width: 100%;
  }

  .servico-texto {
    max-width: 100%;
  }
}
/* Responsividade */
@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-imagem img {
    max-width: 100%;
  }

  .sobre-conteudo h1 {
    font-size: 2.2rem;
  }
}