:root {
  --bg: #1c1b19;
  --bg-soft: #232220;
  --card: #2a2826;
  --border: rgba(255,255,255,0.08);
  --text: #f5f2ec;
  --text-muted: #a8a29a;
  --accent: #D0BD94;
  --accent-2: #e3d4b3;
  --charcoal: #363636;
  --radius: 18px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-accent: 'Reckless Neue', Georgia, serif;
}

@font-face {
  font-family: 'Reckless Neue';
  src: url('assets/fonts/RecklessNeue-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: url('assets/logo/up-icon-cursor.png?v=3') 20 20, auto;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 760px; }

.skip-nav {
  position: absolute;
  left: -999px;
}
.skip-nav:focus {
  left: 16px;
  top: 16px;
  background: var(--accent);
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 999;
}

/* Topbar */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.topbar.scrolled {
  background: rgba(11,12,16,0.85);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: auto;
  margin-left: 56px;
}
.topbar-nav a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
  transition: color .25s ease;
}
.topbar-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.topbar-nav a:hover { color: var(--text); }
.topbar-nav a.active {
  color: var(--text);
}
.topbar-nav a.active::after { transform: scaleX(1); }
@media (max-width: 900px) {
  .topbar-nav { display: none; }
}
.logo {
  height: 44px;
  width: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s cubic-bezier(.16,1,.3,1), background .3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--charcoal);
  padding: 16px 32px;
  font-size: 16px;
  box-shadow: 0 8px 30px rgba(208,189,148,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(208,189,148,0.5);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-large { padding: 18px 40px; font-size: 17px; }
.btn-small { padding: 9px 18px; font-size: 13px; }

.micro-copy {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(208,189,148,0.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(227,212,179,0.10), transparent 50%),
    var(--bg);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(20,19,17,0.92) 0%, rgba(20,19,17,0.8) 35%, rgba(20,19,17,0.45) 75%, rgba(20,19,17,0.6) 100%),
    radial-gradient(ellipse at top right, rgba(208,189,148,0.18), transparent 55%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-video { display: none; }
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 30%, rgba(208,189,148,0.12), transparent 60%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .6; }
  50% { opacity: 1; }
}
.hero-inner { position: relative; z-index: 2; text-align: left; max-width: 900px; }
.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow.center { text-align: center; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 24px;
}
.hero-title .highlight {
  font-family: var(--font-accent);
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

strong {
  font-family: var(--font-accent);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
}

/* Hand-drawn animated underline ("risquinho") — thin double pen stroke */
.scribble {
  position: relative;
  display: inline-block;
}
.scribble-line {
  position: absolute;
  left: -2%;
  bottom: -0.34em;
  width: 104%;
  height: 0.5em;
  overflow: visible;
  pointer-events: none;
}
.scribble-line path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .6s cubic-bezier(.62,0,.36,1);
}
.scribble.drawn .scribble-line path { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) {
  .scribble-line path { transition: none; stroke-dashoffset: 0; }
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 900px;
  margin-bottom: 40px;
}
.typewriter-cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  margin-left: 1px;
  animation: cursor-blink 0.9s step-end infinite;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; }

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
}
.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  margin: 6px auto;
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* Proof strip */
.proof-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 12px;
  margin: 0 auto 36px;
  max-width: 760px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
}
.stat-item:not(:nth-child(4n))::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 12%;
  height: 76%;
  width: 1px;
  background: var(--border);
}
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(208,189,148,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
}
.stat-icon svg {
  width: 22px;
  height: 22px;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--accent);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
@media (max-width: 640px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; max-width: 380px; }
  .stat-item:not(:nth-child(4n))::after { display: none; }
  .stat-item:nth-child(odd)::after {
    content: '';
    display: block;
    position: absolute;
    right: -8px;
    top: 12%;
    height: 76%;
    width: 1px;
    background: var(--border);
  }
}
.proof-strip-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.clients-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2825, #171614);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 44px 40px;
}
.clients-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(208,189,148,0.14), transparent 60%);
  pointer-events: none;
}
.clients-banner-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
}
.clients-banner-label {
  flex-shrink: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
  max-width: 300px;
  white-space: normal;
}
.clients-banner-label strong { color: var(--accent); }
@media (max-width: 768px) {
  .clients-banner { padding: 32px 20px; border-radius: 28px; }
  .clients-banner-row { flex-direction: column; gap: 28px; }
  .clients-banner-label { text-align: center; max-width: none; }
}
.proof-marquee {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.proof-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 110s linear infinite;
}
.proof-track img {
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.65;
  filter: brightness(0) invert(1);
  transition: opacity .25s ease;
}
.proof-track img:hover { opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 100px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 20px;
}
.section-title.center, .center { text-align: center; }
.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.section-note {
  font-size: 1.05rem;
  color: var(--text);
}

.problem { background: var(--bg); }

.pains {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  max-width: 720px;
}
.pains li {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 6px;
  border-bottom: 1px solid var(--border);
  transition: padding-left .4s cubic-bezier(.62,0,.36,1);
}
.pains li:first-child {
  border-top: 1px solid var(--border);
}
.pain-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent);
  flex: 0 0 auto;
  min-width: 40px;
  line-height: 1;
  opacity: .85;
  transition: opacity .4s;
}
.pain-text {
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--text-muted);
  transition: color .4s;
}
.pains li:hover {
  padding-left: 16px;
}
.pains li:hover .pain-num { opacity: 1; }
.pains li:hover .pain-text { color: var(--text); }

/* Cascade entrance for the list (keyframes, so hover stays snappy) */
.pains li.reveal {
  opacity: 0;
  transform: translateX(-28px);
  transition: padding-left .4s cubic-bezier(.62,0,.36,1), color .4s, opacity .4s;
}
.pains li.reveal.in-view {
  animation: painIn .65s cubic-bezier(.16,1,.3,1) backwards;
  opacity: 1;
  transform: translateX(0);
}
.pains li.reveal.in-view:nth-child(1) { animation-delay: 0ms; }
.pains li.reveal.in-view:nth-child(2) { animation-delay: 110ms; }
.pains li.reveal.in-view:nth-child(3) { animation-delay: 220ms; }
.pains li.reveal.in-view:nth-child(4) { animation-delay: 330ms; }
.pains li.reveal.in-view:nth-child(5) { animation-delay: 440ms; }
@keyframes painIn {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 640px) {
  .pains li { gap: 16px; padding: 18px 4px; }
  .pain-num { font-size: 1.25rem; min-width: 32px; }
  .pain-text { font-size: 1rem; }
}

.solution { background: var(--bg-soft); }

/* Light-theme section (breaks up the all-dark rhythm) */
.section-light {
  --bg: #f6f3ee;
  --bg-soft: #efe9df;
  --card: #ffffff;
  --border: rgba(54,50,44,0.12);
  --text: #2a2724;
  --text-muted: #6f6a60;
  --accent: #9c7a3e;
  --accent-2: #7d6230;
  position: relative;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 480px 320px at 12% 10%, rgba(156,122,62,0.14), transparent 60%),
    radial-gradient(ellipse 420px 300px at 90% 85%, rgba(156,122,62,0.10), transparent 60%),
    repeating-linear-gradient(0deg, rgba(54,50,44,0.05) 0px, rgba(54,50,44,0.05) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(54,50,44,0.05) 0px, rgba(54,50,44,0.05) 1px, transparent 1px, transparent 64px);
  color: var(--text);
}
.section-light .arrow-btn:hover { color: #fff; }

/* Wave dividers that touch a light section carry the same grid+glow texture */
.wave-divider-light,
.wave-divider-light-soft {
  background-image:
    radial-gradient(ellipse 480px 320px at 12% 10%, rgba(156,122,62,0.14), transparent 60%),
    radial-gradient(ellipse 420px 300px at 90% 85%, rgba(156,122,62,0.10), transparent 60%),
    repeating-linear-gradient(0deg, rgba(54,50,44,0.05) 0px, rgba(54,50,44,0.05) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(54,50,44,0.05) 0px, rgba(54,50,44,0.05) 1px, transparent 1px, transparent 64px);
}
.wave-divider-light { background-color: #f6f3ee; }
.wave-divider-light-soft { background-color: #efe9df; }

/* Benefits — horizontal service carousel */
.services-carousel-header {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.services-arrows { display: flex; gap: 12px; }
@media (max-width: 640px) {
  .services-carousel-header { justify-content: center; }
}
.services-viewport {
  max-width: 1140px;
  margin: 20px auto 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.services-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 14px 4px 30px;
  margin: 0;
  cursor: grab;
}
.services-track:active { cursor: grabbing; }
.services-track::-webkit-scrollbar { display: none; }
.services-track::-webkit-scrollbar { display: none; }
.service-card {
  scroll-snap-align: start;
  flex: 0 0 280px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(54,50,44,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(54,50,44,0.12);
}
.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.service-card:hover .service-media img { transform: scale(1.05); }
.service-body { padding: 26px 24px 28px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 10px;
}
.service-card p { color: var(--text-muted); margin: 0; font-size: .93rem; line-height: 1.55; }
@media (max-width: 640px) {
  .service-card { flex-basis: 78vw; }
  .services-viewport { padding: 0 20px; }
}
.benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(208,189,148,0.4);
  background: rgba(208,189,148,0.06);
  color: var(--accent);
  margin-bottom: 22px;
  transition: background .3s ease, border-color .3s ease, transform .3s ease, color .3s ease;
}
.benefit-icon svg { width: 26px; height: 26px; }
/* Service cards: icon becomes a floating chip over the photo */
.service-media .benefit-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  border: 1px solid rgba(208,189,148,0.5);
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(54,50,44,0.16);
}
.service-media .benefit-icon svg { width: 22px; height: 22px; }
.service-card:hover .benefit-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.06);
}

.benefits-cta { text-align: center; margin-top: 40px; }

/* Agency gallery */
.solution-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.solution-photo { max-width: 360px; margin: 0 auto; width: 100%; padding-top: 8%; }
.agency-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
}
.agency-card {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  overflow: hidden;
  opacity: 0;
  transform-origin: center 60%;
  transition: transform .9s cubic-bezier(.65,0,.35,1), opacity .9s ease, filter .9s ease;
  will-change: transform, opacity;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.agency-card:first-child { opacity: 1; z-index: 5; }
.agency-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.agency-gallery-caption {
  text-align: center;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: .9rem;
}
@media (max-width: 900px) {
  .solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .solution-photo { order: -1; }
}

/* Portfolio */
.portfolio { background: var(--bg); overflow: hidden; }
.portfolio-marquee {
  margin-top: 48px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.portfolio-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: portfolio-scroll 26s linear infinite;
}
.portfolio-marquee:hover .portfolio-track { animation-play-state: paused; }
.post-card {
  height: 340px;
  width: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  object-fit: cover;
  transition: transform .4s ease, box-shadow .4s ease;
}
.post-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
@keyframes portfolio-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .post-card { height: 240px; }
}

/* Testimonial break */
.testimonial-break { background-color: var(--bg-soft); }
.quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
}
.quote-author { color: var(--text-muted); margin-top: 12px; }
.reviews-marquee {
  margin-top: 48px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 20px 4px;
  animation: reviews-scroll 85s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 280px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 22px;
  padding: 26px 24px 22px;
  text-align: left;
  box-shadow: 0 16px 40px rgba(54,50,44,0.10);
}
.review-badge {
  position: absolute;
  top: -16px;
  right: 22px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent, #9c7a3e), #7d6230);
  color: #fff;
  box-shadow: 0 6px 16px rgba(124,98,48,0.4);
}
.review-badge svg { width: 18px; height: 18px; }
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, #3a3733, #23211e);
}
.review-card:nth-child(3n+2) .review-avatar { background: linear-gradient(135deg, #b3925c, #8a6d3f); }
.review-card:nth-child(3n) .review-avatar { background: linear-gradient(135deg, #55504a, #363330); }
.review-head-text { min-width: 0; }
.review-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-source {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 2px 0 0;
}
.review-text {
  font-size: .92rem;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.review-rating-pill {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(156,122,62,0.12);
  color: #9c7a3e;
  font-size: 13px;
  letter-spacing: 1.5px;
}
@media (max-width: 640px) {
  .review-card { width: 260px; height: 300px; }
}
.see-all-reviews {
  display: inline-block;
  margin-top: 32px;
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: opacity .25s ease;
}
.see-all-reviews:hover { opacity: .75; }

/* Wave dividers between sections */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  position: relative;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}
@media (max-width: 640px) {
  .wave-divider svg { height: 44px; }
}

/* Methodology (SIS-style split layout) */
.methodology {
  background:
    radial-gradient(ellipse at 25% 15%, rgba(208,189,148,0.16), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(208,189,148,0.1), transparent 50%),
    #2a2724;
}
.methodology-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.methodology-photo {
  align-self: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0,0,0,0.28);
  border: 1px solid rgba(208,189,148,0.25);
}
.methodology-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.methodology-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.methodology-page[hidden] { display: none; }
.step-card-sis {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step-card-sis .benefit-icon { margin-bottom: 16px; }
.step-label {
  display: block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.step-card-sis h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.step-card-sis p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
}
.methodology-arrows {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.arrow-btn:hover {
  background: var(--accent);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.methodology-text .btn { margin-top: 8px; }

@media (max-width: 1100px) and (min-width: 901px) {
  .methodology-inner { grid-template-columns: 220px 1fr; }
  .methodology-photo { grid-row: 1 / 3; }
}
@media (max-width: 900px) {
  .methodology-inner { grid-template-columns: 1fr; gap: 36px; }
  .methodology-photo { max-width: 320px; margin: 0 auto; aspect-ratio: 3 / 4; }
}
@media (max-width: 560px) {
  .methodology-page { grid-template-columns: 1fr; }
}

.offer-bonus {
  margin-top: 48px;
  text-align: center;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px dashed rgba(208,189,148,0.4);
}
.offer-bonus p { margin: 0 0 20px; font-size: 1.05rem; }

/* FAQ */
.faq { background: var(--bg-soft); }
.faq-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.faq-intro .section-title { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.faq-intro .section-lead { margin-bottom: 32px; }
.faq-intro .section-lead strong {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  color: var(--text);
}
.faq-cta svg { flex-shrink: 0; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .3s ease;
  margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-item p { color: var(--text-muted); margin: 0 0 24px; }
@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* Final CTA */
.final-cta {
  background:
    radial-gradient(ellipse at center, rgba(208,189,148,0.15), transparent 60%),
    var(--bg);
  padding: 120px 0;
}

/* Instagram feed */
.instagram-inner {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 620px);
  justify-content: center;
  gap: 64px;
  align-items: center;
}
.instagram-intro .section-title { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.instagram-intro .section-lead { margin-bottom: 32px; }
.instagram-intro .section-lead strong {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  color: var(--text);
}
.instagram-cta svg { flex-shrink: 0; }
.instagram-widget-wrap {
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius);
  min-height: 120px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 16px 40px rgba(54,50,44,0.12);
}
.instagram-widget-wrap iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: none;
  border-radius: var(--radius);
}
.instagram-widget-wrap > div {
  width: 100%;
}
.instagram-widget-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  margin: 0;
  color: var(--text-muted);
  font-size: .9rem;
  text-align: center;
}
@media (max-width: 900px) {
  .instagram-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* Footer */
.footer { padding: 64px 0 0; border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  max-width: 360px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin: 0 0 18px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .92rem;
  margin-bottom: 12px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .82rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: none; }
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 90;
  animation: floatpulse 2.6s ease-in-out infinite;
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes floatpulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.75); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance: stronger side-slide, like a page-load intro */
.hero-inner .reveal {
  transform: translateX(-44px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.hero-inner .reveal.in-view {
  transform: translateX(0);
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-cta { align-items: stretch; }
  .btn-large { width: 100%; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
