:root {
  --bg:          #EDE8E0;
  --bg-dark:     #1A2B4A;
  --bg-darker:   #0F0F0F;
  --bg-light:    #FAFAF7;
  --text:        #0F0F0F;
  --text-muted:  #5C5C5C;
  --accent:      #B8962E;
  --white:       #FAFAF7;
  --border:      #D4CEC4;

  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'DM Sans', sans-serif;

  --radius-pill: 999px;
  --transition:  0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  font-optical-sizing: auto;
  position: relative;
}

/* Page background — textura e profundidade */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(184, 150, 46, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 95% 15%, rgba(26, 43, 74, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(184, 150, 46, 0.06) 0%, transparent 45%),
    linear-gradient(175deg, #EDE8E0 0%, #E6E0D6 45%, #EDE8E0 100%);
}

.page-bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  mix-blend-mode: multiply;
}

.page-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.page-bg-orb--1 {
  width: 560px;
  height: 560px;
  top: -12%;
  right: -8%;
  background: rgba(184, 150, 46, 0.14);
}

.page-bg-orb--2 {
  width: 480px;
  height: 480px;
  bottom: 8%;
  left: -10%;
  background: rgba(26, 43, 74, 0.07);
}

.page-bg-orb--3 {
  width: 360px;
  height: 360px;
  top: 42%;
  left: 38%;
  background: rgba(212, 206, 196, 0.55);
}

main {
  position: relative;
  z-index: 1;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section label */
.section-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}

.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
}

.btn-gold {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn-gold:hover {
  background: #9a7d26;
  border-color: #9a7d26;
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 0.8rem;
}

/* Pill label */
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  color: var(--text);
  margin-bottom: 32px;
}

.pill-label .star {
  color: var(--accent);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.4s ease,
              box-shadow 0.4s ease,
              padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(237, 232, 224, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(15, 15, 15, 0.05);
  padding: 14px 0;
}

.navbar.nav-hidden {
  transform: translateY(-110%);
}

.navbar.nav-visible {
  transform: translateY(0);
}

.navbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.navbar-logo {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--text);
  text-align: center;
  justify-self: center;
}

.navbar-links-left {
  justify-content: flex-start;
}

.navbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-links-right {
  justify-content: flex-end;
}

.navbar-links a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color var(--transition);
}

.navbar-links a:hover {
  color: var(--accent);
}

.navbar-phone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}

.navbar-phone i {
  color: var(--accent);
  font-size: 12px;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  font-size: 24px;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg);
  z-index: 2000;
  padding: 80px 40px 40px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 30px rgba(15, 15, 15, 0.1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-drawer-links a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-drawer-links a:hover {
  color: var(--accent);
}

.mobile-drawer-phone {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
}

.mobile-drawer-phone i {
  color: var(--accent);
  margin-right: 8px;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10001;
  background: rgba(212, 206, 196, 0.35);
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), #d4af5a);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Hero */
.hero {
  background: transparent;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(250, 250, 247, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(100px, 1fr) 1px minmax(0, 780px) 1px minmax(100px, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

.hero-line-col {
  align-self: stretch;
  width: 1px;
  min-height: 320px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(184, 150, 46, 0.15) 15%,
    var(--accent) 50%,
    rgba(184, 150, 46, 0.15) 85%,
    transparent 100%
  );
  opacity: 0;
  transform: scaleY(0.3);
  transform-origin: center top;
  transition:
    opacity 1.2s ease 0.4s,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.hero-layout.is-ready .hero-line-col {
  opacity: 0.55;
  transform: scaleY(1);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-side--left {
  align-items: flex-end;
  text-align: right;
}

.hero-side--right {
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-width: 120px;
}

.hero-side--left .hero-badge {
  border-right: 2px solid transparent;
  padding-right: 8px;
  transition: border-color 0.4s ease;
}

.hero-side--right .hero-badge {
  border-left: 2px solid transparent;
  padding-left: 8px;
  transition: border-color 0.4s ease;
}

.hero-badge.is-visible {
  border-color: var(--border);
}

.hero-side--left .hero-badge.is-visible {
  border-right-color: var(--accent);
}

.hero-side--right .hero-badge.is-visible {
  border-left-color: var(--accent);
}

.hero-badge-number {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  color: var(--text);
  line-height: 1;
}

.hero-badge-number--text {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
}

.hero-badge-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  will-change: transform, opacity;
  transition: none;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.hero-line {
  display: block;
}

.hero-highlight {
  font-style: italic;
  color: var(--accent);
}

.hero-text {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-percent {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.hero-ring {
  position: relative;
  width: 148px;
  height: 148px;
  margin-bottom: 12px;
}

.hero-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.hero-ring-track {
  fill: none;
  stroke: var(--border);
  stroke-width: 4;
}

.hero-ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 389.56;
  stroke-dashoffset: 389.56;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-ring.is-animated .hero-ring-fill {
  stroke-dashoffset: 7.79;
}

.hero-percent-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--text);
  line-height: 1;
}

.hero-percent-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero-trust li:not(:last-child)::after {
  content: '·';
  margin: 0 14px;
  color: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  transition: opacity 0.3s ease;
  animation: hint-bounce 2.2s ease-in-out infinite;
}

.hero-scroll-hint i {
  font-size: 0.6rem;
  color: var(--accent);
}

@keyframes hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Stats bar */
.stats {
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(184, 150, 46, 0.08) 0%, transparent 60%),
    var(--bg-dark);
  padding: 60px 0;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.stats.is-inview {
  clip-path: inset(0 0 0 0);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 20px;
}

.stat-item:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
  font-size: 2rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .suffix {
  font-size: 2rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

/* Services */
.services {
  padding: 120px 0;
  background: transparent;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 250, 247, 0.55) 0%, transparent 40%, transparent 60%, rgba(230, 224, 214, 0.45) 100%);
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 400;
  color: var(--text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
  background: rgba(250, 250, 247, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-card.is-visible {
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay),
    background 0.3s ease;
}

.service-card.is-visible:hover {
  transform: translate3d(0, -4px, 0);
  background: rgba(250, 250, 247, 0.5);
}

.service-card:nth-child(-n+3) {
  border-top: 1px solid var(--border);
}

.service-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.service-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.45rem;
  margin-bottom: 16px;
  color: var(--text);
}

.service-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-link {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--accent);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  gap: 12px;
}

/* About */
.about {
  background: rgba(250, 250, 247, 0.4);
  padding: 120px 0;
  position: relative;
  border-top: 1px solid rgba(212, 206, 196, 0.7);
  border-bottom: 1px solid rgba(212, 206, 196, 0.7);
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184, 150, 46, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 56px;
}

.about-header .section-label {
  margin-bottom: 20px;
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 28px;
  line-height: 1.1;
}

.about-text {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.about-card {
  background: rgba(250, 250, 247, 0.85);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.about-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(15, 15, 15, 0.06);
}

.about-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}

.about-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-cta {
  text-align: center;
}

/* Process */
.process {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(245, 243, 238, 0.9) 0%, rgba(250, 250, 247, 0.5) 100%);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(circle at 1px 1px, rgba(212, 206, 196, 0.45) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.process-step {
  position: relative;
  padding-top: 16px;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(100% + 8px);
  width: calc(100% - 16px);
  height: 1px;
  background: var(--border);
  display: block;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step.is-visible:not(:last-child)::after {
  transform: scaleX(1);
  transition-delay: 0.35s;
}

.process-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 24px;
}

.process-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text);
}

.process-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact */
.contact {
  background: var(--bg-dark);
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 24px;
}

.contact-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 440px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  color: var(--white);
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--accent);
  width: 20px;
  margin-top: 4px;
}

.contact-map {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(30%);
}

/* Footer */
.footer {
  background: var(--bg-darker);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.footer-cnpj {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-divider {
  height: 1px;
  background: #2A2A2A;
  margin-bottom: 32px;
}

.footer-bottom {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  text-align: center;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: whatsapp-enter 0.6s ease 1s both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes whatsapp-enter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Scroll animations */
.scroll-item {
  --scroll-delay: 0ms;
}

.scroll-item[data-delay="1"] { --scroll-delay: 80ms; }
.scroll-item[data-delay="2"] { --scroll-delay: 160ms; }
.scroll-item[data-delay="3"] { --scroll-delay: 240ms; }
.scroll-item[data-delay="4"] { --scroll-delay: 320ms; }
.scroll-item[data-delay="5"] { --scroll-delay: 400ms; }
.scroll-item[data-delay="6"] { --scroll-delay: 480ms; }
.scroll-item[data-delay="7"] { --scroll-delay: 560ms; }

.scroll-item[data-scroll="fade-up"] {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay);
}

.scroll-item[data-scroll="fade-left"] {
  opacity: 0;
  transform: translate3d(-56px, 0, 0);
  filter: blur(4px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay);
}

.scroll-item[data-scroll="fade-right"] {
  opacity: 0;
  transform: translate3d(56px, 0, 0);
  filter: blur(4px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay);
}

.scroll-item[data-scroll="clip-up"] {
  opacity: 0;
  transform: translate3d(0, 110%, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay);
}

.scroll-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.scroll-item[data-scroll="fade-up"].is-visible {
  transform: translate3d(0, 0, 0);
}

/* Legacy reveal — páginas legais */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-item,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .stats {
    clip-path: none !important;
  }

  .hero-image-inner,
  .hero-content {
    transform: none !important;
  }

  .hero-ring-fill {
    stroke-dashoffset: 7.79 !important;
    transition: none !important;
  }

  .hero-scroll-hint {
    display: none;
  }

  .scroll-progress {
    display: none;
  }

  .navbar.nav-hidden {
    transform: none;
  }
}

/* Legal pages */
.legal-page {
  padding: 140px 0 80px;
  background: var(--bg);
  min-height: 100vh;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--text);
  font-weight: 500;
}

.legal-alert {
  background: rgba(184, 150, 46, 0.1);
  border-left: 4px solid var(--accent);
  padding: 24px 32px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}

.legal-alert p {
  color: var(--text);
  margin-bottom: 0;
}

.legal-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
    max-width: 780px;
    gap: 0;
  }

  .hero-line-col,
  .hero-side {
    display: none;
  }
}

@media (max-width: 1023px) {
  .hero {
    padding: 100px 20px 72px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.25rem);
  }

  .hero-text {
    max-width: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .about {
    padding: 80px 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .navbar-inner {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .navbar-links-left,
  .navbar-links-right,
  .navbar-right,
  .navbar-phone {
    display: none;
  }

  .navbar-logo {
    justify-self: start;
  }

  .navbar-toggle {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item:nth-child(odd)::after {
    display: block;
  }

  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after {
    display: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .navbar-links {
    gap: 20px;
  }

  .navbar-links a {
    font-size: 11px;
  }
}
