/* ============================================================
   RIGOTTI MKT — MEDIA HUB
   Paleta: Onyx #0B0F19 · Ouro #E3C588 · Esmeralda #009F6B
   ============================================================ */

:root {
  --onyx: #0B0F19;
  --onyx-2: #101625;
  --panel: #141a29;
  --gold: #E3C588;
  --gold-soft: #c9a86a;
  --green: #009F6B;
  --green-bright: #00C97F;
  --text: #EAEDF3;
  --text-dim: #9AA3B5;
  --border: rgba(255, 255, 255, 0.09);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 18px;
  --shadow-panel: 0 18px 50px rgba(0, 0, 0, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--onyx);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

.icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--onyx); }
::-webkit-scrollbar-thumb { background: rgba(227, 197, 136, 0.35); border-radius: 3px; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.8em 1.6em;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-green {
  color: #fff;
  background: linear-gradient(135deg, #01b87c, var(--green) 55%, #007a52);
  border-color: rgba(0, 201, 127, 0.55);
  box-shadow: 0 6px 24px rgba(0, 159, 107, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(0, 201, 127, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-gold {
  color: var(--gold);
  background: rgba(227, 197, 136, 0.06);
  border-color: rgba(227, 197, 136, 0.55);
  box-shadow: inset 0 0 0 1px rgba(227, 197, 136, 0.15);
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: rgba(227, 197, 136, 0.14);
  box-shadow: 0 8px 28px rgba(227, 197, 136, 0.18);
}

.btn-lg { padding: 1em 1.9em; font-size: 0.98rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo { text-decoration: none; line-height: 1.1; }
.header-logo-main {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--text);
}
.header-logo-sub {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--gold);
}

.header-nav { display: flex; gap: 34px; }

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--text); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: rgba(11, 15, 25, 0.96);
  backdrop-filter: blur(18px);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-link {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-menu-link:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 24px 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/bg-city.jpg') center / cover no-repeat;
  z-index: -2;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 15, 25, 0.92) 0%, rgba(11, 15, 25, 0.55) 45%, rgba(11, 15, 25, 0.75) 100%),
    linear-gradient(to bottom, rgba(11, 15, 25, 0.6), transparent 30%, rgba(11, 15, 25, 0.95) 96%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: center;
}

/* -- Coluna de texto -- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  padding: 0.55em 1.2em;
  border: 1px solid rgba(227, 197, 136, 0.35);
  border-radius: 999px;
  background: rgba(227, 197, 136, 0.07);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 26px;
}
.hero-title-gold {
  background: linear-gradient(115deg, #f0d9a8, var(--gold) 40%, #b98d4f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtext {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 46ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* -- Composição visual (camadas) -- */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 604 / 575;
  margin-left: auto;
}

/* Janela Amo Resende */
.window-amoresende {
  position: absolute;
  left: 19%;
  top: 7%;
  width: 61%;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
}
.window-header {
  display: flex;
  justify-content: center;
  padding: 10px 14px;
  background: rgba(16, 20, 32, 0.9);
  border-bottom: 1px solid var(--border);
}
.window-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.window-body { position: relative; }
.window-photo { width: 100%; aspect-ratio: 356 / 165; object-fit: cover; }

.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 6px;
  border-radius: 999px;
  background: rgba(10, 13, 22, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.profile-chip-top { position: absolute; top: 10px; left: 40%; }
.profile-chip-text { display: flex; flex-direction: column; line-height: 1.15; }
.profile-chip-text strong { font-size: 0.72rem; font-weight: 700; color: #fff; }
.profile-chip-text small { font-size: 0.62rem; color: var(--text-dim); }

.profile-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.profile-avatar-ig { background: radial-gradient(circle at 30% 30%, #f9ce34, #ee2a7b 55%, #6228d7); }
.profile-avatar-cr { background: linear-gradient(135deg, var(--gold), #8a6a35); color: var(--onyx); }
.profile-avatar-photo {
  background: url('../assets/avatar-couple.png') center / cover no-repeat;
  border: 1px solid rgba(227, 197, 136, 0.4);
}

.window-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.78rem;
  color: var(--text);
  background: rgba(16, 20, 32, 0.92);
  border-top: 1px solid var(--border);
}
.window-caption .icon { color: var(--gold); }

/* Prateleira lateral */
.panel-shelf {
  position: absolute;
  right: -1.5%;
  top: 6%;
  width: 20%;
  z-index: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
}
.panel-shelf img { width: 100%; aspect-ratio: 123 / 188; object-fit: cover; }

/* Foto do casal */
.hero-couple {
  position: absolute;
  left: 0;
  top: 1%;
  width: 44%;
  z-index: 2;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

/* Painel de vídeo @casalrigotti */
.panel-video {
  position: absolute;
  left: 20.5%;
  top: 49.5%;
  width: 33.5%;
  z-index: 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.panel-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(227, 197, 136, 0.25);
}
.panel-video-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.74rem;
  background: rgba(16, 20, 32, 0.92);
  border-bottom: 1px solid var(--border);
}
.panel-video-header .profile-avatar { width: 20px; height: 20px; font-size: 0.5rem; }
.panel-video-pin { margin-left: auto; color: var(--text-dim); }
.panel-video-body img { width: 100%; aspect-ratio: 196 / 164; object-fit: cover; }
.panel-video-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(16, 20, 32, 0.92);
  border-top: 1px solid var(--border);
}
.panel-video-footer .profile-avatar { width: 18px; height: 18px; font-size: 0.45rem; }

/* Painel gráfico 100% vídeo */
.panel-graph {
  position: absolute;
  left: 56.5%;
  top: 50.5%;
  width: 35%;
  z-index: 3;
  padding: 16px 16px 12px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #161d2e, #0e1320);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.panel-graph:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 201, 127, 0.3);
}
.panel-graph-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.panel-graph-number {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
}
.panel-graph-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 4px;
}
.panel-graph-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(227, 197, 136, 0.4);
}

.graph { width: 100%; height: 74px; }
.graph-line {
  stroke: var(--green-bright);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  filter: drop-shadow(0 0 6px rgba(0, 201, 127, 0.6));
}
.graph-area { opacity: 0; transition: opacity 0.8s ease 1s; }
.panel-graph.is-drawn .graph-line { animation: draw-line 1.6s ease-out forwards; }
.panel-graph.is-drawn .graph-area { opacity: 1; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }

.panel-graph-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.panel-graph-retention { font-size: 0.72rem; font-weight: 600; color: var(--green-bright); }
.panel-graph-star { color: var(--gold); width: 1.3em; height: 1.3em; }

/* Chips de credibilidade */
.credibility-chip {
  position: absolute;
  bottom: -1%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  background: rgba(13, 17, 28, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.credibility-chip-1 { left: 20.5%; }
.credibility-chip-2 { left: 56.5%; }
.credibility-text { display: flex; flex-direction: column; line-height: 1.2; }
.credibility-text strong { font-size: 0.7rem; color: #fff; }
.credibility-text small { font-size: 0.62rem; color: var(--text-dim); }

/* ============================================================
   ANIMAÇÕES DE CARREGAMENTO / SCROLL
   ============================================================ */
.panel-load {
  opacity: 0;
  transform: translateY(24px);
  animation: panel-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes panel-in {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-visual { opacity: 1; }

/* Hero: entrada imediata dos textos */
.hero-content .reveal {
  animation: panel-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content .reveal:nth-child(1) { animation-delay: 0.05s; }
.hero-content .reveal:nth-child(2) { animation-delay: 0.15s; }
.hero-content .reveal:nth-child(3) { animation-delay: 0.25s; }
.hero-content .reveal:nth-child(4) { animation-delay: 0.35s; }

/* ============================================================
   SEÇÕES GERAIS
   ============================================================ */
.section-head { text-align: center; margin-bottom: 54px; }
.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--text);
}

/* -- Estatísticas -- */
.stats {
  padding: 90px 24px;
  background: linear-gradient(to bottom, var(--onyx), var(--onyx-2));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-box {
  padding: 34px 26px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #151b2b, #0e1320);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.stat-box:hover { border-color: rgba(227, 197, 136, 0.3); transform: translateY(-4px); }
.stat-number {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.stat-number-green { color: var(--green-bright); }
.stat-number-gold { color: var(--gold); }
.stat-label { display: block; font-size: 0.85rem; color: var(--text-dim); margin-top: 8px; }

/* -- Soluções -- */
.solutions { padding: 110px 24px; max-width: 1200px; margin: 0 auto; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.solution-card {
  padding: 30px 26px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #151b2b, #0e1320);
  border: 1px solid var(--border);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 197, 136, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.solution-icon .icon { width: 22px; height: 22px; }
.solution-icon-green { background: rgba(0, 201, 127, 0.1); color: var(--green-bright); border: 1px solid rgba(0, 201, 127, 0.25); }
.solution-icon-blue { background: rgba(80, 140, 220, 0.1); color: #7fb0e8; border: 1px solid rgba(80, 140, 220, 0.25); }
.solution-icon-gold { background: rgba(227, 197, 136, 0.1); color: var(--gold); border: 1px solid rgba(227, 197, 136, 0.25); }
.solution-icon-purple { background: rgba(170, 120, 240, 0.1); color: #bb96ec; border: 1px solid rgba(170, 120, 240, 0.25); }
.solution-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--text);
}
.solution-card p { font-size: 0.85rem; line-height: 1.65; color: var(--text-dim); }

/* -- Portfólio -- */
.portfolio { padding: 40px 24px 110px; max-width: 1200px; margin: 0 auto; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 15;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(165deg, #1a2236, #0d1220);
  border: 1px solid var(--border);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.reel-card:hover { transform: translateY(-6px); border-color: rgba(227, 197, 136, 0.3); }

/* Placeholder (emoji) — removido quando houver foto real */
.reel-emoji { font-size: 2.6rem; transition: transform 0.4s ease; }
.reel-card:hover .reel-emoji { transform: scale(1.2); }

/* Foto real do portfólio (Reels) */
.reel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.reel-card:hover .reel-image { transform: scale(1.05); }
.reel-card.has-image .reel-emoji { display: none; }
.reel-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(8, 11, 19, 0.95), transparent);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.reel-card:hover .reel-overlay { opacity: 1; transform: translateY(0); }
.reel-overlay strong { font-size: 0.85rem; color: #fff; }
.reel-overlay small { font-size: 0.7rem; color: var(--green-bright); }

.portfolio-loading,
.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 40px 20px;
}

/* -- CTA final -- */
.cta { padding: 30px 24px 120px; }
.cta-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  border-radius: 26px;
  background:
    radial-gradient(ellipse 70% 120% at 50% -20%, rgba(227, 197, 136, 0.12), transparent 60%),
    linear-gradient(160deg, #151b2b, #0d1220);
  border: 1px solid rgba(227, 197, 136, 0.2);
}
.cta-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 46px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { line-height: 1.15; }
.footer-social { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-social a {
  font-size: 0.84rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: #5c6577; }

/* Botão flutuante */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #01b87c, var(--green));
  box-shadow: 0 10px 32px rgba(0, 159, 107, 0.5);
  transition: transform 0.3s ease;
}
.whatsapp-float .icon { width: 26px; height: 26px; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { margin: 0 auto; }
  .solutions-grid, .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav, .btn-header { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding-top: 110px; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions .btn { width: 100%; }
  .stats-inner, .solutions-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Composição simplificada no mobile: empilha em fluxo */
  .hero-visual { aspect-ratio: auto; display: flex; flex-direction: column; gap: 16px; }
  .window-amoresende, .panel-video, .panel-graph,
  .credibility-chip, .hero-couple, .panel-shelf {
    position: static;
    width: 100%;
  }
  .hero-couple { width: 70%; margin: 0 auto -30px; }
  .panel-shelf { display: none; }
  .credibility-chip-2 { display: none; }
  .credibility-chip { align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .panel-load, .reveal { opacity: 1; transform: none; }
}
