/* Hutz components — navbar, hero, sections, footer, sticky CTA */

/* ─── NavBar ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  padding: 14px 0;
  transition: all 0.32s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--border-subtle);
  padding: 10px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-links {
  display: none;
  gap: 28px;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { padding: 10px 18px; font-size: 14px; }
.nav-cta-label { display: none; }
@media (min-width: 480px) { .nav-cta-label { display: inline; } }

.logo-link {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--accent-pink);
  transition: filter 0.22s;
}
.logo-link:hover {
  filter: drop-shadow(0 0 calc(12px * var(--glow-strength)) rgba(255, 31, 143, calc(0.7 * var(--glow-strength))));
}
.logo-img {
  display: block;
  /* aspect ratio do SVG é 595.28×580 — width:auto preserva proporção independente das dimensões HTML */
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 calc(8px * var(--glow-strength)) rgba(255, 31, 143, calc(0.5 * var(--glow-strength))));
}
.footer-brand .logo-img { height: 64px; }
.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero[data-layout="video"] { padding-top: 80px; }

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video, .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 60%, var(--bg-base) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.85) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-grid[data-layout="split"] { grid-template-columns: 1.3fr 1fr; }
  .hero-grid[data-layout="image"] { grid-template-columns: 1fr 1.4fr; }
  .hero-grid[data-layout="video"] { grid-template-columns: 1fr; max-width: 900px; }
}

.hero-content { display: flex; flex-direction: column; gap: 28px; }
.hero[data-layout="video"] .hero-content { text-align: center; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  font-size: 12px; color: var(--text-secondary);
  font-weight: 500;
  width: fit-content;
}
.dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-pink);
  box-shadow: 0 0 10px var(--accent-pink);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-h1 {
  font-size: clamp(40px, 7.5vw, 88px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero[data-layout="video"] .hero-h1 {
  font-size: clamp(44px, 8vw, 104px);
  max-width: 14ch;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0;
}
.hero[data-layout="video"] .hero-sub { margin: 0 auto; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero[data-layout="video"] .hero-ctas { justify-content: center; }

.hero-proof {
  display: flex; align-items: center; gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}
.avatars { display: flex; }
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  margin-left: -8px;
  background: #2a2a2a;
}
.avatar:first-child { margin-left: 0; }
.proof-text { font-size: 14px; color: var(--text-secondary); line-height: 1.4; }
.proof-num { color: var(--text-primary); font-weight: 700; font-variant-numeric: tabular-nums; }
.proof-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 0 calc(60px * var(--glow-strength)) rgba(255, 31, 143, calc(0.2 * var(--glow-strength)));
}
.hero-visual img, .hero-visual video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.4) 100%);
}

.hero-scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  z-index: 2;
  opacity: 0.6;
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint { 0%,100% { transform: scaleY(1); transform-origin: top; } 50% { transform: scaleY(0.4); transform-origin: top; } }

/* ─── ICP ─── */
.icp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .icp-grid { grid-template-columns: repeat(3, 1fr); } }

.icp-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.22s ease;
}
.icp-card:hover {
  border-color: color-mix(in oklab, var(--accent-pink) 40%, var(--border-subtle));
  transform: translateY(-2px);
}
.icp-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: color-mix(in oklab, var(--accent-pink) 12%, transparent);
  color: var(--accent-pink);
  margin-bottom: 20px;
}
.icp-card h3 { font-size: 20px; margin-bottom: 8px; font-weight: 700; }
.icp-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.55; margin: 0; }

/* ─── How / Steps ─── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.step {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px 24px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-pink);
  text-shadow: 0 0 calc(24px * var(--glow-strength)) rgba(255, 31, 143, calc(0.5 * var(--glow-strength)));
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step-icon { position: absolute; top: 32px; right: 24px; color: var(--text-muted); }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: all 0.32s var(--ease);
  background: var(--bg-elevated);
}
.gallery-item:nth-child(3n+2) { aspect-ratio: 1/1; }
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-item:hover {
  transform: scale(1.02);
  border-color: color-mix(in oklab, var(--accent-pink) 50%, var(--border-subtle));
  box-shadow: 0 0 calc(40px * var(--glow-strength)) rgba(255, 31, 143, calc(0.25 * var(--glow-strength)));
}
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 16px;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 50%);
  transition: opacity 0.22s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-meta { font-size: 13px; font-weight: 500; color: var(--text-primary); }

.gallery-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 40px;
  padding: 14px 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-weight: 500; font-size: 15px;
  text-decoration: none;
  transition: all 0.18s;
}
.gallery-cta:hover { border-color: var(--accent-pink); color: var(--accent-pink); }

/* ─── Diffs ─── */
.diffs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .diffs-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

.diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.22s ease;
}
.diff-card:hover { border-color: color-mix(in oklab, var(--accent-pink) 30%, var(--border-subtle)); }
.diff-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: color-mix(in oklab, var(--accent-pink) 12%, transparent);
  color: var(--accent-pink);
  margin-bottom: 20px;
}
.diff-card h3 { font-size: 22px; margin-bottom: 10px; line-height: 1.2; }
.diff-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; margin: 0; }

/* ─── Testimonials (CSS scroll-snap carousel) ─── */
.testimonial-stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}
.testimonial-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}
.testimonial-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) { .testimonial-card { grid-template-columns: 1fr 1.2fr; } }
.testimonial-visual { position: relative; aspect-ratio: 4/3; min-height: 200px; background: var(--bg-elevated); }
.testimonial-visual img, .testimonial-visual video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
@media (min-width: 768px) { .testimonial-visual { aspect-ratio: auto; min-height: 320px; } }
.testimonial-body {
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  justify-content: center;
}
.testimonial-stars { display: flex; gap: 2px; color: var(--accent-pink); }
.testimonial-stars svg { fill: currentColor; }
.testimonial-quote {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
  text-wrap: balance;
}
.testimonial-author { display: flex; flex-direction: column; gap: 2px; font-size: 14px; margin-top: 8px; }
.testimonial-author strong { color: var(--text-primary); font-weight: 600; }
.testimonial-author span { color: var(--text-secondary); }
.testimonial-author .testimonial-city { color: var(--text-muted); font-size: 13px; }

.testimonial-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.18s;
}
.testimonial-arrow:hover { background: var(--accent-pink); border-color: var(--accent-pink); }

.testimonial-dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 24px;
}
.testimonial-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-subtle);
  border: none; padding: 0; cursor: pointer;
  transition: all 0.18s;
}
.testimonial-dots .dot.is-active {
  background: var(--accent-pink);
  width: 24px;
  border-radius: 4px;
}

/* ─── FAQ (native <details>) ─── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.18s;
}
.faq-item[open] { border-color: color-mix(in oklab, var(--accent-pink) 40%, var(--border-subtle)); }
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 16px; font-weight: 500;
  text-align: left;
  line-height: 1.4;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--accent-pink); }
.faq-icon-plus { display: inline; }
.faq-icon-minus { display: none; }
.faq-item[open] .faq-icon-plus { display: none; }
.faq-item[open] .faq-icon-minus { display: inline; }
.faq-a {
  margin: 0;
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  max-width: 700px;
}

/* ─── Final CTA + email ─── */
.final-cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 31, 143, 0.08) 0%, transparent 70%),
    var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}
.final-h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  text-align: center;
  margin-bottom: 16px;
  text-wrap: balance;
}
.final-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 580px;
  margin: 0 auto 56px;
}
.final-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .final-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

.final-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.final-whats {
  background:
    radial-gradient(ellipse at top right, color-mix(in oklab, var(--accent-pink) 8%, transparent) 0%, transparent 60%),
    var(--bg-elevated);
  border-color: color-mix(in oklab, var(--accent-pink) 25%, var(--border-subtle));
}
.final-card-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); font-weight: 600;
}
.final-card h3 { font-size: 26px; line-height: 1.15; }
.final-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.55; margin: 0; }
.final-meta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-size: 13px; color: var(--text-secondary);
}
.final-meta strong { color: var(--accent-pink); }

.email-form { margin-top: 8px; }
.email-row {
  display: flex; gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 6px;
  transition: border-color 0.18s;
}
.email-row:focus-within { border-color: var(--accent-pink); }
.email-row.has-error { border-color: #FF4D4D; }
.email-row input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  color: var(--text-primary);
  padding: 10px 14px;
  font-family: inherit; font-size: 15px;
}
.email-row input::placeholder { color: var(--text-muted); }
.email-row .btn-secondary { padding: 10px 20px; font-size: 14px; border-radius: 8px; }
.email-error { margin-top: 8px; color: #FF8080; font-size: 13px; }
.email-success {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  background: color-mix(in oklab, var(--accent-pink) 8%, transparent);
  border: 1px solid color-mix(in oklab, var(--accent-pink) 30%, transparent);
  border-radius: 12px;
  color: var(--accent-pink);
}
.email-success > div { display: flex; flex-direction: column; }
.email-success strong { color: var(--text-primary); font-weight: 600; font-size: 15px; }
.email-success span { color: var(--text-secondary); font-size: 13px; }

/* ─── Footer ─── */
.footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 1fr 2fr; } }

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.5;
  margin: 16px 0 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
.footer-cols h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-cols a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.18s;
}
.footer-cols a:hover { color: var(--text-primary); }

.footer-bottom {
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all 0.18s;
}
.footer-social a:hover { color: var(--accent-pink); border-color: var(--accent-pink); }
.footer-legal {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px; color: var(--text-muted);
}
@media (min-width: 768px) { .footer-legal { align-items: flex-end; text-align: right; } }

/* ─── Neon placeholder (transitional — replace with real photos/video) ─── */
.neon-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 35% 45%, rgba(255,31,143,0.14), transparent 60%),
    linear-gradient(135deg, #0a0a0a, #1a1014);
}
.neon-placeholder::before {
  content: "";
  position: absolute; inset: 0; opacity: 0.18;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(255,255,255,0.04) 28px 29px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(255,255,255,0.03) 60px 61px);
}
.neon-placeholder::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
}
.neon-text {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.04em;
  color: var(--accent-pink);
  text-shadow:
    0 0 8px rgba(255,31,143,0.9),
    0 0 24px rgba(255,31,143,0.7),
    0 0 48px rgba(255,31,143,0.5);
  transform: rotate(-1deg);
}
.neon-text.is-script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(64px, 10vw, 128px);
  font-style: italic;
}

/* ─── Sticky WhatsApp ─── */
.sticky-whats {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  opacity: 0; pointer-events: none;
  transform: scale(0.8) translateY(20px);
  transition: all 0.32s var(--ease);
  z-index: 50;
  text-decoration: none;
}
.sticky-whats.is-visible { opacity: 1; pointer-events: auto; transform: scale(1) translateY(0); }
.sticky-whats:hover { transform: scale(1.05); }
