/* Garante que não haja linha lateral por causa de background ou margin */
html, body {
  width: 100%;
  min-width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #fff; /* ou a cor de fundo desejada */
}

/* Remove possíveis linhas laterais de sections */
section {
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: transparent; /* ou a cor desejada */
}

/* Se houver um container escuro de fundo, ajuste para cobrir toda a tela */
body > div,
body > section,
body > .container {
  width: 100vw;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Se o problema for causado por um background-color lateral, ajuste aqui */
body {
  background: #fff; /* ou a cor de fundo principal do site */
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background: #18293B; /* Ou #222, ou #111, ou transparente, para não aparecer branco entre as seções */
    color: #333;
    text-align: center; /* Centralize text within the body */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    text-align: center; /* Centralize text within the container */
}

/* Style for the header section */
header {
    background: #35424a;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
    text-align: center; /* Centralize text within the header */
}

/* Style for the navigation bar */
nav {
    background: #35424a;
    color: #fff;
    text-align: center; /* Centralize text within the nav */
}

nav ul {
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
    padding: 0 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    color: #e8491d;
}

/* Style for the main content area */
main {
    padding: 20px;
    text-align: center;
}

/* Style for the hero section */
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: url('img/header.jpg') top center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Alinha à esquerda */
   min-height: 105vh
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, rgba(24,41,59,0.97) 0%, rgba(24,41,59,0.0) 150%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left; /* Alinha texto à esquerda */
  max-width: 700px;
  margin-left: 7vw; /* Espaço da esquerda */
  padding: 40px 20px;
}

.hero-content .logo {
  width: 230px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5em;
  margin-bottom: 18px;
  line-height: 1.1;
  text-align: left; /* Garante alinhamento à esquerda */
}

.hero-content .highlight {
  color: #B6A16A;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 28px;
  text-align: left; /* Garante alinhamento à esquerda */
}

/* Style for the call-to-action button */
.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #43a047;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.cta-button {
  background: #B6A16A;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 14px 36px;
  font-size: 1.6em;
  font-family: 'Coolvetica', sans-serif;
  cursor: pointer;
  transition: background 0.3s;
  text-align: left;
}

/* Garante que todos os .cta-button tenham aparência de link/cursor */
.cta-button {
  cursor: pointer;
}

/* Opcional: animação de foco para acessibilidade */
.cta-button:focus {
  outline: 2px solid #B6A16A;
  outline-offset: 2px;
}

.cta-button:hover {
  background: #DDC899;
}

/* Style for the section elements */
section {
    padding: 40px 20px;
    background: transparent;
    border: none;
    margin: 0;
}

/* Remover padding/margin das seções com imagem de fundo para evitar barra entre elas */
.vantagens-section,
#contato {
    padding: 160px 0;
    min-height: 100vh;
    margin: 0;
    background: none;
    border-bottom: 2px solid #B6A16A;
    
}

/* Remove margin-top do #contato para colar no valores-section */
#contato {
  position: relative;
  width: 100%;
  background: url('img/contato.jpg') center center/cover no-repeat;
  padding: 100px 0; /* reduzido de 180px */
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
   min-height: 90vh
}

#contato::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(225deg, rgba(24,41,59,0.97) 0%, rgba(24,41,59,0.0) 150%);
  z-index: 1;
  pointer-events: none;
}

#contato .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

#contato .section-title h2 {
  color: #fff;
  font-size: 4.3em;
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#contato .subcaption-cta {
  color: #eee;
  font-size: 1.7em;
  margin-bottom: 32px;
  line-height: 1.6;
}

#contato .cta-button {
  background-color: #B6A16A;
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contato .cta-button:hover {
  background-color: #9c884d;
}
/* Style for the valores section */
.vantagens-section {
  position: relative;
  width: 100%;
  background: url('img/valores.jpg') top center/cover no-repeat;
  padding: 160px 0;
  min-height: 90vh;
  border-top: 2px solid #B6A16A;
}

.vantagens-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, rgba(24,41,59,0.97) 0%, rgba(24,41,59,0.0) 150%);
  z-index: 1;
}

.vantagens-container {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: right;
}

.vantagens-title h3 {
  color: #fff;
  margin-bottom: 40px;
  text-align: right;
  font-size: 2.5em;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.2;
}

.vantagem-container {
  background: transparent;
  margin-bottom: 20px;
  text-align: right;
}

.vantagem-text {
  color: #fff;
  font-size: 1.5em;
  text-align: right;
}

.vantagens-section .cta-section {
  text-align: right;
}

.vantagens-section .subcaption-cta {
  text-align: right;
  color: #fff;
  font-size: 1.3em;
}

/* Style for the footer */
footer {
    background: #35424a;
    color: #fff;
    text-align: center;
    padding: 36px 20px 24px 20px;
    margin-top: 0;
    font-family: 'Lato', sans-serif;
    position: relative;
    border-top: 2px solid #B6A16A;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.footer-logo {
    width: 230px;
    max-width: 130%;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
    border-radius: 10px;
}

footer p {
    color: #eee;
    font-size: 1.08em;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

footer .website {
    color: #B6A16A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

footer .website:hover {
    color: #fff;
    text-decoration: underline;
}

footer .copyright {
    margin-top: 10px;
    font-size: 0.98em;
    color: #B6A16A;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.top-menu {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: transparent !important; /* Garante fundo transparente */
  padding: 18px 0 0 0;
  text-align: center;
}

.top-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent !important; /* Garante fundo transparente */
}

.top-menu li {
  display: inline-block;
  margin: 0 15px;
}

.top-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.top-menu a:hover {
  color: #e8491d;
}

/* Estilo para o menu discreto no topo, igual ao da imagem */
.top-menu-inside {
  width: 100%;
  margin-bottom: 70px;
  text-align: left;
  background: transparent;
}

.top-menu-inside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 32px;
  background: transparent;
}

.top-menu-inside li {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  background: transparent;
}

.top-menu-inside li:first-child {
  flex: 0.5;
}

.top-menu-inside a {
  color: #fff;
  text-decoration: none;
  font-size: 1.08em;
  opacity: 0.95;
  font-family: 'Bebas Neue', 'Lato', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  padding: 8px 0;
}

.top-menu-inside li:first-child a {
  text-align: left;
}

/* Traço separador entre itens */
.top-menu-inside li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  height: 18px;
  width: 1.5px;
  background-color: rgba(255,255,255,0.5);
}

.emocional {
  position: relative;
  width: 100vw;
  margin: 0;
  background: url('img/emocional.jpg') center bottom/cover no-repeat;
  padding: 200px 0 180px 0;
  min-height: 90vh;
  overflow: hidden;
  border-top: 2px solid #B6A16A;
  border-bottom: 2px solid #B6A16A;
}

.emocional::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom left, rgba(24,41,59,0.97) 0%, rgba(24,41,59,0.7) 55%, rgba(24,41,59,0.0) 95%);
  z-index: 1;
  pointer-events: none;
}
.emocional-content {
  display: flex;
  align-items: center; /* alinhamento vertical centralizado */
  justify-content: space-between;
  gap: 64px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 7vw;
}
.emocional .cta-button {
  background-color: #B6A16A;
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-size: 1.1em;
  font-weight: bold;
  align-items: center;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.emocional-img-container {
  flex: 0 0 420px; /* aumentado */
  max-width: 420px; /* aumentado */
  background: rgba(24,41,59,0.10);
  border-radius: 24px 48px 24px 48px;
  box-shadow: 0 8px 32px rgba(24,41,59,0.10), 0 1.5px 0 #B6A16A inset;
  padding: 18px;
  border-left: 4px solid #B6A16A;
  border-top: 2px solid #B6A16A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emocional-img {
  width: 100%;
  max-width: 400px; /* aumentado */
  border-radius: 16px 36px 16px 36px;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(24,41,59,0.13), 0 1.5px 0 #B6A16A inset;
  background: #fff;
  border: 2px solid #fff;
}
.emocional-text-container {
  flex: 1;
  color: #fff;
  text-align: left ;
  padding: 30px 0;
}

.section-title-emocional {
  color: #fff;
  font-size: 4em;
  font-family: 'Bebas Neue', 'Coolvetica', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 2.5px;
  margin-bottom: 38px;
  line-height: 1.02;
  text-shadow: 0 2px 16px rgba(24,41,59,0.25);
  text-align: center;
  text-transform: uppercase;
}
.emocional-text ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 1.25em;
  line-height: 1.7;
  font-weight: 500;
  text-align: left;
  color: #fff;
}

.emocional-text ul li {
  margin-bottom: 14px;
  padding-right: 28px;
  position: relative;
  text-align: left;
  line-height: 1.6;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: keep-all; /* evita quebra entre palavras comuns */
}

.emocional-text ul li::after {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
  color: #B6A16A;
  font-size: 1.3em;
  line-height: 1;
}
.emocional-text h4 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 16px;
  color: #fff;
  text-align: left;
}

/* BEFORE-AFTER: texto branco, título grande e destacado */
.before-after .container {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff; /* texto branco */
}

.before-after .section-title h2 {
  color: #fff;
  font-size: 2.8em;
  font-family: 'Coolvetica', 'Bebas Neue', sans-serif;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(24,41,59,0.25);
}

/* EMOCIONAL: título grande e destacado */
.section-title-emocional {
  color: #fff;
  font-size: 4em;
  font-family: 'Bebas Neue', 'Coolvetica', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 2.5px;
  margin-bottom: 38px;
  line-height: 1.02;
  text-shadow: 0 2px 16px rgba(24,41,59,0.25);
  text-align: left;
  text-transform: uppercase;
}

.emocional-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start; /* imagem e texto alinhados à esquerda */
  gap: 120px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-left: 7vw; /* imagem bem à esquerda */
  margin-right: auto;
  padding-right: 0;
}

.depoimentos {
  position: relative;
  width: 100%;
  background: url('img/depoimentos.jpg') center center/cover no-repeat;
  padding: 120px 0;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #B6A16A;
}

.depoimentos::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, rgba(24,41,59,0.97) 0%, rgba(24,41,59,0.0) 150%);
  z-index: 1;
  pointer-events: none;
}

.depoimentos-container {
  position: relative;
  z-index: 2;
  max-width: 1400px; /* antes: 900px */
  margin: 0 auto;
  padding: 0 10px;   /* antes: 0 20px */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.depoimentos p {
  color: #fff;
  font-size: 1.18em;
  font-family: 'Open Sans', 'Lato', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.6;

  margin-bottom: 0;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(24,41,59,0.13);
}
.depoimentos .subcaption-cta {
  color: #eee;
  font-size: 1.2em;
  margin-bottom: 32px;
  line-height: 1.6;
}

.section-title-depoimentos {
  color: #fff;
  font-size: 4em;
  margin-bottom: 60px;
  font-family: 'Bebas Neue', 'Coolvetica', Arial, sans-serif;
  text-align: center;
}

.carousel-wrapper {
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 32px;
  scrollbar-width: none; /* esconde no Firefox */
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  background: linear-gradient(120deg, rgba(182,161,106,0.13) 0%, rgba(24,41,59,0.92) 100%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(182,161,106,0.25), 0 1.5px 0 #B6A16A inset;
  margin: 0 auto 36px auto;
  position: relative;
  padding: 24px 32px; /* antes: 24px */
  -ms-overflow-style: none;
}
.carousel-wrapper::-webkit-scrollbar {
  display: none; /* esconde no Chrome */
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(182,161,106,0.45) 0%, rgba(182,161,106,0.15) 100%);
  border-radius: 2px;
  z-index: 2;
}

.carousel-wrapper::before {
  top: 12px;
}

.carousel-wrapper::after {
  bottom: 12px;
}

.carousel-track {
  display: flex;
  gap: 32px;
  padding: 20px;
  /* scroll-snap-align: center; Remova o scroll-snap-type */
  scroll-behavior: smooth;
  width: max-content;
  cursor: grab; /* Altere o cursor */
}

.depoimento-card {
  min-height: 480px; /* mais alto para acomodar foto maior */
  font-size: 1.22em; /* maior */
  padding: 56px 36px 48px 36px; /* mais espaçamento */
  background: linear-gradient(135deg, rgba(24,41,59,0.98) 60%, rgba(182,161,106,0.10) 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(182,161,106,0.18), 0 2px 0 #B6A16A inset;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  max-width: 370px;
  width: 100%;
  text-align: r;
  word-break: break-word;
  white-space: normal; /* Garante quebra de linha automática */
  transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s;
  border: 1.5px solid rgba(182,161,106,0.18);
}

.depoimento-card:hover {
  transform: scale(1.045) translateY(-6px);
  box-shadow: 0 16px 48px rgba(182,161,106,0.22), 0 2px 0 #B6A16A inset;
}

.depoimento-texto {
  color: #fff !important;
  font-size: 1.18em;
  font-family: 'Open Sans', 'Lato', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 38px; /* separa do nome */
  margin-bottom: 0;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(24,41,59,0.13);
  word-break: break-word; /* Força quebra de palavra se necessário */
  white-space: normal;    /* Permite quebra de linha automática */
}

.cliente-nome {
  color: #B6A16A !important;
  font-weight: bold;
  font-size: 1.08em;
  margin-top: 0;
  margin-bottom: 18px;
  display: block;
  width: 100%;
  letter-spacing: 0.5px;
  text-align: center;
  padding-bottom: 0;
}

.cliente-local {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.98em;
  margin-bottom: 0;
  margin-top: 0;
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: 0.2px;
}

.depoimento-card > div:not(.cliente-foto-container) {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  flex: 1;
}

.cliente-foto-container {
  width: 170px;
  height: 210px;
  margin: 0 auto 32px auto;
  overflow: hidden;
  border-radius: 24px;
  border: 2.5px solid #B6A16A;
  box-shadow: 0 6px 24px rgba(182,161,106,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cliente-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Linha dourada para separação de seções */
.section-divider-gold {
  width: 100vw;
  height: 5px;
  background: linear-gradient(90deg, #B6A16A 0%, #fff0 100%);
  border: none;
  margin: 0 auto 0 auto;
  padding: 0;
  display: block;
  box-shadow: 0 2px 8px rgba(182,161,106,0.18);
}

/* SERVIÇOS */
.servicos {
  background: url('img/servicos.jpg') top center/cover no-repeat;
  padding: 80px 0 60px 0;
  border-top: 2px solid #B6A16A;
  border-bottom: 2px solid #B6A16A;
}

/* Título destacado para a seção de serviços */
.servicos .section-title h2 {
  font-family: 'Bebas Neue', 'Coolvetica', Arial, sans-serif;
  font-size: 3.2em;
  color: #B6A16A;
  font-weight: 900;
  letter-spacing: 2.5px;
  margin-bottom: 48px;
  line-height: 1.1;
  text-align: center;
  
  text-transform: uppercase;
  background: linear-gradient(90deg, #B6A16A 30%, #fff0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.servico-item {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.servico-item.reverse {
  flex-direction: row-reverse;
}

.step-number {
  display: inline-block;
  background-color: #B6A16A;
  color: #18293B;
  font-size: 1.1em;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  margin-right: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}



.servico-img {
  flex: 0 0 200px;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: block;
}

.servico-text-wrapper {
  flex: 1 1 0;
  display: flex;
  align-items: center;
}

.servico-text {
  width: 100%;
}

.servico-text h3 {
  font-family: 'Bebas Neue', 'Lato', Arial, sans-serif;
  font-size: 2.7em;
  color: #B6A16A;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  text-align: left;
}

.servico-text p {
  font-size: 1.65em;
  color: #fff;
  margin: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .before-after-container {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .image-block {
    max-width: 95vw;
    width: 100%;
    padding: 18px 8px 12px 8px;
  }
  .image-block img {
    height: 140px;
  }

  .servico-item,
  .servico-item.reverse {
    flex-direction: column !important;
    gap: 18px;
    align-items: center;
    text-align: center;
  }
  .servico-img {
    max-width: 80vw;
  }
  .servico-img img {
    height: 120px;
  }
  .servico-text h3,
  .servico-text p {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .emocional-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 32px;
    padding: 0 20px;
  }

  .emocional-text-container {
    text-align: center;
  }

  .section-title-emocional {
    text-align: center;
  }

  .emocional-text ul, .emocional-text ul li {
    text-align: center;
    padding-right: 0;
  }

  .emocional-text ul li::after {
    display: none;
  }
 
}

/* BEFORE-AFTER */
.before-after-container {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.image-block {
  flex: 0 0 300px;
  max-width: 300px;
  background: linear-gradient(135deg, #fff 60%, #B6A16A 100%);
  border-radius: 28px 48px 28px 48px;
  box-shadow: 0 8px 32px rgba(182,161,106,0.13), 0 2px 0 #B6A16A inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 18px 24px 18px;
  margin: 0 18px;
  border: 2.5px solid #B6A16A;
  transition: box-shadow 0.2s, transform 0.2s;
}

.image-block:hover {
  box-shadow: 0 16px 48px rgba(182,161,106,0.22), 0 2px 0 #B6A16A inset;
  transform: translateY(-6px) scale(1.04);
}

.image-block img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  background: #f8f8f8;
  border: none;
  display: block;
  box-shadow: 0 2px 12px rgba(24,41,59,0.10);
}

.image-block .caption {
  color: #B6A16A;
  font-family: 'Bebas Neue', 'Lato', Arial, sans-serif;
  font-size: 1.22em;
  font-weight: 700;
  text-align: center;
  margin: 0;
  letter-spacing: 1px;
}

.before-after .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.before-after .section-title h2 {
  color: #fff;
  font-size: 2.8em;
  font-family: 'Coolvetica', 'Bebas Neue', sans-serif;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(24,41,59,0.25);
  text-align: center;
}

.before-after {
  background: linear-gradient(120deg, #18293B 70%, #B6A16A 100%);
  background: url('img/servicos.jpg') center center/cover no-repeat;
}