/* ============================================================
   PARADISE INCORPORADORA — STYLE.CSS
   Paleta: Azul Ciano (#29ABE2), Cinza Neutro (#4A4A4A / #6B6B6B),
   Cinza Claro Fundo (#E8E8E8), Laranja Accent (#E8732C)
   Fontes: Pacifico (script), Inter (sans-serif)
   ============================================================ */

/* --- VARIÁVEIS CSS / CUSTOM PROPERTIES --- */
:root {
  /* Cores */
  --color-primary: #29ABE2;
  --color-primary-dark: #1d8bb8;
  --color-primary-light: #e0f4fd;
  --color-accent: #E8732C;
  --color-accent-dark: #c95d1e;
  --color-gray-900: #1a1a2e;
  --color-gray-800: #2d2d3f;
  --color-gray-700: #4A4A4A;
  --color-gray-600: #6B6B6B;
  --color-gray-500: #8a8a8a;
  --color-gray-400: #b0b0b0;
  --color-gray-300: #cccccc;
  --color-gray-200: #E8E8E8;
  --color-gray-100: #f5f5f5;
  --color-white: #FFFFFF;
  --color-dark: #121212;

  /* Tipografia */
  --font-script: 'Pacifico', cursive;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  --font-size-5xl: 3.75rem;

  /* Espaçamentos */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 8px 30px rgba(41, 171, 226, 0.15);

  /* Transições */
  --transition-fast: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-gray-700);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

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

.text-accent {
  color: var(--color-accent);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--font-size-sm);
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(41, 171, 226, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 6px 25px rgba(41, 171, 226, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--font-size-base);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--font-size-xs);
}

/* ============================================================
   HEADER / NAVBAR — Premium Glassmorphism + Micro-interactions
   ============================================================ */

/* Scroll Progress Bar */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  width: 0%;
  z-index: 1002;
  transition: width 50ms linear;
  opacity: 0;
}

.header.scrolled .scroll-progress {
  opacity: 1;
}

/* Header Container */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(41, 171, 226, 0.08);
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.header.scrolled::before {
  opacity: 1;
}

.header.scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Navbar Layout */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  max-width: 1280px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  display: block;
  height: auto;
  width: 130px;
  max-width: 130px;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled .logo-img {
  width: 110px;
  max-width: 110px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu .nav-cta-mobile {
  display: none;
}

/* Nav Link — Pill hover style */
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled .nav-link {
  color: var(--color-gray-700);
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transform: scale(0.85);
  opacity: 0;
  transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled .nav-link::before {
  background: rgba(41, 171, 226, 0.08);
}

.nav-link:hover {
  color: var(--color-white);
}

.header.scrolled .nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::before {
  transform: scale(1);
  opacity: 1;
}

.nav-link.active {
  color: var(--color-white);
  font-weight: 600;
}

.header.scrolled .nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::before {
  transform: scale(1);
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

.header.scrolled .nav-link.active::before {
  background: rgba(41, 171, 226, 0.12);
}

/* Active indicator dot */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 1;
}

.header.scrolled .nav-link.active::after {
  background: var(--color-primary);
}

/* Nav CTA Button */
.btn-nav {
  display: flex;
  margin-left: 4px;
  padding: 0.55rem 1.1rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

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

/* Pulse glow for CTA */
.btn-pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-pulse:hover {
  animation: none;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(41, 171, 226, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(41, 171, 226, 0.55), 0 0 0 4px rgba(41, 171, 226, 0.1);
  }
}

/* Mobile Nav Overlay (hidden on desktop) */
.nav-overlay {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled .hamburger {
  background: rgba(41, 171, 226, 0.06);
  border-color: rgba(41, 171, 226, 0.12);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.18);
}

.header.scrolled .hamburger:hover {
  background: rgba(41, 171, 226, 0.12);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.header.scrolled .hamburger-line {
  background: var(--color-gray-700);
}

.hamburger.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.header.scrolled .hamburger.active {
  background: rgba(41, 171, 226, 0.1);
  border-color: var(--color-primary);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
  width: 70%;
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
  width: 70%;
}

/* ============================================================
   HERO SECTION — Split-screen cinematográfico
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

/* Background com gradiente dinâmico e textura */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0f0f1e 0%, #141428 30%, #0d2b3e 60%, #1a1a2e 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(41, 171, 226, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232, 115, 44, 0.08) 0%, transparent 60%),
    url('media/photos/1.webp') center/cover no-repeat;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 30, 0.3) 0%, transparent 30%, transparent 70%, rgba(15, 15, 30, 0.6) 100%),
    linear-gradient(90deg, rgba(15, 15, 30, 0.85) 0%, rgba(15, 15, 30, 0.4) 50%, rgba(15, 15, 30, 0.2) 100%);
  z-index: 1;
}

/* Floating decorative shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -10%;
  right: -5%;
  animation: float-shape-1 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  background: var(--color-accent);
  bottom: -5%;
  left: 10%;
  animation: float-shape-2 25s ease-in-out infinite;
}

.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: #29ABE2;
  top: 40%;
  left: 50%;
  animation: float-shape-3 18s ease-in-out infinite;
}

@keyframes float-shape-1 {

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

  33% {
    transform: translate(-60px, 40px) scale(1.1);
  }

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

@keyframes float-shape-2 {

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

  50% {
    transform: translate(40px, -50px) scale(1.15);
  }
}

@keyframes float-shape-3 {

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

  33% {
    transform: translate(30px, 30px) scale(0.9);
  }

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

/* Main content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
  flex: 1;
  display: flex;
  align-items: center;
}

/* Split layout: text left, visual right */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  width: 100%;
}

/* Left side — Text */
.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(41, 171, 226, 0.12);
  border: 1px solid rgba(41, 171, 226, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(4px);
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.12;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
}

.hero-title .text-accent {
  background: linear-gradient(135deg, #29ABE2, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-md);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
  max-width: 520px;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-cta-primary {
  gap: var(--space-sm);
}

.hero-cta-primary svg {
  transition: transform 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-cta-primary:hover svg {
  transform: translateX(4px);
}

.hero-cta-secondary {
  gap: var(--space-sm);
}

/* Trust indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.trust-item svg {
  flex-shrink: 0;
}

/* Right side — Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(41, 171, 226, 0.1);
}

.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

.hero-image-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 15, 30, 0.6) 100%);
  pointer-events: none;
}

/* Floating stat badges over the image */
.hero-stats-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  bottom: 0px;
  padding: 12px;
}

.hero-stats-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 0.3rem 0.65rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  width: max-content;
}

.hero-stats-card {
  bottom: 16px;
  left: 16px;
}

.hero-stats-card-2 {
  bottom: 16px;
  right: 16px;
}

.hero-stats-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero-stats-label {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Hero Cards (service links) */
.hero-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  padding-bottom: var(--space-3xl);
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41, 171, 226, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(41, 171, 226, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-card:hover::before {
  opacity: 1;
}

.hero-card:active {
  transform: translateY(-2px) scale(0.98);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(41, 171, 226, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-card:hover .hero-card-icon {
  transform: scale(1.1);
  background: rgba(41, 171, 226, 0.25);
}

.hero-card-body {
  flex: 1;
  min-width: 0;
}

.hero-card-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
  display: block;
}

.hero-card-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 2px;
}

.hero-card-arrow {
  flex-shrink: 0;
  opacity: 0.5;
  transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-card:hover .hero-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- SECTIONS GENERIC --- */
.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-gray-800);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.section-title-light {
  color: var(--color-white);
}

.section-text {
  font-size: var(--font-size-md);
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
}

.section-text-light {
  color: rgba(255, 255, 255, 0.85);
}

/* --- SPLIT LAYOUT (zigzag) --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.split-text {
  max-width: 540px;
}

.split-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.split-image-clip {
  width: 100%;
  max-width: 520px;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.clip-left {
  clip-path: polygon(0% 0%, 92% 0%, 100% 100%, 8% 100%);
}

.split-image-clip img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.split-image-clip:hover img {
  transform: scale(1.05);
}

/* --- METRICS / COUNTERS --- */
.metrics {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.metric-item {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.metric-label {
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- TESTIMONIAL / DEPOIMENTO --- */
.testimonial {
  position: relative;
  padding: var(--space-xl) var(--space-2xl);
  margin-bottom: var(--space-2xl);
  background: var(--color-gray-100);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--color-accent);
}

.quote-icon {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  opacity: 0.15;
  width: 32px;
  height: 32px;
}

.testimonial-text {
  font-size: var(--font-size-md);
  font-style: italic;
  color: var(--color-gray-700);
  line-height: 1.7;
}

/* --- ESTRUTURA JURÍDICA --- */
.section-estrutura {
  background: var(--color-gray-900);
  color: var(--color-white);
  overflow: hidden;
}

.estrutura-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(41, 171, 226, 0.15) 100%),
    url('./media/photos/2.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.section-estrutura .container {
  position: relative;
  z-index: 1;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.pillar-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  background: rgba(41, 171, 226, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.pillar-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.pillar-text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* --- TIMELINE / STEPPER --- */
/* ============================================================
   SEÇÃO "COMO SE TORNAR UM INVESTIDOR" — Timeline premium
   ============================================================ */
.section-como-investir {
  background: var(--color-gray-900);
  overflow: hidden;
  position: relative;
}

/* Background shapes */
.como-investir-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.como-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.como-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--color-primary);
  top: -20%;
  right: -10%;
  animation: como-float-1 25s ease-in-out infinite;
}

.como-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--color-accent);
  bottom: -10%;
  left: -5%;
  animation: como-float-2 20s ease-in-out infinite;
}

@keyframes como-float-1 {

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

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

@keyframes como-float-2 {

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

  50% {
    transform: translate(30px, -40px) scale(1.15);
  }
}

.section-como-investir .container {
  position: relative;
  z-index: 1;
}

/* Section header centered */
.section-header-center {
  text-align: center;
  margin-bottom: var(--space-4xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-badge {
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(41, 171, 226, 0.12);
  border: 1px solid rgba(41, 171, 226, 0.2);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-lg);
}

.section-como-investir .section-title {
  color: var(--color-white);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-text-center {
  font-size: var(--font-size-md);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 500px;
  margin: var(--space-md) auto 0;
}

/* Timeline - Desktop (horizontal alternating) */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 0 var(--space-3xl);
  padding: var(--space-3xl) 0;
}

.timeline-track {
  position: absolute;
  top: 50%;
  left: 60px;
  right: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 0;
  border-radius: 2px;
  transform: translateY(-50%);
  overflow: hidden;
}

.timeline-track-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
  transition: width 0.3s ease-out;
}

.timeline-step {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Alternating: odd steps above line, even steps below */
.step-content-left {
  flex-direction: column-reverse;
}

.step-content-left .step-card {
  margin-top: var(--space-lg);
  margin-bottom: 0;
}

.step-content-right .step-card {
  margin-bottom: var(--space-lg);
  margin-top: 0;
}

/* Step Marker — pill/capsule with icon */
.step-marker {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 450ms cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.step-number {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  transition: all 450ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-icon {
  display: none;
  color: var(--color-white);
}

.timeline-step.active .step-marker {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(41, 171, 226, 0.15), 0 8px 30px rgba(41, 171, 226, 0.3);
}

.timeline-step.active .step-number {
  display: none;
}

.timeline-step.active .step-icon {
  display: block;
}

/* Connector line from marker to card */
.step-content::before {
  content: '';
  position: absolute;
  width: 2px;
  height: var(--space-lg);
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.step-content-left::before {
  top: 60px;
}

.step-content-right::before {
  bottom: 60px;
}

/* Step Card — glassmorphism */
.step-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: var(--space-lg) var(--space-xl);
  width: 220px;
  text-align: center;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41, 171, 226, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-step.active .step-card {
  border-color: rgba(41, 171, 226, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.timeline-step.active .step-card::before {
  opacity: 1;
}

.step-card:hover {
  border-color: rgba(41, 171, 226, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.step-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  position: relative;
}

.step-text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  position: relative;
}

.section-como-investir .btn-primary {
  margin-top: var(--space-xl);
}

/* --- CONSTRUÇÃO CIVIL --- */
/* ============================================================
   SEÇÃO "CONSTRUÇÃO CIVIL" — Split-screen serviço + imagem
   ============================================================ */
.section-construcao {
  background: var(--color-gray-900);
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

.construcao-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(15, 15, 30, 1) 0%, rgba(15, 15, 30, 0.95) 40%, rgba(232, 115, 44, 0.08) 100%);
  z-index: 0;
}

.construcao-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.construcao-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--color-accent);
  opacity: 0.08;
  bottom: -15%;
  right: -5%;
  animation: construcao-float-1 22s ease-in-out infinite;
}

.construcao-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  opacity: 0.06;
  top: 10%;
  left: -5%;
  animation: construcao-float-2 18s ease-in-out infinite;
}

@keyframes construcao-float-1 {

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

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

@keyframes construcao-float-2 {

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

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

.section-construcao .container {
  position: relative;
  z-index: 1;
}

.construcao-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

/* Left side — Content */
.construcao-content {
  max-width: 560px;
}

.section-badge-construcao {
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(232, 115, 44, 0.12);
  border: 1px solid rgba(232, 115, 44, 0.2);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-lg);
}

/* Service cards */
.construcao-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.construcao-service-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: var(--space-lg);
  transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.construcao-service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(6px);
}

.construcao-service-icon {
  width: 48px;
  height: 48px;
  background: rgba(41, 171, 226, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.construcao-service-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.construcao-service-text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Stats row */
.construcao-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.construcao-stat {
  text-align: center;
}

.construcao-stat-num {
  display: block;
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 2px;
}

.construcao-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Right side — Visual */
.construcao-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.construcao-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.construcao-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(232, 115, 44, 0.1);
}

.construcao-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
}

.construcao-image-wrap:hover .construcao-image {
  transform: scale(1.05);
}

.construcao-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 15, 30, 0.7) 100%);
  pointer-events: none;
}

/* Floating badge */
.construcao-experience-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 15, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 115, 44, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* --- OBRAS EM ANDAMENTO (Swiper) --- */
/* ============================================================
   SEÇÃO "OBRAS EM ANDAMENTO" — Grid de projetos premium
   ============================================================ */
.section-obras {
  background: var(--color-gray-100);
  position: relative;
}

.section-obras::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41, 171, 226, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 171, 226, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.section-obras .section-header-center {
  margin-bottom: var(--space-3xl);
}

.section-obras .section-text-center {
  color: var(--color-gray-600);
}

.section-obras .section-text-center strong {
  color: var(--color-gray-800);
}

.obras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* Card */
.obra-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.obra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(41, 171, 226, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Image */
.obra-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.obra-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.obra-card:hover .obra-image-wrap img {
  transform: scale(1.08);
}

.obra-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

/* Status badge */
.obra-status {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.obra-status-andamento {
  background: rgba(41, 171, 226, 0.9);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

.obra-status-concluido {
  background: rgba(46, 204, 113, 0.9);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

/* Body */
.obra-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.obra-name {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: 2px;
}

.obra-city {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.obra-city::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* Meta row */
.obra-meta {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.obra-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

.obra-meta-item svg {
  flex-shrink: 0;
}

.obra-meta-item strong {
  color: var(--color-gray-800);
}

/* Description */
.obra-desc {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  line-height: 1.55;
  margin-bottom: var(--space-md);
  flex: 1;
}

/* Economy */
.obra-economia {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-gray-600);
  padding: var(--space-sm) var(--space-md);
  background: rgba(232, 115, 44, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(232, 115, 44, 0.1);
}

.obra-economia svg {
  flex-shrink: 0;
}

.obra-economia strong {
  color: var(--color-accent);
}

/* Tag badge */
.obra-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 2;
}

.obra-tag-residencial {
  background: rgba(232, 115, 44, 0.9);
  color: #fff;
  backdrop-filter: blur(4px);
}

.obra-tag-comercial {
  background: rgba(41, 171, 226, 0.9);
  color: #fff;
  backdrop-filter: blur(4px);
}

/* Status badge with dot */
.obra-status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.obra-status-concluido .obra-status-dot {
  animation: none;
  background: #fff;
}

.obra-status-andamento .obra-status-dot {
  background: #fff;
}

/* Progress bar */
.obra-progress {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-gray-200);
}

.obra-progress-bar {
  height: 4px;
  background: var(--color-gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}

.obra-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), #5fc6e8);
  border-radius: 4px;
  transition: width 1s ease;
}

.obra-progress-fill-done {
  background: linear-gradient(90deg, #2ecc71, #54d98c);
}

.obra-progress-label {
  font-size: 0.7rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

/* Header row in card body */
.obra-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  gap: var(--space-sm);
}

.obra-header .obra-name {
  margin-bottom: 0;
}

.obra-header .obra-city {
  margin-bottom: 0;
  white-space: nowrap;
  font-size: 0.7rem;
}

/* --- FORMULÁRIO MULTI-STEP --- */
.section-contato {
  background: var(--color-gray-100);
  position: relative;
}

.section-contato::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(41, 171, 226, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-contato::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 115, 44, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contato-triage {
  max-width: 720px;
  margin: 0 auto;
}

/* Step indicator */
.triage-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.triage-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-gray-200);
  transform: translateY(-50%);
  z-index: 0;
}

.triage-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
  flex: 1;
}

.triage-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--color-gray-200);
  color: var(--color-gray-500);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 3px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.triage-step.active .triage-step-circle {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(41, 171, 226, 0.3);
  transform: scale(1.05);
}

.triage-step.done .triage-step-circle {
  background: #2ecc71;
  color: #fff;
  border-color: #2ecc71;
}

.triage-step.done .triage-step-circle::after {
  content: '✓';
  font-size: 1rem;
}

.triage-step.done .triage-step-circle span {
  display: none;
}

.triage-step-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gray-400);
  transition: color 400ms;
}

.triage-step.active .triage-step-label {
  color: var(--color-primary);
}

/* Steps content */
.triage-content {
  background: var(--color-white);
  border-radius: 20px;
  padding: var(--space-2xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  min-height: 340px;
  position: relative;
}

.triage-panel {
  display: none;
  animation: panelIn 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.triage-panel.active {
  display: block;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.triage-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: var(--space-xs);
}

.triage-sub {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
  margin-bottom: var(--space-xl);
}

/* Profile cards */
.triage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.triage-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: 16px;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.triage-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(41, 171, 226, 0.1);
}

.triage-card.selected {
  border-color: var(--color-primary);
  background: rgba(41, 171, 226, 0.04);
  box-shadow: 0 8px 24px rgba(41, 171, 226, 0.12);
}

.triage-card.selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 700;
}

.triage-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  background: var(--color-gray-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.triage-card.selected .triage-card-icon {
  background: rgba(41, 171, 226, 0.1);
}

.triage-card-name {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: 2px;
}

.triage-card-desc {
  font-size: 0.7rem;
  color: var(--color-gray-500);
  line-height: 1.4;
}

/* Capital range */
.triage-range {
  margin-bottom: var(--space-xl);
}

.triage-range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.triage-range-header label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-gray-700);
}

.triage-range-value {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--color-primary);
}

.triage-range-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-gray-200);
  border-radius: 6px;
  outline: none;
}

.triage-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(41, 171, 226, 0.3);
  transition: transform 200ms;
}

.triage-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.triage-range-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  border: none;
}

.triage-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--color-gray-400);
  margin-top: var(--space-xs);
}

/* Triage form fields */
.triage-fields {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.triage-field-group {
  position: relative;
}

.triage-field-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: var(--space-xs);
}

.triage-field-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  color: var(--color-gray-800);
  background: var(--color-gray-100);
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  outline: none;
  transition: all var(--transition-fast);
}

.triage-field-input:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(41, 171, 226, 0.1);
}

.triage-field-input::placeholder {
  color: var(--color-gray-400);
}

.triage-field-error {
  display: none;
  font-size: var(--font-size-xs);
  color: #e74c3c;
  margin-top: var(--space-xs);
}

.triage-field-input.error {
  border-color: #e74c3c;
  background: #fff5f5;
}

.triage-field-input.error~.triage-field-error {
  display: block;
}

/* Triage buttons */
.triage-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-gray-200);
}

.btn-triage-back {
  background: none;
  border: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-gray-500);
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
}

.btn-triage-back:hover {
  color: var(--color-gray-800);
  background: var(--color-gray-100);
}

.btn-triage-next {
  padding: 0.85rem 2rem;
  font-size: var(--font-size-sm);
}

/* Summary panel */
.triage-summary {
  text-align: center;
  padding: var(--space-lg) 0;
}

.triage-summary-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.triage-summary-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: var(--space-sm);
}

.triage-summary-text {
  font-size: var(--font-size-base);
  color: var(--color-gray-500);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.triage-summary-box {
  background: var(--color-gray-100);
  border-radius: 12px;
  padding: var(--space-lg);
  text-align: left;
  margin-bottom: var(--space-2xl);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.triage-summary-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-size: var(--font-size-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.triage-summary-row:last-child {
  border-bottom: none;
}

.triage-summary-row-label {
  color: var(--color-gray-500);
}

.triage-summary-row-value {
  font-weight: 600;
  color: var(--color-gray-800);
}

/* --- FOOTER PREMIUM DARK --- */
.footer {
  position: relative;
  background: #0b1219;
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
  overflow: hidden;
}

/* Layered background */
.footer-bg-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.footer-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.footer-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #29ABE2, transparent 70%);
  top: -200px;
  right: -100px;
  animation: footerOrb1 12s ease-in-out infinite alternate;
}

.footer-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #E8732C, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: footerOrb2 15s ease-in-out infinite alternate;
}

.footer-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #1a5276, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: footerOrb3 18s ease-in-out infinite alternate;
}

@keyframes footerOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.12;
  }

  100% {
    transform: translate(-80px, 60px) scale(1.15);
    opacity: 0.2;
  }
}

@keyframes footerOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.1;
  }

  100% {
    transform: translate(60px, -40px) scale(1.1);
    opacity: 0.18;
  }
}

@keyframes footerOrb3 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.08;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.15;
  }
}

.footer .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}

/* Top accent line */
.footer-accent-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41, 171, 226, 0.3), rgba(232, 115, 44, 0.3), transparent);
  margin-bottom: var(--space-4xl);
}

/* Mini CTA / Newsletter */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  padding: var(--space-2xl) var(--space-3xl);
  background: linear-gradient(135deg, rgba(41, 171, 226, 0.08), rgba(41, 171, 226, 0.02));
  border: 1px solid rgba(41, 171, 226, 0.1);
  border-radius: 20px;
  margin-bottom: var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41, 171, 226, 0.4), transparent);
}

.footer-cta-content {
  flex: 1;
}

.footer-cta-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  background: rgba(41, 171, 226, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(41, 171, 226, 0.15);
}

.footer-cta-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.footer-cta-text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-cta-form {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  min-width: 380px;
}

.footer-cta-field {
  flex: 1;
  position: relative;
}

.footer-cta-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
  transition: all 300ms ease;
}

.footer-cta-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-cta-input:focus {
  border-color: var(--color-primary);
  background: rgba(41, 171, 226, 0.05);
  box-shadow: 0 0 0 4px rgba(41, 171, 226, 0.08);
}

.footer-cta-field-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all 400ms ease;
  border-radius: 2px;
  transform: translateX(-50%);
}

.footer-cta-input:focus~.footer-cta-field-line {
  width: 80%;
}

.footer-cta-btn {
  padding: 0.85rem 1.5rem;
  font-size: var(--font-size-sm);
  white-space: nowrap;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

/* Brand card */
.footer-brand-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: var(--space-xl);
  transition: all 400ms ease;
}

.footer-brand-card:hover {
  border-color: rgba(41, 171, 226, 0.15);
  background: linear-gradient(135deg, rgba(41, 171, 226, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 8px 32px rgba(41, 171, 226, 0.04);
}

.footer .logo-footer {
  margin-bottom: var(--space-md);
}

.footer .logo-img {
  filter: brightness(1.2) drop-shadow(0 0 12px rgba(41, 171, 226, 0.1));
}

.footer-text {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--space-lg);
}

.footer-brand-stats {
  display: flex;
  gap: var(--space-lg);
}

.footer-brand-stat {
  text-align: center;
}

.footer-brand-stat-value {
  display: block;
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}

.footer-brand-stat-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

/* Generic column */
.footer-col {
  padding-top: var(--space-xs);
}

.footer-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-title-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(41, 171, 226, 0.4);
}

/* Navigation links */
.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: all 300ms ease;
  padding: 2px 0;
}

.footer-links a svg {
  width: 14px;
  height: 14px;
  opacity: 0.3;
  transition: all 300ms ease;
  flex-shrink: 0;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 22px;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-links a:hover svg {
  opacity: 0.8;
  color: var(--color-primary);
}

.footer-links a:hover::after {
  width: calc(100% - 22px);
}

/* Contact list */
.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  transition: all 300ms ease;
}

.footer-contact-list li:hover {
  transform: translateX(4px);
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: all 300ms ease;
}

.footer-contact-list li:hover .footer-contact-icon {
  background: rgba(41, 171, 226, 0.1);
  border-color: rgba(41, 171, 226, 0.2);
  box-shadow: 0 4px 16px rgba(41, 171, 226, 0.08);
  transform: scale(1.05);
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-contact-text a,
.footer-contact-text span {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 300ms ease;
}

.footer-contact-text a:hover {
  color: var(--color-primary);
}

/* Social row */
.footer-social-row {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.social-link svg {
  transition: all 300ms ease;
}

.social-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
  pointer-events: none;
}

.social-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.8);
}

.social-link:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.social-link-ig:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  border-color: transparent;
  color: #fff;
}

.social-link-fb:hover {
  background: #1877f2;
  border-color: transparent;
  color: #fff;
}

.social-link-lk:hover {
  background: #0a66c2;
  border-color: transparent;
  color: #fff;
}

.social-link-yt:hover {
  background: #ff0000;
  border-color: transparent;
  color: #fff;
}

/* Hours */
.footer-hours {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: var(--space-md) var(--space-lg);
}

.footer-hours-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: var(--space-sm);
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.45);
  padding: var(--space-xs) 0;
}

.footer-hours-item+.footer-hours-item {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-hours-value {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-xl) 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer-copy {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy strong {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-bottom-links a {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 300ms ease;
}

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

.footer-bottom-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

/* --- STICKY CTA MOBILE --- */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.btn-sticky {
  width: 100%;
  padding: 0.85rem;
  font-size: var(--font-size-base);
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --- RESPONSIVE --- */

/* Tablet e abaixo (até 1024px) — nav vira hamburger */
@media (max-width: 1024px) {
  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero-visual {
    display: none;
  }

  .hero-trust {
    gap: var(--space-md);
  }

  .hero-image {
    height: 400px;
  }

  .hero-stats-card {
    bottom: 12px;
    left: 12px;
  }

  .hero-stats-card-2 {
    bottom: 12px;
    right: 12px;
  }

  .hero-cards {
    gap: var(--space-md);
  }

  .hero-shape {
    opacity: 0.15;
  }

  .construcao-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .construcao-visual {
    display: none;
  }

  .obras-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  .metric-value {
    font-size: var(--font-size-3xl);
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cta {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl);
  }

  .footer-cta-form {
    min-width: 0;
    width: 100%;
    max-width: 400px;
  }

  .footer-cta-text {
    margin-bottom: var(--space-md);
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .triage-cards {
    grid-template-columns: 1fr;
  }

  .triage-content {
    padding: var(--space-xl) var(--space-lg);
  }

  .triage-step-label {
    font-size: 0.55rem;
  }

  .triage-step-circle {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .hero-cards {
    gap: var(--space-md);
  }

  /* Navigation Overlay */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-xl) var(--space-xl);
    gap: var(--space-xs);
    transition: right 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    border-left: 1px solid rgba(41, 171, 226, 0.08);
  }

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

  .nav-menu .nav-link {
    padding: 0.75rem 1rem;
    color: var(--color-gray-700);
    font-size: var(--font-size-base);
    border-radius: 10px;
    width: 100%;
  }

  .nav-menu .nav-link::before {
    display: none;
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    background: rgba(41, 171, 226, 0.08);
    color: var(--color-primary);
  }

  .nav-menu .nav-link.active {
    background: rgba(41, 171, 226, 0.12);
    font-weight: 600;
  }

  .nav-menu .nav-cta-mobile {
    display: block;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-gray-200);
  }

  .nav-menu .nav-cta-mobile .btn {
    width: 100%;
  }

  .btn-nav {
    display: none;
  }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
  }

  .hero-card {
    padding: var(--space-md) var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .split-reverse .split-image {
    order: -1;
  }

  .split-image-clip,
  .clip-left {
    clip-path: none;
    border-radius: var(--border-radius-lg);
  }

  .metrics {
    gap: var(--space-lg);
    flex-wrap: wrap;
  }

  .metric-value {
    font-size: var(--font-size-2xl);
  }

  /* Timeline mobile — vertical */
  .timeline {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin-bottom: var(--space-2xl);
  }

  .timeline-track {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: 100%;
    transform: none;
  }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .step-content {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    width: 100%;
  }

  .step-content::before {
    display: none;
  }

  .step-content-left,
  .step-content-right {
    flex-direction: row;
  }

  .step-content-left .step-card,
  .step-content-right .step-card {
    margin: 0;
  }

  .step-marker {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .step-card {
    text-align: left;
    max-width: none;
    width: 100%;
    padding: var(--space-md) var(--space-lg);
  }

  .section-header-center {
    margin-bottom: var(--space-2xl);
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .triage-content {
    padding: var(--space-lg);
    border-radius: 16px;
  }

  .triage-cards {
    grid-template-columns: 1fr;
  }

  .triage-title {
    font-size: var(--font-size-base);
  }

  .triage-steps::before {
    left: 5%;
    right: 5%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer {
    padding-bottom: 90px;
  }

  .footer-accent-line {
    margin-bottom: var(--space-2xl);
  }

  .footer-cta {
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg);
  }

  .footer-cta-form {
    flex-direction: column;
    max-width: 100%;
  }

  .footer-cta-badge {
    font-size: 0.55rem;
  }

  .footer-cta-title {
    font-size: var(--font-size-base);
  }

  .footer-brand-stats {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .footer-hours {
    max-width: 280px;
  }

  .sticky-cta-mobile {
    display: block;
  }

  .back-to-top {
    bottom: 90px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .section-title {
    font-size: var(--font-size-xl);
  }

  .section-text {
    font-size: var(--font-size-base);
  }

  .obras-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-xl);
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .metrics {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* --- UTILITÁRIOS AOS OVERRIDE --- */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}