/* ============================================
   MASTER MÓVEIS — DESIGN SYSTEM
   Fonts carregadas via <link> no HTML (non-blocking)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --cinza-claro: #C5C2BA;
  --bege: #C4A97D;
  --marrom: #A07750;
  --marrom-escuro: #5C3D24;
  --verde-oliva: #63614A;
  --preto: #1a1612;
  --branco: #FAF8F5;
  --branco-puro: #ffffff;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glow-bege: 0 0 30px rgba(196, 169, 125, 0.3);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--preto);
  color: var(--branco);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
  height: auto;
  content-visibility: auto;
}

/* Performance: Lazy rendering para seções abaixo do fold */
.projetos, .servicos, .sobre, .processo, .contato, .footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* Acessibilidade: Respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 22, 18, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 0.6rem 4%;
}

.navbar__logo img {
  height: 70px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .navbar__logo img {
  height: 55px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--branco);
  position: relative;
  transition: var(--transition);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bege);
  transition: var(--transition);
}

.navbar__links a:hover {
  color: var(--bege);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  background: linear-gradient(135deg, var(--marrom), var(--bege));
  color: var(--branco-puro) !important;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(160, 119, 80, 0.3);
}

.navbar__cta::after {
  display: none !important;
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-bege);
  color: var(--branco-puro) !important;
}

/* Instagram */
.navbar__instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff !important;
  box-shadow: 0 3px 12px rgba(225, 48, 108, 0.3);
  transition: var(--transition);
  flex-shrink: 0;
}

.navbar__instagram::after {
  display: none !important;
}

.navbar__instagram:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
  color: #fff !important;
}

/* Navbar Dropdown */
.navbar__dropdown {
  position: relative;
  display: inline-block;
}

.navbar__dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.navbar__dropdown-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
  color: inherit;
  stroke-width: 3px;
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(26, 22, 18, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 169, 125, 0.2);
  border-radius: 12px;
  padding: 0.8rem 0;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.navbar__dropdown-menu a {
  display: block !important;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.82rem !important;
  color: rgba(250, 248, 245, 0.7) !important;
  text-align: left;
  transition: all 0.3s ease;
  border: none !important;
  text-transform: uppercase;
}

.navbar__dropdown-menu a::after {
  display: none !important;
}

.navbar__dropdown-menu a:hover,
.navbar__dropdown-menu a.active {
  color: var(--bege) !important;
  background: rgba(196, 169, 125, 0.08);
  padding-left: 1.8rem !important;
}

/* Hover no Dropdown (Desktop) */
@media (min-width: 992px) {
  .navbar__dropdown:hover .navbar__dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
  .navbar__dropdown:hover .navbar__dropdown-toggle svg {
    transform: rotate(180deg);
  }
}

/* Mobile Dropdown */
@media (max-width: 991px) {
  .navbar__dropdown-menu {
    position: static;
    transform: none !important;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-left: 2px solid rgba(196, 169, 125, 0.2);
    border-radius: 0;
    padding: 0;
    margin: 0.5rem 0 0.5rem 1rem;
    display: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
  }
  .navbar__dropdown.open .navbar__dropdown-menu {
    display: block;
  }
  .navbar__dropdown.open .navbar__dropdown-toggle svg {
    transform: rotate(180deg);
  }
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.navbar__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* --- Slideshow Background --- */
.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: none;
}

.hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85; /* Deixa o fundo levemente mais transparente/escuro */
}

/* Transição: Ken Burns + Clip-path reveal */
.hero__slide.active {
  opacity: 1;
  z-index: 2;
  animation: heroSlideIn 1.4s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero__slide.active img {
  animation: kenBurns 8s ease-out forwards;
}

.hero__slide.exiting {
  opacity: 1;
  z-index: 1;
}

@keyframes heroSlideIn {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* Overlay escuro uniforme */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(15, 12, 10, 0.65); /* Camada mais escura na frente */
  pointer-events: none;
}

/* --- Partículas --- */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

/* --- Conteúdo Hero --- */
.hero__content {
  position: relative;
  z-index: 5;
  padding: 0 6%;
  max-width: 750px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(196, 169, 125, 0.12);
  border: 1px solid rgba(196, 169, 125, 0.25);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bege);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
}

.hero__badge.visible {
  animation: fadeInUp 0.8s ease forwards;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--bege);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* --- Título Puzzle --- */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--branco);
  margin-bottom: 1.2rem;
}

.hero__title .word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.3em;
}

.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(-80deg);
  transition: none;
}

/* Efeito de "tremer" após a entrada */
.hero__title .char.shake {
  animation: charShake 0.5s ease forwards;
}

.hero__title .char.visible {
  animation: charReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 1;
}

@keyframes charReveal {
  0% {
    opacity: 0;
    transform: translateY(100%) rotateX(-80deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-8%) rotateX(5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes charShake {
  0%, 100% { transform: translate(0, 0) rotate(0); opacity: 1; }
  15% { transform: translate(-2px, 1px) rotate(-1deg); }
  30% { transform: translate(2px, -1px) rotate(1deg); }
  45% { transform: translate(-1px, 2px) rotate(-0.5deg); }
  60% { transform: translate(1px, -2px) rotate(0.5deg); }
  75% { transform: translate(-1px, 1px) rotate(-0.3deg); }
}

.hero__title .highlight {
  color: var(--bege);
  position: relative;
}

.hero__title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--bege), var(--marrom));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
}

.hero__title .highlight.line-visible::after {
  animation: lineGrow 0.8s 0.5s ease forwards;
}

@keyframes lineGrow {
  to { transform: scaleX(1); }
}

/* --- Subheadline --- */
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.75);
  margin-bottom: 2.5rem;
  max-width: 540px;
  opacity: 0;
  transform: translateY(30px);
}

.hero__subtitle.visible {
  animation: fadeInUp 0.9s 0.4s ease forwards;
}

/* --- CTA Button --- */
.hero__cta-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero__cta-wrapper.visible {
  animation: fadeInUp 0.9s 0.7s ease forwards;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.4rem;
  background: linear-gradient(135deg, var(--marrom), var(--bege));
  color: var(--branco-puro);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(160, 119, 80, 0.35);
  z-index: 1;
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bege), var(--marrom-escuro));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  border-radius: inherit;
}

.hero__cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(196, 169, 125, 0.45);
}

.hero__cta:hover::before {
  opacity: 1;
}

.hero__cta svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.hero__cta:hover svg {
  transform: rotate(12deg) scale(1.1);
}

/* Indicador de slide */
.hero__indicators {
  position: absolute;
  bottom: 3rem;
  left: 6%;
  z-index: 5;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.hero__indicator {
  width: 32px;
  height: 3px;
  background: rgba(250, 248, 245, 0.25);
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.hero__indicator.active {
  width: 56px;
  background: rgba(250, 248, 245, 0.2);
}

.hero__indicator.active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--bege);
  border-radius: 3px;
  animation: indicatorFill 6s linear forwards;
}

@keyframes indicatorFill {
  to { width: 100%; }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 3rem;
  right: 6%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  animation: floatScroll 2.5s ease-in-out infinite;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--branco);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--bege), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes floatScroll {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 50px; }
  50% { opacity: 0.4; height: 35px; }
}

/* --- Showcase Flutuante --- */
.hero__showcase {
  position: relative;
  z-index: 5;
  margin-left: auto;
  margin-right: 10%; /* Mais centralizado à direita */
  width: clamp(400px, 45vw, 650px);
  height: clamp(400px, 45vw, 650px);
  flex-shrink: 0;
  animation: showcaseFloat 4s ease-in-out infinite;
  opacity: 0;
  pointer-events: none; /* Não bloquear cliques */
}

.hero__showcase.visible {
  animation: showcaseEntry 1s cubic-bezier(0.16, 1, 0.3, 1) forwards, showcaseFloat 4s 1s ease-in-out infinite;
}

@keyframes showcaseEntry {
  0% {
    opacity: 0;
    transform: translateX(60px) scale(0.85) rotateY(-15deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0);
  }
}

@keyframes showcaseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}

.hero__showcase-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05) translateY(20px);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__showcase-img.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 2;
}

.hero__showcase-img.exiting {
  opacity: 0;
  transform: scale(0.95) translateY(-20px);
  z-index: 1;
}

.hero__showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4));
}

/* --- Animação Geral --- */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: box-shadow 0.4s ease, filter 0.4s ease;
  animation: whatsapp3Dspin 4s linear infinite;
  transform-style: preserve-3d;
}

.whatsapp-float:hover {
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.65);
  filter: brightness(1.15);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes whatsapp3Dspin {
  0%   { transform: perspective(600px) rotateY(0deg); }
  100% { transform: perspective(600px) rotateY(360deg); }
}

/* ============================================
   SEÇÃO PROJETOS
   ============================================ */
.projetos {
  background: var(--preto);
  padding: 8rem 0;
  overflow: hidden;
  position: relative;
}

.projetos__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 0 4%;
}

.projetos__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 1.5rem;
}

.projetos__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(250, 248, 245, 0.75);
  line-height: 1.7;
}

.projetos__filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: -2rem auto 4rem;
  max-width: 900px;
  padding: 0 4%;
  position: relative;
  z-index: 10;
}

.projetos__filter-btn {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(250, 248, 245, 0.65);
  border: 1px solid rgba(250, 248, 245, 0.1);
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.03em;
  backdrop-filter: blur(5px);
}

.projetos__filter-btn:hover {
  color: var(--branco-puro);
  border-color: rgba(196, 169, 125, 0.4);
  background: rgba(196, 169, 125, 0.05);
  transform: translateY(-2px);
}

.projetos__filter-btn.active {
  background: linear-gradient(135deg, var(--marrom), var(--bege));
  color: var(--branco-puro);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(160, 119, 80, 0.3);
}

.projetos__marquee-wrapper {
  display: flex;
  flex-direction: column;
}

.projetos__marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.projetos__marquee-track {
  display: flex;
  width: max-content;
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.projetos__marquee-track.fade-out {
  opacity: 0.1;
  transform: scale(0.98);
}

.track-left {
  animation: scrollLeft 50s linear infinite;
}

.track-right {
  animation: scrollRight 50s linear infinite;
}

.projetos__marquee-track img {
  width: 25vw;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  border-radius: 8px;
  margin: 0 6px;
  transition: filter 0.3s ease;
}

@media (max-width: 991px) {
  .projetos__marquee-track img {
    width: 40vw;
  }
}

@media (max-width: 576px) {
  .projetos__filters {
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }
  .projetos__filter-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.78rem;
  }
  .projetos__marquee-track img {
    width: 65vw;
  }
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.projetos__footer {
  text-align: center;
  margin-top: 5rem;
}

.projetos__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.6rem;
  background: transparent;
  color: var(--bege);
  border: 1px solid var(--bege);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.projetos__btn:hover {
  background: var(--bege);
  color: var(--preto);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196, 169, 125, 0.2);
}

/* ============================================
   SHAPE DIVIDERS
   ============================================ */
.shape-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
}

.shape-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

.shape-divider--projetos-servicos {
  background: var(--preto);
  margin-top: -1px;
}

.shape-divider--servicos-sobre {
  background: #F0EBE3;
  margin-top: -1px;
}

.shape-divider--sobre-processo {
  background: #63614A;
  margin-top: -1px;
}

.shape-divider--processo-contato {
  background: var(--preto);
  margin-top: -1px;
}

/* ============================================
   SEÇÃO SERVIÇOS
   ============================================ */
.servicos {
  background: #F0EBE3;
  padding: 6rem 0;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.servicos__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 0 4%;
  overflow: visible;
}

/* --- Carrossel 3D Vertical --- */
.servicos__carousel-wrapper {
  position: relative;
  height: 500px;
  perspective: 1200px;
  margin-left: -8vw;
  overflow: visible;
}

.servicos__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.servicos__carousel-item {
  position: absolute;
  width: 320px;
  height: 220px;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0.4;
  filter: brightness(0.6);
}

.servicos__carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servicos__carousel-item.active {
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 20px 60px rgba(92, 61, 36, 0.3);
  z-index: 5;
}

/* Controles do carrossel */
.servicos__nav {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(196, 169, 125, 0.3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--marrom-escuro);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.servicos__nav:hover {
  background: var(--bege);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(196, 169, 125, 0.4);
}

.servicos__nav--prev {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.servicos__nav--prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.servicos__nav--next {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.servicos__nav--next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* --- Info Direita --- */
.servicos__info {
  padding: 2rem 0;
}

.servicos__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(92, 61, 36, 0.08);
  border: 1px solid rgba(92, 61, 36, 0.15);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--marrom-escuro);
  margin-bottom: 1.2rem;
}

.servicos__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--marrom);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.servicos__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--marrom-escuro);
  margin-bottom: 2rem;
}

.servicos__descriptions {
  position: relative;
  min-height: 140px;
}

.servicos__desc-item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.servicos__desc-item.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: all;
}

.servicos__desc-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--marrom);
  margin-bottom: 0.8rem;
}

.servicos__desc-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 22, 18, 0.7);
}

/* Dots */
.servicos__dots {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
}

.servicos__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(92, 61, 36, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.servicos__dot.active {
  background: var(--marrom);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   TAMBÉM FAZEMOS (dentro de serviços)
   ============================================ */
.tambem-fazemos {
  max-width: 1200px;
  margin: 5rem auto 0;
  padding: 0 4%;
}

.tambem-fazemos__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.tambem-fazemos__line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--marrom), transparent);
}

.tambem-fazemos__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--marrom-escuro);
  text-align: center;
  white-space: nowrap;
}

.tambem-fazemos__desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: rgba(26, 22, 18, 0.7);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.tambem-fazemos__desc strong {
  color: var(--marrom);
  font-weight: 600;
}

.tambem-fazemos__gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.tambem-fazemos__img-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.tambem-fazemos__img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(92, 61, 36, 0.12);
}

.tambem-fazemos__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.tambem-fazemos__img-wrapper:hover img {
  transform: scale(1.05);
}

.tambem-fazemos__img--large {
  height: 100%;
}

.tambem-fazemos__img--large img {
  height: 100%;
  min-height: 340px;
}

.tambem-fazemos__img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(to top, rgba(26, 22, 18, 0.75), transparent);
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.tambem-fazemos__img-wrapper:hover .tambem-fazemos__img-label {
  transform: translateY(0);
}

.tambem-fazemos__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.tambem-fazemos__tag {
  padding: 0.5rem 1.2rem;
  background: rgba(92, 61, 36, 0.06);
  border: 1px solid rgba(92, 61, 36, 0.15);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--marrom-escuro);
  transition: var(--transition);
}

.tambem-fazemos__tag:hover {
  background: var(--marrom);
  color: var(--branco-puro);
  border-color: var(--marrom);
  transform: translateY(-2px);
}

/* ============================================
   SEÇÃO DIFERENCIAIS
   ============================================ */
.diferenciais {
  background: var(--preto);
  padding: 6rem 4%;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

.diferenciais__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

/* Imagem */
.diferenciais__image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.diferenciais__image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.diferenciais__image-frame:hover img {
  transform: scale(1.03);
}

.diferenciais__image-glow {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(196, 169, 125, 0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Badge */
.diferenciais__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(196, 169, 125, 0.12);
  border: 1px solid rgba(196, 169, 125, 0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bege);
  margin-bottom: 1.2rem;
}

.diferenciais__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--bege);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.diferenciais__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.diferenciais__title span {
  color: var(--bege);
}

.diferenciais__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(250, 248, 245, 0.75);
  margin-bottom: 2rem;
}

.diferenciais__text strong {
  color: var(--bege);
  font-weight: 600;
}

/* Items */
.diferenciais__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.diferenciais__item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 169, 125, 0.1);
  border-radius: 14px;
  transition: var(--transition);
}

.diferenciais__item:hover {
  background: rgba(196, 169, 125, 0.08);
  border-color: rgba(196, 169, 125, 0.25);
  transform: translateX(6px);
}

.diferenciais__item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(196, 169, 125, 0.15), rgba(160, 119, 80, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bege);
}

.diferenciais__item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.3rem;
}

.diferenciais__item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(250, 248, 245, 0.6);
}

/* Shape Dividers das novas seções */
.shape-divider--servicos-diferenciais {
  background: #F0EBE3;
  margin-top: -1px;
}

.shape-divider--diferenciais-sobre {
  background: var(--preto);
  margin-top: -1px;
}

/* ============================================
   SEÇÃO SOBRE
   ============================================ */
.sobre {
  background: #63614A;
  padding: 6rem 4%;
  position: relative;
  overflow: hidden;
}

.sobre__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre__image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.sobre__image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.sobre__image-frame:hover img {
  transform: scale(1.03);
}

.sobre__image-accent {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(196, 169, 125, 0.4);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.6;
}

/* Badge */
.sobre__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(196, 169, 125, 0.12);
  border: 1px solid rgba(196, 169, 125, 0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bege);
  margin-bottom: 1.2rem;
}

.sobre__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--bege);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.sobre__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.sobre__title span {
  color: var(--bege);
}

.sobre__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(250, 248, 245, 0.75);
  margin-bottom: 1rem;
}

/* Stats */
.sobre__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 169, 125, 0.2);
}

.sobre__stat {
  text-align: center;
}

.sobre__stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--marrom);
  line-height: 1;
}

.sobre__stat-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bege);
}

.sobre__stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(250, 248, 245, 0.55);
  margin-top: 0.4rem;
  letter-spacing: 0.03em;
}

/* ============================================
   SEÇÃO PROCESSO
   ============================================ */
.processo {
  position: relative;
  padding: 7rem 4%;
  overflow: hidden;
  background: var(--preto);
}

/* Background Esteira */
.processo__bg-belt {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.processo__bg-track {
  display: flex;
  width: max-content;
  animation: beltScroll 40s linear infinite;
}

.processo__bg-track img {
  width: 600px;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes beltScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.processo__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(26, 22, 18, 0.88);
  pointer-events: none;
}

.processo__container {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}

.processo__header {
  text-align: center;
  margin-bottom: 4rem;
}

.processo__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(196, 169, 125, 0.1);
  border: 1px solid rgba(196, 169, 125, 0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bege);
  margin-bottom: 1.2rem;
}

.processo__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--bege);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.processo__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 1rem;
}

.processo__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(250, 248, 245, 0.65);
  line-height: 1.7;
}

/* Steps */
.processo__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.processo__step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 169, 125, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.processo__step:hover {
  background: rgba(196, 169, 125, 0.08);
  border-color: rgba(196, 169, 125, 0.25);
  transform: translateX(8px);
}

.processo__step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bege);
  opacity: 0.6;
  min-width: 50px;
  line-height: 1;
}

.processo__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.5rem;
}

.processo__step-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.6;
}

/* CTA Processo */
.processo__cta {
  text-align: center;
}

.processo__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.8rem;
  background: linear-gradient(135deg, var(--marrom), var(--bege));
  color: var(--branco-puro);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 60px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(160, 119, 80, 0.35);
}

.processo__cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(196, 169, 125, 0.5);
}

/* ============================================
   SEÇÃO CONTATO
   ============================================ */
.contato {
  background: #26211B;
  padding: 6rem 4%;
  position: relative;
}

.contato__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Badge */
.contato__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(196, 169, 125, 0.1);
  border: 1px solid rgba(196, 169, 125, 0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bege);
  margin-bottom: 1.2rem;
}

.contato__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--bege);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.contato__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contato__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(250, 248, 245, 0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Botões de contato */
.contato__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.contato__btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.contato__btn--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.contato__btn--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.25);
}

.contato__btn--instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.contato__btn--email {
  background: rgba(196, 169, 125, 0.12);
  border: 1px solid rgba(196, 169, 125, 0.25);
  color: var(--bege);
}

.contato__btn--email:hover {
  background: var(--bege);
  color: var(--preto);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196, 169, 125, 0.3);
}

/* Mapa */
.contato__map {
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(196, 169, 125, 0.15);
}

.contato__map iframe {
  border-radius: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--preto);
  border-top: 1px solid rgba(196, 169, 125, 0.1);
  padding: 4rem 4% 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.5);
  line-height: 1.7;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bege);
  margin-bottom: 0.5rem;
}

.footer__links a,
.footer__links span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(250, 248, 245, 0.5);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--bege);
}

.footer__bottom {
  border-top: 1px solid rgba(196, 169, 125, 0.08);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.35);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 360px;
    height: 100vh;
    background: rgba(26, 22, 18, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__links a {
    font-size: 1.1rem;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero__content {
    padding: 0 5%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero__showcase {
    margin: 0 auto;
    width: clamp(260px, 70vw, 400px);
    height: clamp(260px, 70vw, 400px);
  }

  .projetos {
    padding: 5rem 0;
  }

  .projetos__marquee-track img {
    width: 45vw;
  }

  /* Serviços mobile */
  .servicos__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .servicos__carousel-wrapper {
    height: 380px;
  }

  .servicos__carousel-item {
    width: 260px;
    height: 180px;
  }

  /* Também fazemos mobile */
  .tambem-fazemos__gallery {
    grid-template-columns: 1fr;
  }

  .tambem-fazemos__img--large img {
    min-height: 240px;
  }

  .tambem-fazemos__img-col {
    flex-direction: row;
  }

  /* Diferenciais mobile */
  .diferenciais__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Sobre mobile */
  .sobre__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sobre__stats {
    gap: 1.5rem;
  }

  .sobre__stat-number {
    font-size: 2rem;
  }

  /* Contato mobile */
  .contato__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contato__map {
    height: 350px;
  }

  /* Footer mobile */
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 100svh;
  }

  .projetos__marquee-track img {
    width: 65vw;
  }

  .hero__content {
    padding: 0 1.2rem;
  }

  .hero__title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__cta {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
  }

  .hero__indicators {
    left: 1.2rem;
    bottom: 2rem;
  }

  .hero__scroll {
    display: none;
  }

  .navbar {
    padding: 0.8rem 1.2rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  /* Serviços mobile small */
  .servicos {
    padding: 4rem 4%;
  }

  .servicos__carousel-wrapper {
    height: 320px;
  }

  .servicos__carousel-item {
    width: 220px;
    height: 160px;
  }

  .servicos__nav {
    width: 40px;
    height: 40px;
  }

  /* Também fazemos mobile small */
  .tambem-fazemos__img-col {
    flex-direction: column;
  }

  .tambem-fazemos__img--large img {
    min-height: 200px;
  }

  /* Diferenciais mobile small */
  .diferenciais {
    padding: 4rem 4%;
  }

  .diferenciais__item {
    padding: 1rem;
    gap: 1rem;
  }

  .diferenciais__item-icon {
    width: 40px;
    height: 40px;
  }

  /* Sobre mobile small */
  .sobre {
    padding: 4rem 4%;
  }

  .sobre__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  /* Processo mobile small */
  .processo {
    padding: 5rem 4%;
  }

  .processo__step {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.4rem 1.5rem;
  }

  .processo__step-number {
    font-size: 1.5rem;
  }

  .processo__cta-btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  /* Contato mobile small */
  .contato {
    padding: 4rem 4%;
  }

  .contato__map {
    height: 280px;
  }

  /* Footer mobile small */
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
