/* ========================
   RESET E VARIÁVEIS
======================== */
/* Color variables now imported from variables.css */
:root {
  --verde-escuro: var(--primary-color, #0f2e20);
  --dourado: var(--secondary-color, #d4af37);
  --dourado-escuro: #c19c30;
  --cinza-claro: var(--bg-secondary, #f5f5f5);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--verde-escuro);
  font-family: 'Montserrat';
  color: var(--cinza-claro);
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* ========================
   RESPONSIVIDADE
======================== */
.menu-toggle { display: none;}
.desktop-only { display: flex;}
.mobile-only { display: none;}


/* ========================
   HEADER (fixo)
======================== */
header {
  background-color: var(--verde-escuro);
  padding: 10px 20px;
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.header-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; max-width: 1200px; margin: 0 auto;
  box-sizing: border-box; padding: 0 20px;
}
.logo img { max-width: 120px; height: auto; margin-top: 10px; }

/* ========================
   MENU E NAVEGAÇÃO
======================== */
nav {
  flex: 1; display: flex; justify-content: center;
}
.menu {
  list-style: none; display: flex; gap: 30px;
  margin: 0; padding: 0;
}
.menu li a {
  color: var(--cinza-claro); text-decoration: none;
  font-weight: 500; font-size: 1rem;
  padding: 5px 10px; border-radius: 4px;
  transition: all 0.3s;
}
.menu li a:hover { background-color: var(--dourado); }

.btn-orcamento {
  display: inline-block; padding: 10px 20px;
  background: linear-gradient(90deg, #e7c063 0%, #f3e1b8 40%, #e5b246 100%);
  color: #000;
  border-radius: 8px; text-decoration: none; white-space: nowrap;
  transition: all 0.3s; box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.btn-orcamento:hover { background-color: var(--dourado-escuro); transform: translateY(-2px);}
.btn-orcamento:focus { outline: 2px solid #fff; outline-offset: 3px; }

.btn-language-group {
  display: flex; align-items: center; gap: 28px;
}
.language-switcher {
  display: flex; gap: 10px; align-items: center;
  margin-left: auto;
}
.language-switcher button {
  background: transparent; border: none; padding: 0; margin: 0;
  cursor: pointer;
}
.language-switcher img, .flag-icon {
  width: 24px; height: 16px;
  border-radius: 2px; object-fit: cover;
  transition: transform 0.2s ease; cursor: pointer;
}
.flag-icon:hover, .language-switcher img:hover { transform: scale(1.1); }

/* =========================================
   RESPONSIVIDADE: TABLET (até 1024px)
========================================= */
@media (max-width: 1024px) {
  .header-container {
    padding: 10px 16px;
    height: 62px;
  }
  .menu-toggle {
    display: block;
    font-size: 28px;
    background-color: var(--cinza-claro);
    color: var(--verde-escuro);
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 20px;
    transition: background-color 0.3s;
  }
  .menu-toggle:hover { background-color: #e0e0e0; }
  nav {
    position: absolute;
    top: 100%; left: 0; right: 0; width: 100%;
    background-color: var(--verde-escuro);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 0;
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.4s, transform 0.4s;
  }
  nav.show {
    display: flex;
    padding: 30px 0;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    justify-content: center;
  }
  .menu {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0;
    box-sizing: border-box;
    transform: translateX(-10px);
  }
  .menu li:last-child { margin-top: 10px; }
  .btn-orcamento {
    margin-top: 16px;
    align-self: center;
    width: fit-content;
    font-size: 1.08rem;
    padding: 10px 18px;
    display: block;
  }
  .btn-container, .desktop-only { display: none; }
  .mobile-only {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 12px;
    flex-direction: row;
  }
  .footer {
    font-size: 0.85rem;
    padding: 24px 16px;
  }
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-content a { margin: 0 6px; }
  .hero {
    margin-top: 70px;
    height: 70vh;
    min-height: 400px;
    max-height: 520px;
  }
  .hero-content h1 { font-size: clamp(2rem, 6vw, 2.7rem); }
  .hero-content p { font-size: clamp(1rem, 3.5vw, 1.15rem); }
  .ambientes { flex-direction: column; gap: 24px; padding: 40px 16px;}
}

/* Container do botão + Instagram (desktop) */
.quote-social {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Ícone Instagram (desktop) */
.instagram-link {
  font-size: 26px;
  text-shadow: 0 3px 20px #000c, 0 1px 2px #d4af3788;
  color: #d4af37;
  transition: transform 0.3s ease;
}

.instagram-link:hover {
  transform: scale(1.1);
}

/* Versão mobile */
.quote-social-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.instagram-mobile {
  text-align: center;
  margin-top: 8px;
}

.instagram-mobile .instagram-link {
  display: inline-block;
  font-size: 28px;
  color: #d4af37;
}


/* Responsividade */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .quote-social-mobile {
    display: flex;
  }
}

@media (min-width: 769px) {
  .quote-social-mobile {
    display: none;
  }
}




/* =========================================
   HERO MOBILE - 100% IMAGEM, TÍTULO GRANDE, SEM FUNDO
========================================= */
@media (max-width: 700px) {
  .hero {
    margin-top: 0 !important;
    padding: 0 !important;
    position: relative;
    width: 100vw;
    min-height: 100vh !important;
    height: 100vh !important;
    max-height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent !important;
  }
  .hero-background {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: 100vw;
    height: 100vh !important;
    background-size: cover !important;       /* melhor para imagem de fundo */
    background-position: center center !important;
    background-repeat: no-repeat;
    z-index: 0;
    transition: background-image 0.6s;
    filter: brightness(1.05) saturate(1.06) contrast(1.06);
    background-color: #132d22;
  }
  .hero-content {
    
    padding: 0 8px;
    max-width: 98vw;
    margin: 0 auto;
    border-radius: 0;
    background: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
  }
  .hero-content h1 {
    font-size: clamp(2.1rem, 7vw, 2.8rem);
    font-family: 'Montserrat';
    font-weight: 800;
    color: #ffe397;
    letter-spacing: 0.5px;
    margin-bottom: 13px;
    line-height: 1.14;
    text-shadow: 0 3px 20px #000c, 0 1px 2px #d4af3788;
    background: linear-gradient(90deg, #d4af37 0%, #fff4c1 60%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-content p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 22px;
    color: #fff;
    text-shadow: 0 2px 18px #232e2770, 0 1px 2px #000a;
    line-height: 1.17;
    max-width: 96vw;
    margin-left: auto;
    margin-right: auto;
  }
  .btn-hero {
    font-size: 1.12rem;
    padding: 15px 36px;
    border-radius: 24px;
    font-weight: 700;
    text-shadow: 0 3px 20px #000c, 0 1px 2px #d4af3788;
    background: linear-gradient(90deg, #e7c063 0%, #f3e1b8 40%, #e5b246 100%);
    color: #232e27;
    box-shadow: 0 2px 18px #111a1850;
    border: none;
    margin-top: 6px;
    transition: filter 0.2s;
  }
  .hero-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.7rem;
    top: 50%;
    border-width: 2px;
    border-radius: 50%;
    background: rgba(32,38,36,0.22);
    border: 2px solid #d4af37bb;
    color: #d4af37;
    z-index: 3;
    transition: background 0.16s;
  }
  .hero-arrow-left { left: 8px; }
  .hero-arrow-right { right: 8px; }
  .ambientes {
    background: #102e22;
    padding: 32px 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    width: 100vw;
  }
  .ambiente {
    width: 90vw;
    max-width: 420px;
    background: rgba(24, 34, 24, 0.12);
    border-radius: 18px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.13);
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .ambiente img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 3px 18px #0002;
    background: #181818;
    transition: filter 0.18s;
  }
  .ambiente h3 {
    font-size: 1.23rem;
    font-family: 'Montserrat';
    font-weight: 700;
    text-shadow: 0 3px 20px #000c, 0 1px 2px #d4af3788;
    color: #d4af37;
    letter-spacing: 0.6px;
    margin: 19px 0 18px 0;
    padding: 0 12px;
    text-align: center;
    text-shadow: 0 2px 12px #0006;
  }
  .ambiente:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.16);
  }

  .call-to-action .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* Garante centralização do texto também */
  }
  .call-to-action .btn-orcamento {
    margin: 0 auto;  /* Centraliza o botão */
    display: block;   /* Garante que o botão ocupe só o necessário */
    width: auto;      /* Para não ficar esticado */
    max-width: 90vw;  /* Evita que passe a largura em telas muito pequenas */
  }

}

/* =========================================
   MOBILE EXTRA PEQUENO (até 430px)
========================================= */
@media (max-width: 430px) {
  .hero {
    min-height: 65vw !important;
    height: 100vw !important;
    max-height: 100vw !important;
    margin-top: 0 !important;
  }
  .hero-background {
    min-height: 65vw !important;
    height: 100vw !important;
    max-height: 100vw !important;
  }
  .hero-content {
    padding: 0 2vw 8px 2vw;
    border-radius: 7px;
  }
  .hero-content h1 {
    font-size: 1.34rem;
    margin-bottom: 3px;
  }
  .btn-hero {
    padding: 9px 16px;
    font-size: 0.97rem;
  }
  .hero-arrow {
    width: 24px;
    height: 24px;
  }
}


/* ========================
   FOOTER
======================== */
.footer {
  background-color: var(--verde-escuro); color: #aaa;
  padding: 30px 20px; text-align: center; font-size: 0.9rem;
  margin-top: 60px; border-top: 1px solid #1a4732;
}
.footer-content a {
  color: #e7c063; text-decoration: none; margin: 0 8px;
  transition: color 0.3s;
}
.footer-content a:hover { text-decoration: underline; color: #fff; }



/* ========================
   HERO SECTION
======================== */
.hero {
  position: relative;
  width: 100vw;
  min-height: 88vh;
  height: 88vh;
  max-height: 950px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 90px;
  background: #17291b; /* Garante que as barras laterais/verticais fiquem bonitas */
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;        /* Preenche toda a área, sem esticar */
  background-position: center;   /* Centraliza sempre */
  background-repeat: no-repeat;
  background-attachment: fixed;  /* Opcional: efeito parallax */
  filter: brightness(1.07) saturate(1.12) contrast(1.09);
  z-index: 0;
  transition: opacity 0.8s;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, rgba(15,46,32,0.29) 0%,
    rgba(15,46,32,0.08) 40%,
    rgba(15,46,32,0.11) 60%,
    rgba(15,46,32,0.28) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 40px 24px;
  max-width: 680px;
  margin: 0 auto;
  border-radius: 22px;
  background: rgba(20, 24, 34, 0.17);
  backdrop-filter: blur(3px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  transition: opacity 0.6s, background 0.3s;
}

.hero-content h1 {
  font-family: 'Montserrat';
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow:
    0 4px 24px rgba(0,0,0,0.25),
    0 1px 1px rgba(0,0,0,0.13);
  background: linear-gradient(90deg, #e7c063 0%, #f3e1b8 40%, #e5b246 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: clamp(1.17rem, 2.5vw, 1.7rem);
  font-family: 'Montserrat';
  margin-bottom: 36px;
  font-weight: 400;
  text-shadow: 0 1px 14px rgba(0,0,0,0.20);
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(90deg, #e7c063 0%, #f3e1b8 40%, #e5b246 100%);
  color: #222;
  font-size: 1.18rem;
  font-family: 'Montserrat';
  font-weight: 600;
  padding: 16px 44px;
  border: none;
  border-radius: 44px;
  box-shadow: 0 4px 28px rgba(50,50,10,0.13);
  transition: background 0.18s, color 0.18s, transform 0.18s;
  cursor: pointer;
  text-decoration: none;
}

.btn-hero:hover {
  background: #b88c26;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}



@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px);}
  to   { opacity: 1; transform: translateY(0);}
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,46,32,0.85); /* Verde escuro semi-transparente */
  border: 2.5px solid #fff;
  color: #fff;
  font-size: 2.1rem;
  padding: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.17);
  transition: background 0.23s, color 0.2s, border 0.2s, transform 0.15s;
  outline: none;
}

.hero-arrow-left  { left: 32px; }
.hero-arrow-right { right: 32px; }

.hero-arrow svg,
.hero-arrow i {
  pointer-events: none;
  font-size: 2.1rem;
}

.hero-arrow:hover {
  background: #d4af37;
  color: #0f2e20;
  border: 2.5px solid #d4af37;
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow:active {
  background: #d4af37;
  color: #0f2e20;
  border: 2.5px solid #d4af37;
  /* Efeito de clique: levemente menor */
  transform: translateY(-50%) scale(0.98);
}


/* Seta mais fina para SVG/IonIcons/font-awesome */
.hero-arrow svg,
.hero-arrow i {
  stroke-width: 2.5;
}

/* Mobile: reduz tamanho das setas */
@media (max-width: 600px) {
  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    top: 50%; /* Garante centralização vertical */
    left: auto;
    right: auto;
  }
  .hero-arrow-left { left: 8px; }
  .hero-arrow-right { right: 8px; }
  .hero-content {
    margin-top: 75px;
    padding: 0 16px;
    z-index: 2;
    max-width: 96vw;
  }
}


/* ========================
   SEÇÃO SOBRE E AMBIENTES
======================== */
.about-video-row {
  background: #0f2e20;
  padding: 70px 4vw;
  display: flex;
  flex-direction: row; 
  justify-content: center;
  align-items: center;
  gap: 56px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-video-row .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 56px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  background: transparent; /* Garante que não interfira nas outras containers */
}


.about-content {
  flex: 1 1 340px;
  min-width: 280px;
  color: #fff;
  max-width: 520px;
}
.about-content h2 {
  font-size: 2rem;
  color: #e7c063;
  margin-bottom: 18px;
  font-weight: 700;
}
.about-content p {
  font-size: 1.11rem;
  line-height: 1.7;
  margin-bottom: 26px;
}
.about-content .btn-hero {
  background: linear-gradient(90deg, #e7c063 0%, #f3e1b8 40%, #e5b246 100%);
  color: #000;
  border-radius: 36px;
  padding: 12px 36px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.17s, color 0.17s;
  box-shadow: 0 3px 18px #0002;
  display: inline-block;
}
.about-content .btn-hero:hover {
  background: #b89c2e;
  color: #fff;
}

.about-video-box {
  flex: 1 1 320px;
  max-width: 390px;
  min-width: 240px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.about-video-box video {
  width: 100%;
  max-width: 350px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.20);
  border: 2.5px solid #22362a;
  background: #111;
}

/* MOBILE - Empilha conteúdo */
@media (max-width: 900px) {
  .about-video-row {
    flex-direction: column;
    gap: 32px;
    padding: 48px 6vw;
  }
  .about-content, .about-video-box { 
    max-width: 100%;
    min-width: unset;
  }
  .about-video-box video { 
    max-width: 95vw; 
  }
}

/* ========= AMBIENTES ========= */
.ambientes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
  background: #102e22;
  padding: 70px 30px 60px 30px;
}
.ambiente-card {
  background: none;
  border-radius: 18px;
  box-shadow: none;
  overflow: hidden;
  max-width: 340px;
  flex: 1 1 300px;
  min-width: 270px;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ambiente-img {
  width: 100%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.12);
  background: #23372d;
  transition: box-shadow 0.18s;
}
.ambiente-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  transition: transform 0.18s, filter 0.2s;
}
.ambiente-img:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1.1);
}
.ambiente-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 18px 0 14px 0;
  background: linear-gradient(0deg, #0f2e20 85%, rgba(20,20,20,0.04) 100%);
  color: #e7c063;
  font-size: 1.20rem;
  font-family: 'Montserrat';
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.01em;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 -3px 12px #0003;
  text-shadow: 0 3px 15px #0007;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
  pointer-events: none;
}
.ambiente-img:hover .ambiente-title {
  background: linear-gradient(0deg, #d4af37 80%, rgba(20,20,20,0.07) 100%);
  color: #222;
}
@media (max-width: 1000px) {
  .ambientes { flex-direction: column; align-items: center; gap: 32px; }
  .ambiente-card { max-width: 95vw; }
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
  background: #102e22;
  color: #fff;
  padding: 80px 16px 60px 16px;
  text-align: center;
}
.benefits-section h2 {
  font-size: 2.2rem;
  color: #e7c063;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
}
.benefit-card {
  background: #1c3d2e;
  border-radius: 18px;
  padding: 38px 30px;
  max-width: 320px;
  min-width: 220px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.11);
  border-bottom: 4px solid var(--dourado);
  transition: transform 0.18s, box-shadow 0.18s, border-bottom 0.18s;
  text-align: left;
  position: relative;
}
.benefit-card h3 {
  color: #e7c063;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 1.08rem;
  color: #e7e7e7;
  line-height: 1.65;
}
.benefit-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 14px 34px rgba(212,175,55,0.07);
  border-bottom: 4px solid #ffe599;
}

/* ========== PROCESS SECTION ========== */
.process-section {
  background: #12251b;
  color: #fff;
  padding: 80px 16px 60px 16px;
  text-align: center;
}
.process-title {
  font-size: 2.1rem;
  color: #e7c063;
  font-weight: 700;
  margin-bottom: 38px;
}
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
  margin-top: 10px;
}
.step {
  background: #183629;
  border-radius: 18px;
  padding: 36px 26px 30px 26px;
  max-width: 235px;
  min-width: 180px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.11);
  position: relative;
  transition: box-shadow 0.19s, transform 0.18s;
  text-align: left;
}
.step-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg,#ffe395,#d4af37 60%);
  color: #232e20;
  font-size: 1.6rem;
  font-family: 'Montserrat';
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 3px 15px #d4af3736;
  margin-bottom: 18px;
  margin-left: -4px;
  border: 2px solid #fff3;
}
.step-content h3 {
  color: #e7c063;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.step-content p {
  color: #e7e7e7;
  font-size: 1rem;
  line-height: 1.56;
}
.step:hover {
  box-shadow: 0 14px 40px rgba(212,175,55,0.13);
  transform: translateY(-7px) scale(1.05);
}

/* ========== VALUES SECTION ========== */
.values-section {
  background: #0f2e20;
  color: #fff;
  padding: 80px 16px 60px 16px;
  text-align: center;
}
.values-title {
  font-size: 2rem;
  color: #e7c063;
  margin-bottom: 36px;
  font-weight: 700;
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.value-card {
  background: #193829;
  border-radius: 16px;
  padding: 34px 24px 26px 24px;
  min-width: 180px;
  max-width: 235px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.10);
  border-left: 4px solid var(--dourado);
  transition: box-shadow 0.18s, border-left 0.18s, transform 0.17s;
  text-align: left;
}
.value-card h3 {
  color: #e7c063;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.value-card p {
  color: #f5e6bb;
  font-size: 1.03rem;
  line-height: 1.5;
}
.value-card:hover {
  box-shadow: 0 12px 34px #d4af3716;
  border-left: 4px solid #ffe599;
  transform: translateY(-6px) scale(1.045);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  background: #182b21;
  color: #fff;
  padding: 80px 16px 60px 16px;
  text-align: center;
}
.testimonial-title {
  font-size: 2.05rem;
  color: #e7c063;
  margin-bottom: 38px;
  font-weight: 700;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
}
.testimonial-card {
  background: #22362a;
  border-radius: 14px;
  max-width: 340px;
  min-width: 230px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  padding: 32px 24px 28px 24px;
  font-family: 'Montserrat';
  position: relative;
  border-left: 4px solid var(--dourado);
  text-align: left;
  transition: box-shadow 0.18s, border-left 0.18s, transform 0.17s;
}
.testimonial-card:before {
  content: "“";
  font-size: 2.5rem;
  color: var(--dourado);
  position: absolute;
  left: 17px;
  top: 8px;
  font-style: normal;
  opacity: 0.8;
}
.testimonial-card .client {
  display: block;
  margin-top: 24px;
  color: #f5c97c;
  font-weight: 600;
  font-size: 1rem;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 16px 40px #d4af3713;
  border-left: 4px solid #ffe599;
  transform: translateY(-7px) scale(1.045);
}

/* ==== RESPONSIVE LAYOUT ==== */
@media (max-width: 1100px) {
  .benefits-grid, .process-steps, .values-grid, .testimonials-grid {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
}
section, .wave-divider {
  position: relative;
  z-index: 1;
}
.wave-divider,
.wave-divider svg {
  background: none;
  pointer-events: none;
}


/* ========================
   FAQ
======================== */
.faq-section {
  background: var(--verde-intermediario); padding: 70px 0 64px 0;
}
.faq-title {
  color: #e7c063; font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 40px;
}
.faq-list {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px;
}
.faq-item {
  background: #143126;
  border-radius: 14px; box-shadow: 0 1px 8px #0001;
  overflow: hidden; transition: box-shadow 0.18s;
}
.faq-question {
  background: none; border: none; outline: none; width: 100%; text-align: left;
  color: #e7c063; font-weight: 700; font-size: 1.11rem; padding: 22px 28px;
  cursor: pointer; transition: background 0.15s, color 0.14s;
}
.faq-answer {
  display: none; padding: 0 28px 20px 28px; color: #f9f9f9; font-size: 1.01rem;
  animation: fadeInFAQ 0.26s;
}
.faq-item.open .faq-answer { display: block; }
@keyframes fadeInFAQ { from { opacity: 0; transform: translateY(18px);} to { opacity: 1; transform: translateY(0);} }

/* ========================
   CALL-TO-ACTION (extra)
======================== */
.cta-extra {
  background: var(--verde-claro); padding: 60px 0 52px 0;
  text-align: center;
}
.cta-extra h2 {  color: #e7c063; font-size: 2.2rem; font-weight: 800; margin-bottom: 22px;}
.cta-extra p { font-size: 1.15rem; margin-bottom: 34px;}
.cta-extra .btn-hero { font-size: 1.13rem; }

.call-to-action {
  background: var(--verde-intermediario); padding: 54px 0;
  text-align: center;
}
.call-to-action h2 { color: #e7c063; font-size: 2rem; font-weight: 800; margin-bottom: 22px;}
.call-to-action .btn-orcamento { font-size: 1.13rem; padding: 16px 40px; }
