/* ============================================
   STUDIO D'LÚ - Design System & Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@200;300;400;500;600;700&display=swap');

/* --- CSS Variables (Paleta) --- */
:root {
  --blue-sage: #99B4AA;
  --olive-dark: #6B6D43;
  --sage-green: #ABA66F;
  --rose-terracotta: #CF7D65;
  --nude-pink: #E1B8A2;
  --cream: #F2DEC7;
  --white: #FFFBF7;
  --dark: #2C2A26;
  /* Apenas Detalhes */
  --dark-soft: #3D3A34;
  /* Apenas Detalhes */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;

  --nav-height: 80px;
  --transition-smooth: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ============================================
   AMBIENT NOISE & FLOATING ORBS (DYNAMIC BG)
   ============================================ */
.ambient-noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.035;
  mix-blend-mode: overlay;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: floatOrb 15s ease-in-out infinite alternate;
  opacity: 0.5;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(225, 184, 162, 0.4);
  top: 10%;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(171, 166, 111, 0.3);
  bottom: 20%;
  right: -150px;
  animation-delay: -5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: rgba(207, 125, 101, 0.25);
  top: 40%;
  left: 20%;
  animation-duration: 20s;
}

.orb-4 {
  width: 450px;
  height: 450px;
  background: rgba(153, 180, 170, 0.3);
  bottom: -50px;
  right: 10%;
  animation-delay: -8s;
  animation-duration: 18s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 15px;
  left: 20px;
  width: calc(100% - 40px);
  border-radius: 20px;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(2.5rem, 4vw, 4rem);
  /* Logo mais para a direita usando padding maior na esquerda */
  background: rgba(55, 182, 17, 0.02);
  /* Transparente / Glass */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: opacity 0.5s var(--transition-smooth), transform 0.5s var(--transition-smooth), background-color 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
}

.navbar.scrolled {
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
  background: rgba(44, 42, 38, 0.85);
  /* Dark background on scroll as before */
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.nav-logo {
  height: 62px;
  width: auto;
  margin-left: 1.8rem;
  /* Logo mais para a direita */
  transition: transform 0.4s var(--transition-smooth);
  /* Aumenta a logo visualmente sem afetar a altura da navbar */
  transform: scale(1.9);
  transform-origin: left center;
}

.nav-logo:hover {
  transform: scale(2.0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose-terracotta);
  transition: width 0.4s var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--nude-pink);
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--olive-dark) !important;
  background: var(--cream) !important;
  padding: 0.65rem 1.6rem !important;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--transition-smooth),
    box-shadow 0.35s var(--transition-smooth);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 30px rgba(242, 222, 199, 0.5);
  color: var(--olive-dark) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 5px;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.4s var(--transition-smooth),
    opacity 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BASE SECTION
   ============================================ */
section {
  position: relative;
  overflow: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* --- Background Carousel --- */
.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--olive-dark);
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: clip-path, transform, opacity;
  clip-path: inset(0 0 0 100%);
  opacity: 0;
}

.hero-bg-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg-slide.exiting {
  opacity: 1;
  z-index: 1;
  clip-path: inset(0 0 0 0) !important;
}

.hero-bg-slide img,
.hero-bg-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-bg-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---- Transições de ENTRADA (clip-path reveals) ---- */

/* Slide 1 — Diagonal wipe (top-left → bottom-right) */
.hero-bg-slide.transition-diagonal.active {
  animation: revealDiagonal 1.4s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Slide 2 — Circle expand from center */
.hero-bg-slide.transition-circle.active {
  animation: revealCircle 1.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Slide 3 — Horizontal split open */
.hero-bg-slide.transition-split.active {
  animation: revealSplit 1.4s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Slide 4 — Diamond expand */
.hero-bg-slide.transition-diamond.active {
  animation: revealDiamond 1.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ---- Transição de SAÍDA (zoom + fade out) ---- */
.hero-bg-slide.exit-zoom {
  animation: exitZoomBlur 1.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  z-index: 1;
}

/* ---- Keyframes de Entrada ---- */
@keyframes revealDiagonal {
  0% {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    opacity: 1;
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}

@keyframes revealCircle {
  0% {
    clip-path: circle(0% at 50% 50%);
    opacity: 1;
  }

  100% {
    clip-path: circle(75% at 50% 50%);
    opacity: 1;
  }
}

@keyframes revealSplit {
  0% {
    clip-path: inset(50% 0 50% 0);
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes revealDiamond {
  0% {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    opacity: 1;
  }

  100% {
    clip-path: polygon(50% -50%, 150% 50%, 50% 150%, -50% 50%);
    opacity: 1;
  }
}

/* ---- Keyframe de Saída ---- */
@keyframes exitZoomBlur {
  0% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
    filter: blur(0);
  }
}

/* ---- Ken Burns (movimento lento enquanto slide ativo) ---- */
.hero-bg-slide.active .hero-bg-img {
  animation: kenBurns1 8s ease-in-out forwards;
}

.hero-bg-slide:nth-child(2).active .hero-bg-img {
  animation: kenBurns2 8s ease-in-out forwards;
}

.hero-bg-slide:nth-child(3).active .hero-bg-img {
  animation: kenBurns3 8s ease-in-out forwards;
}

.hero-bg-slide:nth-child(4).active .hero-bg-img {
  animation: kenBurns4 8s ease-in-out forwards;
}

@keyframes kenBurns1 {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

@keyframes kenBurns2 {
  0% {
    transform: scale(1.1) translate(-2%, 0);
  }

  100% {
    transform: scale(1.02) translate(1%, 1.5%);
  }
}

@keyframes kenBurns3 {
  0% {
    transform: scale(1.02) translate(1%, 1%);
  }

  100% {
    transform: scale(1.14) translate(-1%, -2%);
  }
}

@keyframes kenBurns4 {
  0% {
    transform: scale(1.08) translate(0, -1%);
  }

  100% {
    transform: scale(1.02) translate(1.5%, 0.5%);
  }
}

/* Overlay gradiente */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: none;
  pointer-events: none;
}

/* --- Indicadores do carousel --- */
.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-indicator {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.5s var(--transition-smooth), transform 0.5s var(--transition-smooth), background-color 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.hero-indicator::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--rose-terracotta);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.hero-indicator.active {
  width: 52px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-indicator.active::after {
  animation: indicatorProgress 6s linear forwards;
}

@keyframes indicatorProgress {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/* --- Hero Content (lado esquerdo) --- */
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  padding-top: var(--nav-height);
  display: flex;
  justify-content: flex-start;
}

.hero-glass {
  background: rgba(255, 251, 247, 0.08);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.5rem);
  max-width: 600px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hero-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nude-pink);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badge i {
  font-size: 0.55rem;
  color: var(--rose-terracotta);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.3rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title span {
  display: block;
  font-weight: 600;
  font-style: italic;
  color: var(--olive-dark);
}

.hero-separator {
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--rose-terracotta), transparent);
  margin: 1.2rem 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-description {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.8rem;
  max-width: 460px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-service-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  transition: opacity 0.35s var(--transition-smooth), transform 0.35s var(--transition-smooth), background-color 0.35s var(--transition-smooth), box-shadow 0.35s var(--transition-smooth);
}

.hero-service-tag:hover {
  background: rgba(207, 125, 101, 0.2);
  border-color: var(--rose-terracotta);
  transform: translateY(-2px);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--olive-dark), #7d7f52, #8a8c5a);
  background-size: 200% 200%;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 15px rgba(107, 109, 67, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s var(--transition-smooth),
    box-shadow 0.35s var(--transition-smooth),
    background-position 0.5s ease;
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% {
    box-shadow:
      0 4px 15px rgba(107, 109, 67, 0.4),
      0 1px 3px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow:
      0 6px 25px rgba(107, 109, 67, 0.55),
      0 0 40px rgba(107, 109, 67, 0.15),
      0 1px 3px rgba(0, 0, 0, 0.1);
  }
}

/* Shimmer sweep */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transition: none;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  30% { left: 100%; }
  100% { left: 100%; }
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.04);
  background-position: 100% 0;
  box-shadow:
    0 14px 45px rgba(107, 109, 67, 0.55),
    0 0 60px rgba(107, 109, 67, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow:
    0 4px 12px rgba(107, 109, 67, 0.4);
}

.btn-primary:hover::before {
  animation: none;
  left: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-secondary:hover {
  color: var(--nude-pink);
}

.btn-secondary i {
  font-size: 1.2rem;
  transition: transform 0.35s var(--transition-smooth);
}

.btn-secondary:hover i {
  transform: translateX(3px);
}

/* ============================================
   NOVO WHATSAPP FLOATING BUTTON (CREAM + 360 SPIN)
   ============================================ */
.whatsapp-cream {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
  border-radius: 50%;
  color: var(--olive-dark);
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  animation: spin3D 6s linear infinite;
  transform-style: preserve-3d;
  transition: box-shadow 0.3s ease;
}

.whatsapp-cream:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  animation-play-state: paused;
}

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

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s var(--transition-smooth),
    transform 0.8s var(--transition-smooth);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px) scale(0.96);
  transition: opacity 0.8s var(--transition-smooth),
    transform 0.8s var(--transition-smooth);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ============================================
   HERO ENTRANCE ANIMATIONS (GSAP-driven, fallback)
   ============================================ */
.hero-glass.animated .hero-badge {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s 0.3s var(--transition-smooth), transform 0.7s 0.3s var(--transition-smooth), background-color 0.7s 0.3s var(--transition-smooth), box-shadow 0.7s 0.3s var(--transition-smooth);
}

.hero-glass.animated .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s 0.5s var(--transition-smooth), transform 0.8s 0.5s var(--transition-smooth), background-color 0.8s 0.5s var(--transition-smooth), box-shadow 0.8s 0.5s var(--transition-smooth);
}

.hero-glass.animated .hero-separator {
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 0.6s 0.8s var(--transition-smooth), transform 0.6s 0.8s var(--transition-smooth), background-color 0.6s 0.8s var(--transition-smooth), box-shadow 0.6s 0.8s var(--transition-smooth);
}

.hero-glass.animated .hero-description {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s 1s var(--transition-smooth), transform 0.7s 1s var(--transition-smooth), background-color 0.7s 1s var(--transition-smooth), box-shadow 0.7s 1s var(--transition-smooth);
}

.hero-glass.animated .hero-services {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s 1.2s var(--transition-smooth), transform 0.7s 1.2s var(--transition-smooth), background-color 0.7s 1.2s var(--transition-smooth), box-shadow 0.7s 1.2s var(--transition-smooth);
}

.hero-glass.animated .hero-cta-group {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s 1.4s var(--transition-smooth), transform 0.7s 1.4s var(--transition-smooth), background-color 0.7s 1.4s var(--transition-smooth), box-shadow 0.7s 1.4s var(--transition-smooth);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: rgba(44, 42, 38, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.5s var(--transition-smooth);
    padding: 2rem;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-glass {
    max-width: 100%;
  }

  .hero-content {
    padding: 0 clamp(1rem, 4vw, 2rem);
    padding-top: var(--nav-height);
  }
}

@media (max-width: 600px) {
  :root {
    --nav-height: 65px;
  }

  .navbar {
    top: 8px;
    left: 10px;
    width: calc(100% - 20px);
    border-radius: 14px;
    padding: 0 1rem;
    height: var(--nav-height);
  }

  .navbar.scrolled {
    padding: 0 1rem;
  }

  .nav-logo {
    height: 45px;
    margin-left: 0.5rem;
    transform: scale(1.5);
  }

  .nav-logo:hover {
    transform: scale(1.55);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-glass {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .hero-description {
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 1.2rem;
  }

  .hero-services {
    gap: 0.4rem;
    margin-bottom: 1.2rem;
  }

  .hero-service-tag {
    font-size: 0.62rem;
    padding: 0.3rem 0.7rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .btn-primary {
    font-size: 0.78rem;
    padding: 0.8rem 1.6rem;
    width: 100%;
    justify-content: center;
  }

  .btn-secondary {
    font-size: 0.75rem;
  }

  .hero-indicators {
    bottom: 1.5rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  /* WhatsApp Float */
  .whatsapp-cream {
    width: 54px;
    height: 54px;
    bottom: 1.2rem;
    right: 1.2rem;
    font-size: 1.7rem;
  }
}


/* ============================================
   SHAPE DIVIDERS
   ============================================ */
.divider {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  transform: translateY(1px);
  /* Prevent 1px gap bug */
}

.divider svg {
  position: relative;
  width: calc(100% + 1.3px);
  height: 100%;
  display: block;
}

.divider-hero-serv {
  height: clamp(60px, 8vw, 120px);
}

.divider-serv-result {
  height: clamp(60px, 8vw, 120px);
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 1rem;
}

.section-badge i {
  font-size: 0.6rem;
  color: var(--rose-terracotta);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-title em {
  font-weight: 600;
  font-style: italic;
  color: var(--olive-dark);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--dark-soft);
  max-width: 560px;
}

/* ============================================
   SEÇÃO SERVIÇOS — FULLSCREEN CAROUSEL
   ============================================ */
.servicos {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* --- Backgrounds fullscreen --- */
.serv-backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.serv-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: blur(6px) brightness(0.7);
  transition: opacity 1.8s cubic-bezier(0.23, 1, 0.32, 1),
    filter 2.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.serv-bg.active {
  opacity: 1;
  filter: blur(0) brightness(1);
}

.serv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 12s ease-out;
}

.serv-bg.active img {
  transform: scale(1.15);
}

.serv-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg,
      rgba(255, 251, 247, 0.95) 0%,
      rgba(255, 251, 247, 0.85) 40%,
      rgba(255, 251, 247, 0.75) 100%);
  pointer-events: none;
}

/* --- Conteúdo (descrição + card) --- */
.serv-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 8rem) clamp(1.5rem, 5vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(3rem, 5vw, 6rem);
}

/* --- Lado esquerdo: Descrição --- */
.serv-desc-area {
  flex: 1;
  max-width: 540px;
  position: relative;
  min-height: 480px;
}

.serv-desc-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.serv-desc-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Stagger: cada filho entra com delay crescente */
.serv-desc-slide>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

.serv-desc-slide.active>*:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.serv-desc-slide.active>*:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.serv-desc-slide.active>*:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.serv-desc-slide.active>*:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.serv-desc-slide.active>*:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.serv-desc-slide.active>*:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.serv-desc-slide .section-badge {
  color: var(--nude-pink);
  margin-bottom: 1.5rem;
}

.serv-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 300;
  color: rgba(225, 184, 162, 0.3);
  /* nude-pink transparent */
  line-height: 1;
  display: block;
  margin-bottom: -1rem;
}

.serv-desc-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.serv-desc-title em {
  font-weight: 600;
  font-style: italic;
  color: var(--rose-terracotta);
}

.serv-desc-text {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--dark-soft);
  margin-bottom: 1.5rem;
  max-width: 460px;
}

.serv-desc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.serv-desc-list li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dark-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.serv-desc-list li i {
  font-size: 0.55rem;
  color: var(--sage-green);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(171, 166, 111, 0.15);
  flex-shrink: 0;
}

.serv-agendar {
  margin-top: 0.5rem;
}

/* --- Lado direito: Card carousel --- */
.serv-card-area {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.serv-card-carousel {
  position: relative;
  width: 380px;
  height: 500px;
  perspective: 1200px;
}

.serv-carousel-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(80px) scale(0.88) rotateY(-8deg);
  filter: blur(4px);
  transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1.2s cubic-bezier(0.23, 1, 0.32, 1),
    filter 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.serv-carousel-card.active {
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0deg);
  filter: blur(0);
  pointer-events: auto;
}

.serv-carousel-card.exiting {
  opacity: 0;
  transform: translateX(-80px) scale(0.88) rotateY(8deg);
  filter: blur(4px);
}

.serv-carousel-card-img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.35),
    0 8px 30px rgba(0, 0, 0, 0.2);
}

.serv-carousel-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 50%,
      rgba(207, 125, 101, 0.2) 100%);
  pointer-events: none;
}

.serv-carousel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

.serv-carousel-card.active:hover .serv-carousel-card-img img {
  transform: scale(1.06);
}

/* Label no card */
.serv-carousel-card-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(225, 184, 162, 0.3);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  transition: transform 0.4s var(--transition-smooth);
}

.serv-carousel-card.active:hover .serv-carousel-card-label {
  transform: translateY(-4px);
}

.serv-carousel-card-label i {
  font-size: 1.2rem;
  color: var(--rose-terracotta);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(207, 125, 101, 0.1);
  flex-shrink: 0;
}

.serv-carousel-card-label span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

/* --- Controles do carousel --- */
.serv-carousel-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.serv-ctrl-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(207, 125, 101, 0.3);
  border-radius: 50%;
  background: var(--white);
  color: var(--olive-dark);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s var(--transition-smooth), transform 0.35s var(--transition-smooth), background-color 0.35s var(--transition-smooth), box-shadow 0.35s var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(207, 125, 101, 0.1);
}

.serv-ctrl-btn:hover {
  background: var(--rose-terracotta);
  border-color: var(--rose-terracotta);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(207, 125, 101, 0.3);
}

.serv-carousel-dots {
  display: flex;
  gap: 10px;
}

.serv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(207, 125, 101, 0.2);
  cursor: pointer;
  transition: opacity 0.4s var(--transition-smooth), transform 0.4s var(--transition-smooth), background-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.serv-dot.active {
  background: var(--rose-terracotta);
  width: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(207, 125, 101, 0.3);
}

/* ============================================
   SEÇÃO RESULTADOS — MURAL INTERATIVO (tema claro)
   ============================================ */
.resultados {
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(153, 180, 170, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(207, 125, 101, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(171, 166, 111, 0.06) 0%, transparent 50%),
    linear-gradient(175deg, var(--cream) 0%, #faf5ef 35%, var(--white) 60%, #f5ebe0 100%);
  padding: clamp(5rem, 8vw, 9rem) clamp(1.5rem, 5vw, 6rem);
  position: relative;
  overflow: hidden;
}

/* Orbe decorativo 1 */
.resultados::before {
  content: '';
  position: absolute;
  top: 5%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 180, 170, 0.14) 0%, transparent 65%);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}

/* Orbe decorativo 2 */
.resultados::after {
  content: '';
  position: absolute;
  bottom: -8%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 184, 162, 0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: orbFloat 15s ease-in-out infinite reverse;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -15px) scale(1.05);
  }
}

.resultados-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.resultados-header .section-badge {
  color: var(--olive-dark);
}

.resultados-header .section-title {
  color: var(--dark);
}

.resultados-header .section-subtitle {
  color: var(--dark-soft);
  opacity: 0.7;
}

/* --- Mural Container --- */
.mural-container {
  position: relative;
  width: 100%;
  min-height: 750px;
  max-width: 1300px;
  margin: 0 auto;
}

/* --- Mural Item (base) --- */
.mural-item {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: rotate(var(--rot)) scale(1);
  transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1), transform 0.65s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.65s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  border-radius: 16px;
  overflow: visible;
  box-shadow:
    0 14px 40px rgba(44, 42, 38, 0.18),
    0 4px 14px rgba(44, 42, 38, 0.1);
  background: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.9);
  animation: muralFloat var(--float-dur, 6s) var(--float-delay, 0s) ease-in-out infinite;
}

.mural-pair {
  width: 360px;
}

.mural-solo {
  width: 260px;
}

/* Animações flutuantes individuais */
.mural-item:nth-child(1) {
  --float-dur: 5.5s;
  --float-delay: 0s;
}

.mural-item:nth-child(2) {
  --float-dur: 6.5s;
  --float-delay: -1.5s;
}

.mural-item:nth-child(3) {
  --float-dur: 7s;
  --float-delay: -3s;
}

.mural-item:nth-child(4) {
  --float-dur: 5s;
  --float-delay: -0.8s;
}

.mural-item:nth-child(5) {
  --float-dur: 6s;
  --float-delay: -2.2s;
}

@keyframes muralFloat {

  0%,
  100% {
    transform: rotate(var(--rot)) translateY(0px) scale(1);
  }

  50% {
    transform: rotate(var(--rot)) translateY(-12px) scale(1.01);
  }
}

/* Elevar ao passar o mouse */
.mural-item:hover {
  z-index: 10;
  animation-play-state: paused;
}

/* Sombra de fundo para aspecto "polaroid" */
.mural-item>.mural-images {
  border-radius: 13px;
  overflow: hidden;
}


/* --- Imagens --- */
.mural-images {
  display: flex;
  gap: 3px;
  height: 340px;
  overflow: hidden;
}


.img-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}


/* --- Tags Antes/Depois --- */
.mural-tag {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(44, 42, 38, 0.7);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.mural-tag.depois {
  background: rgba(107, 109, 67, 0.8);
}

/* --- Info / Detalhes (só visível quando ativo) --- */
.mural-info {
  display: none;
}


.mural-servico {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--olive-dark);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.mural-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.15;
}

.mural-info p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark-soft);
  line-height: 1.7;
  font-weight: 300;
}

/* --- CTA Final Resultados --- */
.resultados-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.resultados-cta p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark-soft);
  margin-bottom: 1.5rem;
}

/* ============================================
   SHAPE DIVIDER — Resultados → Sobre
   ============================================ */
.divider-result-sobre {
  height: clamp(60px, 8vw, 120px);
}

/* ============================================
   SEÇÃO SOBRE / QUEM SOU
   ============================================ */
.sobre {
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(153, 180, 170, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 75%, rgba(207, 125, 101, 0.08) 0%, transparent 55%),
    linear-gradient(175deg, #F2DEC7 0%, var(--white) 40%, #f8f0e8 70%, #F2DEC7 100%);
  padding: clamp(5rem, 8vw, 9rem) clamp(1.5rem, 5vw, 6rem);
  position: relative;
  overflow: hidden;
}

/* Orbes decorativos animados */
.sobre-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.sobre-orb--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(153, 180, 170, 0.18) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out infinite;
}

.sobre-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -8%;
  right: -8%;
  background: radial-gradient(circle, rgba(225, 184, 162, 0.15) 0%, transparent 70%);
  animation: orbFloat 18s ease-in-out infinite reverse;
}

.sobre-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sobre-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.sobre-header .section-badge {
  color: var(--olive-dark);
}

.sobre-header .section-title {
  color: var(--dark);
}

/* --- Logo de destaque --- */
.sobre-logo {
  margin-top: 1.5rem;
}

.sobre-logo img {
  width: clamp(120px, 14vw, 180px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(207, 125, 101, 0.18));
  animation: logoBreath 4s ease-in-out infinite;
}

@keyframes logoBreath {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 8px 24px rgba(207, 125, 101, 0.18));
  }

  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 12px 32px rgba(207, 125, 101, 0.28));
  }
}

/* --- Layout Grid --- */
.sobre-grid {
  display: flex;
  align-items: stretch;
  gap: clamp(2.5rem, 5vw, 5rem);
}

/* --- Galeria Escalonada (staggered columns) --- */
.sobre-gallery {
  flex: 1;
  display: flex;
  gap: 14px;
  min-width: 0;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.gallery-col--right {
  margin-top: 40px;
}

.gallery-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 4px solid var(--white);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  will-change: transform;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  pointer-events: none;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(207, 125, 101, 0.15);
  z-index: 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--transition-smooth);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* Label flutuante em cada card */
.gallery-card-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(44, 42, 38, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--transition-smooth), transform 0.4s var(--transition-smooth), background-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.gallery-card:hover .gallery-card-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card-label i {
  font-size: 0.7rem;
  color: var(--sage-green);
}

/* --- Conteúdo textual --- */
.sobre-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* Glassmorphism card */
.sobre-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(225, 184, 162, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 15px 40px rgba(225, 184, 162, 0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.sobre-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(225, 184, 162, 0.2);
}

.sobre-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.sobre-role {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 1.5rem;
}

.sobre-bio {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--dark-soft);
  margin-bottom: 1rem;
}

.sobre-bio strong {
  color: var(--rose-terracotta);
  font-weight: 500;
}

/* Localização */
.sobre-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(153, 180, 170, 0.1);
  border: 1px solid rgba(153, 180, 170, 0.25);
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 0.5rem;
}

.sobre-location>i {
  font-size: 1.1rem;
  color: var(--rose-terracotta);
  margin-top: 2px;
}

.sobre-location strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.sobre-location span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--dark-soft);
}

/* --- Stats com ícones --- */
.sobre-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.sobre-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(225, 184, 162, 0.2);
  border-radius: 18px;
  padding: 1.3rem 0.8rem;
  transition: opacity 0.4s var(--transition-smooth), transform 0.4s var(--transition-smooth), background-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(44, 42, 38, 0.04);
}

.sobre-stat:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(153, 180, 170, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(44, 42, 38, 0.08);
}

.sobre-stat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(107, 109, 67, 0.1);
  color: var(--olive-dark);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.sobre-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.sobre-stat-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-soft);
  text-align: center;
}

.sobre-cta {
  align-self: flex-start;
}

/* ============================================
   SHAPE DIVIDER — Sobre → Contato
   ============================================ */
.divider-sobre-contato {
  height: clamp(60px, 8vw, 120px);
}

/* ============================================
   SEÇÃO CONTATO & CTA
   ============================================ */
.contato {
  background: var(--nude-pink);
  padding: clamp(5rem, 8vw, 9rem) clamp(1.5rem, 5vw, 6rem);
  position: relative;
  overflow: hidden;
}

.contato-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242, 222, 199, 0.6) 0%, transparent 70%);
  top: -20%;
  left: -20%;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.contato-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contato-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.contato-header .section-badge {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.contato-header .section-title {
  color: var(--dark);
}

.contato-subtitle {
  color: var(--dark-soft);
  font-family: var(--font-body);
  font-weight: 400;
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.contato-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

/* --- Botões Neon --- */
.btn-neon {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: opacity 0.4s var(--transition-smooth), transform 0.4s var(--transition-smooth), background-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(207, 125, 101, 0.1);
}

.btn-neon-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.btn-neon i {
  font-size: 2.2rem;
  transition: transform 0.4s var(--transition-smooth);
}

/* Verde e Rosa sólidos como pedido */
.btn-neon--whatsapp i {
  color: #25D366;
}

.btn-neon--instagram i {
  color: #E1306C;
}

.btn-neon-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.btn-neon-text span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--dark-soft);
}

.btn-neon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 1;
  opacity: 0.1;
  filter: blur(20px);
}

.btn-neon--whatsapp .btn-neon-glow {
  background: #25D366;
}

.btn-neon--instagram .btn-neon-glow {
  background: #E1306C;
}

.btn-neon:hover {
  transform: translateY(-5px);
}

.btn-neon:hover .btn-neon-glow {
  width: 300px;
  height: 300px;
}

.btn-neon:hover i {
  transform: scale(1.15);
}

.btn-neon--whatsapp:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
  border-color: rgba(37, 211, 102, 0.4);
}

.btn-neon--instagram:hover {
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.25);
  border-color: rgba(225, 48, 108, 0.4);
}

/* --- Info Extra --- */
.contato-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed rgba(207, 125, 101, 0.3);
  padding: 1.5rem;
  border-radius: 16px;
  margin-top: 1rem;
}

.contato-info-card i {
  font-size: 1.4rem;
  color: var(--rose-terracotta);
  margin-top: 2px;
}

.contato-info-card h4 {
  font-family: var(--font-body);
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.contato-info-card p {
  font-family: var(--font-body);
  color: var(--dark-soft);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* --- MAPS --- */
.contato-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(207, 125, 101, 0.15);
  border: 4px solid var(--white);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  border: 1px solid rgba(225, 184, 162, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.map-pin i {
  color: var(--rose-terracotta);
}

.map-pin span {
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--olive-dark);
  padding: 4rem 2rem 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-sage), var(--sage-green), var(--rose-terracotta));
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 70px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--cream);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a:hover {
  background: var(--rose-terracotta);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

@media (max-width: 992px) {

  /* --- Hero Overlay Mobile --- */
  .hero-overlay {
    background: rgba(255, 255, 255, 0.4);
  }

  /* --- Navbar Mobile --- */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(44, 42, 38, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--transition-smooth);
    z-index: 1050;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-cta {
    font-size: 1rem !important;
    padding: 0.8rem 2.2rem !important;
  }

  .serv-content {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }

  .serv-desc-area {
    max-width: 100%;
    min-height: auto;
    position: relative;
  }

  .serv-desc-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: auto;
    left: auto;
    opacity: 1;
    pointer-events: auto;
  }

  .serv-desc-slide.active {
    display: flex;
  }

  .serv-desc-text {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .serv-desc-list {
    align-items: center;
  }

  .serv-desc-list li {
    font-size: 0.85rem;
  }

  .serv-card-carousel {
    width: 300px;
    height: 400px;
  }

  .serv-carousel-card-label {
    padding: 0.8rem 1rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .serv-carousel-card-label span {
    font-size: 1.1rem;
  }

  /* Mural: empilhar verticalmente */
  .mural-container {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 10px;
  }

  .mural-item {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 90% !important;
    max-width: 420px;
    animation: none !important;
  }

  /* Sobre */
  .sobre-grid {
    flex-direction: column;
  }

  .sobre-gallery {
    max-width: 500px;
    margin: 0 auto;
  }

  .gallery-col--right {
    margin-top: 0;
  }

  .sobre-info {
    align-items: center;
    text-align: center;
  }

  .sobre-glass {
    text-align: center;
  }

  .sobre-location {
    justify-content: center;
    text-align: left;
  }

  .sobre-cta {
    align-self: center;
  }

  /* Contato & Footer */
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .contato-map {
    height: 350px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .serv-card-carousel {
    width: 260px;
    height: 350px;
  }

  .serv-desc-area {
    min-height: auto;
  }

  .serv-desc-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .serv-num {
    font-size: 2.5rem;
  }

  .mural-images {
    height: 240px;
  }

  .mural-info h3 {
    font-size: 1.5rem;
  }

  .sobre-stats {
    flex-direction: column;
    gap: 0.8rem;
  }

  .sobre-stat {
    flex-direction: row;
    padding: 1rem 1.2rem;
    gap: 12px;
  }

  .sobre-stat-icon {
    margin-bottom: 0;
  }

  .sobre-glass {
    padding: 1.5rem;
  }

  .sobre-bio {
    font-size: 0.85rem;
  }

  /* Contato */
  .contato {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
  }

  .contato-map {
    height: 280px;
  }

  .btn-neon {
    padding: 1rem 1.2rem;
    border-radius: 16px;
  }

  .btn-neon-content {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    width: 100%;
  }

  .btn-neon i {
    font-size: 1.8rem;
  }

  .btn-neon-text strong {
    font-size: 0.95rem;
  }

  .btn-neon-text span {
    font-size: 0.78rem;
  }

  .contato-info-card {
    padding: 1.2rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-logo {
    height: 55px;
  }
}

/* --- Desktop/Mobile Hero Toggles Globals --- */
.hero-content-mobile {
  display: none;
}

@media (max-width: 992px) {
  .hero-content-desktop {
    display: none !important;
  }
  .hero-content-mobile {
    display: block !important;
  }
  
  /* Mobile Hero Styling */
  .hero-glass {
    padding: 2rem 1.5rem !important;
    border-radius: 24px !important;
    text-align: center;
  }
  
  .hero-mobile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .hero-mobile-badge {
    background: rgba(207, 125, 101, 0.1);
    color: var(--rose-terracotta);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(207, 125, 101, 0.3);
  }
  
  .hero-mobile-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--dark);
    line-height: 1.05;
  }
  
  .hero-mobile-title span {
    display: block;
    color: var(--olive-dark);
    font-style: italic;
    font-weight: 600;
  }
  
  .hero-mobile-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-soft);
    line-height: 1.6;
    padding: 0 5px;
  }
  
  .hero-mobile-cards {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
  }
  
  .hm-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(107, 109, 67, 0.2);
    padding: 14px 8px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    color: var(--olive-dark);
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  }
  
  .hm-card i {
    font-size: 1.4rem;
    color: var(--rose-terracotta);
  }
  
  .hero-mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .hm-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    border-radius: 50px;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(107, 109, 67, 0.2);
  }
  
  .hm-link {
    color: var(--olive-dark);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border-bottom: 1px solid var(--olive-dark);
    padding-bottom: 2px;
  }
}

/* --- Instagram Navbar Buttons --- */
.nav-instagram-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white !important;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.nav-instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

.nav-mobile-right {
  display: none;
}

.nav-instagram-mobile {
  display: none;
}

@media (max-width: 992px) {
  .nav-mobile-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-ig-desk-item {
    display: none !important;
  }

  .nav-instagram-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
    transition: transform 0.3s ease;
  }
  
  .nav-instagram-mobile:hover {
    transform: scale(1.1);
  }
}