/* =========================================================
   GUARDEMÍDIA — Design System CSS
   Versão 1.0 — Maio 2026
   Paleta: Verde #1C3A2A | Laranja #E85D20 | Creme #F7F5F0
   Fonte: Inter (Google Fonts)
   ========================================================= */

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

:root {
  /* Cores */
  --verde:         #1C3A2A;
  --verde-deep:    #0F2117;
  --verde-mid:     #17301F;
  --laranja:       #E85D20;
  --laranja-light: #FF7A3C;
  --laranja-dark:  #C84E18;
  --creme:         #F7F5F0;
  --creme-dark:    #EDE9E1;
  --muted:         #5F6F67;
  --muted-light:   #8A9D93;
  --border:        rgba(28,58,42,.12);
  --border-dark:   rgba(255,255,255,.10);
  --white:         #FFFFFF;
  --shadow:        0 24px 70px rgba(15,33,23,.13);
  --shadow-sm:     0 8px 32px rgba(15,33,23,.10);
  --shadow-lg:     0 40px 100px rgba(15,33,23,.18);
  --shadow-orange: 0 12px 40px rgba(232,93,32,.30);

  /* Tipografia */
  --font:    'Inter', system-ui, -apple-system, sans-serif;
  --h1-size: clamp(46px, 6.5vw, 84px);
  --h2-size: clamp(32px, 4vw, 52px);
  --h3-size: clamp(18px, 2vw, 22px);
  --body-lg: 19px;
  --body:    17px;
  --body-sm: 15px;
  --label:   13px;

  /* Espaçamento */
  --section-pad: 96px;
  --container:   1180px;

  /* Bordas */
  --radius-lg:   24px;
  --radius-md:   16px;
  --radius-sm:   10px;
  --radius-pill: 100px;

  /* Transições */
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --duration:  .35s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--creme);
  color: var(--verde);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* ── 2. TIPOGRAFIA ── */
h1, h2, h3, h4 { line-height: 1.1; font-weight: 900; }
h1 { font-size: var(--h1-size); letter-spacing: -0.075em; }
h2 { font-size: var(--h2-size); letter-spacing: -0.055em; }
h3 { font-size: var(--h3-size); letter-spacing: -0.02em; font-weight: 700; }

.section-label {
  font-size: var(--label);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--laranja);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--laranja);
  border-radius: 2px;
}

/* ── 3. CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ── 4. BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
  will-change: transform;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--laranja);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--laranja-dark);
  box-shadow: 0 16px 50px rgba(232,93,32,.40);
}

.btn-outline {
  background: transparent;
  color: var(--verde);
  border: 2px solid rgba(28,58,42,.30);
}
.btn-outline:hover {
  background: rgba(28,58,42,.06);
  border-color: rgba(28,58,42,.50);
  transform: translateY(-3px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.30);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.60);
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 11px 20px; font-size: 13px; }

/* ── 5. BANNER LANÇAMENTO ── */
#launch-banner {
  background: var(--laranja);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: var(--label);
  font-weight: 800;
  letter-spacing: .04em;
  position: relative;
  z-index: 20;
}
#launch-banner span { opacity: .85; font-weight: 500; }

/* ── 6. HEADER ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,245,240,.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
#site-header.scrolled {
  background: rgba(247,245,240,.97);
  box-shadow: 0 4px 30px rgba(15,33,23,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
}

#site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--verde);
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  transition: color var(--duration) var(--ease);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px;
  width: 0; height: 2px;
  background: var(--laranja);
  border-radius: 2px;
  transition: width var(--duration) var(--ease-out);
}
.nav-link:hover { color: var(--laranja); }
.nav-link:hover::after { width: calc(100% - 28px); }

.header-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color var(--duration);
}
.hamburger:hover { border-color: var(--laranja); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--verde);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease), opacity var(--duration);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: height .4s var(--ease-out), visibility .4s;
  background: rgba(247,245,240,.98);
  border-top: 1px solid var(--border);
}
.mobile-nav.open {
  visibility: visible;
  height: auto;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px 20px;
}
.mobile-nav-inner .nav-link {
  font-size: 16px;
  padding: 12px 16px;
}
.mobile-nav-inner .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── 7. HERO ── */
#hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(28,58,42,.08);
  border: 1px solid rgba(28,58,42,.15);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--verde);
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.hero-pill .dot {
  width: 8px; height: 8px;
  background: var(--laranja);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

h1.hero-title {
  margin-bottom: 24px;
  color: var(--verde);
}
h1.hero-title .highlight {
  color: var(--laranja);
  position: relative;
}

.hero-lead {
  font-size: var(--body-lg);
  font-weight: 500;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 44px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 440px;
}
.hero-badge-icon {
  width: 40px; height: 40px;
  background: rgba(28,58,42,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-badge-text { font-size: 13px; color: var(--muted); line-height: 1.4; }
.hero-badge-text strong { font-size: 12px; font-weight: 800; color: var(--verde); text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 2px; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 520px;
  z-index: 2;
}

.hero-main-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--verde), var(--verde-deep));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}
.hero-main-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-card-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: auto;
}
.hero-card-logo span { color: var(--laranja-light); }

.hero-card-content { position: relative; z-index: 1; }
.hero-card-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.hero-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* Metric cards flutuantes */
.metric-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  will-change: transform;
  z-index: 10;
}
.metric-card-1 { top: -24px; left: -40px; }
.metric-card-2 { top: 160px; right: -44px; }
.metric-card-3 { bottom: 60px; left: -30px; }

.metric-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--verde);
  letter-spacing: -0.04em;
  line-height: 1;
}
.metric-num span { font-size: 16px; color: var(--laranja); }
.metric-label { font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 4px; }

/* Stats band */
.stats-band {
  background: var(--verde);
  border-radius: var(--radius-lg);
  padding: 32px 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.stats-band::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  animation: sheen 5s ease-in-out infinite;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.stat-num {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--laranja-light); }
.stat-desc { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6); line-height: 1.4; }

/* ── 8. SEÇÃO GENÉRICA ── */
section {
  padding: var(--section-pad) 0;
}
.section-dark {
  background: linear-gradient(160deg, var(--verde-deep), var(--verde));
  color: var(--white);
}
.section-dark .section-label { color: var(--laranja-light); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.7); }

/* ── 9. PACOTE SELF STORAGE 360 ── */
#pacote {
  background: linear-gradient(160deg, var(--verde-deep) 0%, var(--verde) 100%);
}

.pacote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pacote-content h2 { color: var(--white); margin-bottom: 20px; }
.pacote-content p { color: rgba(255,255,255,.70); font-size: 18px; line-height: 1.7; }

.pacote-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.pacote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--laranja), var(--laranja-light));
  border-radius: 22px 22px 0 0;
}

.pacote-card-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--laranja-light);
  margin-bottom: 8px;
}
.pacote-card h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.pacote-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pacote-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}
.pacote-list li .check {
  width: 22px; height: 22px;
  background: rgba(232,93,32,.20);
  border: 1px solid rgba(232,93,32,.40);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--laranja-light);
  font-size: 13px;
  font-weight: 900;
  margin-top: 1px;
}

.pacote-card-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* ── 10. PORTFÓLIO ── */
#portfolio { background: var(--creme-dark); }

.portfolio-artes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.arte-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.arte-item:hover { transform: scale(1.03); box-shadow: var(--shadow); }
.arte-item img { width: 100%; height: 100%; object-fit: cover; }

.arte-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(28,58,42,.85) 0%, rgba(232,93,32,.30) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.arte-placeholder .ph-num {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255,255,255,.15);
  line-height: 1;
}
.arte-placeholder .ph-icon { font-size: 24px; opacity: .4; }

.portfolio-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-item {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--verde) 0%, rgba(232,93,32,.30) 100%);
}
.video-item video, .video-item iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  border: none;
}
.video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.video-placeholder .play-icon {
  width: 56px; height: 56px;
  background: rgba(232,93,32,.20);
  border: 2px solid rgba(232,93,32,.40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ── 11. SOBRE NÓS ── */
#sobre {
  background: var(--creme);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.sobre-visual {
  background: linear-gradient(145deg, var(--verde), var(--verde-deep));
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sobre-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: rgba(232,93,32,.12);
  border-radius: 50%;
}
.sobre-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}

.sobre-data-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative; z-index: 1;
}
.sobre-data-item { }
.sobre-data-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}
.sobre-data-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.sobre-data-value span { color: var(--laranja-light); }

.sobre-sector {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-md);
  padding: 20px;
}
.sobre-sector-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--laranja-light);
  margin-bottom: 12px;
}
.sobre-sector-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sector-stat-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.sector-stat-label { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 3px; line-height: 1.3; }

.sobre-content h2 { color: var(--verde); margin-bottom: 24px; }
.sobre-content p {
  font-size: var(--body);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.sobre-content p strong { color: var(--verde); font-weight: 700; }

.sobre-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.sobre-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--verde);
}
.sobre-highlight-icon {
  width: 36px; height: 36px;
  background: rgba(232,93,32,.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── 12. DIFERENCIAIS ── */
#diferenciais {
  background: var(--verde);
}

.diferenciais-inner {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 56px;
}

.diferenciais-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.diferenciais-header h2 { color: var(--white); }
.diferenciais-header p { color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.65; }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--duration) var(--ease), background var(--duration);
}
.why-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
}

.why-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: background var(--duration), transform var(--duration);
}
.why-item:hover .why-icon {
  background: rgba(232,93,32,.20);
  transform: scale(1.1);
}

.why-item h3 { color: var(--white); margin-bottom: 8px; font-size: 17px; }
.why-item p { color: rgba(255,255,255,.60); font-size: 14px; line-height: 1.65; }

/* ── 13. PROCESSO ── */
#processo {
  background: var(--creme);
}

.processo-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.processo-content h2 { color: var(--verde); margin-bottom: 20px; }
.processo-content p { color: var(--muted); font-size: 17px; line-height: 1.70; margin-bottom: 28px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  will-change: transform;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.step-number {
  width: 44px; height: 44px;
  background: var(--laranja);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.step-card h3 { color: var(--verde); margin-bottom: 8px; font-size: 16px; font-weight: 800; }
.step-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* Stagger delays para steps */
.step-card:nth-child(1) { transition-delay: .05s; }
.step-card:nth-child(2) { transition-delay: .15s; }
.step-card:nth-child(3) { transition-delay: .25s; }
.step-card:nth-child(4) { transition-delay: .35s; }

/* ── 14. FORMULÁRIO DE CONTATO ── */
#contato {
  background: var(--verde-deep);
  padding: var(--section-pad) 0;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contato-info h2 { color: var(--white); margin-bottom: 20px; }
.contato-info p { color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.70; margin-bottom: 36px; }

.contato-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contato-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}
.contato-detail-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contato-detail a { color: rgba(255,255,255,.85); }
.contato-detail a:hover { color: var(--laranja-light); }

.contact-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.70);
  letter-spacing: .03em;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  transition: border-color var(--duration), background var(--duration);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.30);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(232,93,32,.60);
  background: rgba(255,255,255,.10);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px;
  margin-top: 8px;
}
.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-privacy {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-top: 12px;
  line-height: 1.5;
}

/* Honeypot oculto */
.honeypot { display: none !important; }

/* ── 15. CTA WHATSAPP ── */
#cta-whatsapp {
  background: linear-gradient(135deg, #E85D20 0%, #ff4c12 100%);
  padding: 72px 0;
}

.cta-wa-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-wa-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(28px, 3.5vw, 44px);
}
.cta-wa-inner p {
  color: rgba(255,255,255,.80);
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.btn-whatsapp {
  background: var(--white);
  color: var(--laranja);
  font-size: 17px;
  font-weight: 800;
  padding: 20px 40px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 50px rgba(0,0,0,.20);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration);
}
.btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.btn-whatsapp svg { width: 24px; height: 24px; }

/* ── 16. FOOTER ── */
footer {
  background: var(--verde-deep);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}

.footer-brand img { height: 36px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.50); line-height: 1.65; max-width: 240px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.60);
  transition: color var(--duration);
}
.footer-col ul li a:hover { color: var(--laranja-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.60);
  margin-bottom: 12px;
  line-height: 1.4;
}
.footer-contact-item .ico { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,.60); }
.footer-contact-item a:hover { color: var(--laranja-light); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,.60);
  transition: background var(--duration), color var(--duration), transform var(--duration);
}
.social-link:hover {
  background: rgba(232,93,32,.20);
  color: var(--laranja-light);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.30); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.30); }
.footer-legal a:hover { color: rgba(255,255,255,.60); }

/* ── 17. ORBS DE FUNDO ── */
.bg-orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
  will-change: transform;
}
.orb-1 { width: 500px; height: 500px; background: rgba(28,58,42,.5); top: -100px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(232,93,32,.12); top: 40vh; right: -80px; }
.orb-3 { width: 600px; height: 600px; background: rgba(28,58,42,.25); bottom: -200px; left: 30%; }

/* ── 18. SCROLL REVEAL ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal          { transform: translateY(36px); }
.reveal-left     { transform: translateX(-36px); }
.reveal-right    { transform: translateX(36px); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translate(0); }

.stagger-1 { transition-delay: .05s; }
.stagger-2 { transition-delay: .15s; }
.stagger-3 { transition-delay: .25s; }
.stagger-4 { transition-delay: .35s; }
.stagger-5 { transition-delay: .45s; }

/* ── 19. ANIMAÇÕES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.4); }
}
@keyframes sheen {
  0%   { left: -100%; }
  40%, 100% { left: 160%; }
}
@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(8px); }
}

.anim-1 { animation: fadeUp .8s var(--ease-out) both; }
.anim-2 { animation: fadeUp .8s .15s var(--ease-out) both; }
.anim-3 { animation: fadeUp .8s .3s var(--ease-out) both; }
.anim-4 { animation: fadeUp .8s .45s var(--ease-out) both; }
.anim-5 { animation: fadeUp .8s .6s var(--ease-out) both; }

/* ── 20. RESPONSIVIDADE ── */

/* Tablet: ≤ 980px */
@media (max-width: 980px) {
  :root { --section-pad: 72px; }

  #site-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-grid        { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual      { height: 360px; }
  .metric-card-1    { top: -16px; left: 0; }
  .metric-card-2    { right: 0; }
  .metric-card-3    { left: 0; }
  .stats-band-grid  { grid-template-columns: repeat(3, 1fr); }

  .pacote-grid      { grid-template-columns: 1fr; gap: 40px; }
  .sobre-grid       { grid-template-columns: 1fr; gap: 40px; }
  .processo-grid    { grid-template-columns: 1fr; gap: 40px; }
  .contato-grid     { grid-template-columns: 1fr; gap: 40px; }

  .diferenciais-header { grid-template-columns: 1fr; gap: 20px; }
  .diferenciais-inner  { padding: 40px 32px; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Mobile: ≤ 640px */
@media (max-width: 640px) {
  :root { --section-pad: 60px; }

  .hero-visual      { height: 280px; }
  .hero-actions     { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-band-grid  { grid-template-columns: 1fr; gap: 24px; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 0 20px; }

  .diferenciais-grid { grid-template-columns: 1fr; }
  .diferenciais-inner { padding: 28px 24px; }

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

  .portfolio-artes-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .portfolio-videos-grid { grid-template-columns: 1fr; }

  .form-row         { grid-template-columns: 1fr; }

  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; gap: 12px; }

  .metric-card { display: none; }
  .hero-badge { flex-direction: column; text-align: center; }
}

/* ── 21. PÁGINA /OBRIGADO ── */
.obrigado-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--creme);
}
.obrigado-card {
  max-width: 560px;
  width: 90%;
  text-align: center;
  padding: 56px 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.obrigado-icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: block;
}
.obrigado-card h1 {
  font-size: clamp(24px, 4vw, 36px);
  color: var(--verde);
  margin-bottom: 16px;
}
.obrigado-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.obrigado-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ── 22. SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--creme-dark); }
::-webkit-scrollbar-thumb { background: rgba(28,58,42,.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(28,58,42,.40); }

/* ── 23. SELEÇÃO DE TEXTO ── */
::selection {
  background: rgba(232,93,32,.20);
  color: var(--verde);
}
