/* ============================================================
   Studio Dualis Valinhos — estilo
   Claro e moderno, mas forte. Preto + amarelo.
   ============================================================ */

:root {
  --ink: #0d0d0d;
  --ink-soft: #2b2b2b;
  --bg: #f6f5f1;
  --bg-card: #ffffff;
  --bg-soft: #eeece5;
  --yellow: #ffd400;
  --yellow-deep: #f2c200;
  --line: rgba(13, 13, 13, 0.12);
  --muted: #6a6a64;

  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1160px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 760px; }

/* ---------- Tipografia base ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 3px;
  background: var(--yellow);
}
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-yellow::before { background: var(--yellow); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 6px 0 var(--yellow-deep); }
.btn-yellow:hover { box-shadow: 0 4px 0 var(--yellow-deep); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; box-shadow: 0 8px 22px rgba(0,0,0,0.25); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 245, 241, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  font-family: var(--font-display);
  background: var(--ink);
  color: var(--yellow);
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  font-size: 1.25rem;
  letter-spacing: 1px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; letter-spacing: 1px; }
.brand-text em { font-style: normal; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.28em; color: var(--muted); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a { font-weight: 700; font-size: 0.95rem; position: relative; }
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--yellow);
  transition: width 0.3s var(--ease);
}
.nav > a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: 11px 20px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 40px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .blob {
  position: absolute; top: -120px; right: -160px;
  width: 620px; height: 620px;
  background: radial-gradient(circle at 35% 35%, var(--yellow) 0%, var(--yellow) 38%, transparent 70%);
  opacity: 0.5; filter: blur(6px);
  border-radius: 50%;
}
.hero-bg .grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 65%);
  opacity: 0.6;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  margin: 6px 0 22px;
}
.hero h1 .hl {
  color: var(--ink);
  background: var(--yellow);
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}
.lead { font-size: 1.15rem; max-width: 480px; color: var(--ink-soft); margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-stats { list-style: none; display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats li { display: flex; align-items: center; gap: 12px; }
.hero-stats strong { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--ink); }
.hero-stats span { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }

/* hero card / photo */
.hero-card { position: relative; }
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(45deg, rgba(13,13,13,0.04) 0 14px, transparent 14px 28px),
    var(--bg-soft);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  display: grid; place-items: center;
  box-shadow: 18px 18px 0 var(--yellow);
  overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border: 1px dashed var(--muted); padding: 6px 12px; border-radius: 100px;
}
.hero-badge {
  position: absolute; left: -22px; bottom: 34px;
  background: var(--ink); color: #fff;
  padding: 14px 20px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.badge-k { font-family: var(--font-display); color: var(--yellow); letter-spacing: 1px; }
.badge-v { font-size: 0.8rem; font-weight: 700; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--yellow);
  padding: 16px 0;
  overflow: hidden;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 2px;
  animation: scroll-x 45s linear infinite;
}
.marquee-group { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.marquee .dot { color: #fff; opacity: 0.5; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections base ---------- */
.section { padding: 96px 0; }
.section-dark { background: var(--ink); color: #f4f4f1; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
.section-sub { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

.note {
  margin-top: 26px; font-size: 0.82rem; color: var(--muted);
  border-left: 3px solid var(--yellow); padding-left: 12px;
}
.note code, code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  background: rgba(13,13,13,0.07); padding: 1px 6px; border-radius: 4px; font-size: 0.85em;
}
.section-dark .note { color: rgba(255,255,255,0.55); }

/* ---------- Cards (modalidades) ---------- */
.cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.cards .card { grid-column: span 2; }
.cards .card:nth-child(4) { grid-column: 2 / span 2; }
.cards .card:nth-child(5) { grid-column: 4 / span 2; }
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: var(--yellow); transition: width 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--ink); }
.card:hover::before { width: 100%; }
.card-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--yellow-deep); }
.card h3 { font-size: 1.7rem; margin: 8px 0 12px; }
.card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 18px; }
.card-link { font-weight: 800; font-size: 0.9rem; color: var(--ink); border-bottom: 2px solid var(--yellow); padding-bottom: 2px; }
.card-link:hover { color: var(--yellow-deep); }

/* ---------- Diferenciais ---------- */
.feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; }
.feat { background: var(--ink); padding: 38px 34px; transition: background 0.3s; }
.feat:hover { background: #181818; }
.feat h3 { font-size: 1.5rem; color: var(--yellow); margin-bottom: 10px; }
.feat p { color: rgba(255,255,255,0.72); font-size: 0.98rem; }

/* ---------- Galeria ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.shot {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(13,13,13,0.035) 0 14px, transparent 14px 28px),
    var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid; place-items: center;
  transition: border-color 0.3s var(--ease);
}
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s var(--ease); }
.shot:hover { border-color: var(--ink); }
.shot:hover img { transform: scale(1.05); }
.shot-tall { grid-row: span 2; }
.shot-wide { grid-column: span 2; }

/* ---------- Avaliações ---------- */
.rating-badge { display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.rating-badge .stars { color: var(--yellow-deep); letter-spacing: 2px; font-size: 1.25rem; }
.rating-badge .rating-num { font-weight: 600; color: var(--ink-soft); font-size: 0.95rem; }
.rating-badge .rating-num strong { font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; }

.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.review:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.07); border-color: var(--ink); }
.review .stars { color: var(--yellow-deep); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.review-text { font-size: 1rem; color: var(--ink-soft); margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 1px;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.95rem; }
.review-author .src { font-size: 0.78rem; color: var(--muted); }

/* ---------- Planos ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan h3 { font-size: 1.9rem; margin-bottom: 14px; }
.plan .price { font-family: var(--font-display); display: flex; align-items: baseline; gap: 4px; margin-bottom: 22px; }
.plan .price .cur { font-size: 1.2rem; color: var(--muted); }
.plan .price .val { font-size: 3.4rem; line-height: 1; }
.plan .price .per { font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; color: var(--muted); }
.plan ul { list-style: none; margin-bottom: 28px; flex: 1; }
.plan li { padding: 9px 0 9px 26px; position: relative; font-size: 0.95rem; border-bottom: 1px solid var(--line); }
.plan li::before { content: "→"; position: absolute; left: 0; color: var(--yellow-deep); font-weight: 800; }
.plan-feature {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
  transform: translateY(-12px);
  box-shadow: 0 26px 50px rgba(0,0,0,0.22);
}
.plan-feature li { border-color: rgba(255,255,255,0.14); }
.plan-feature .price .cur, .plan-feature .price .per { color: rgba(255,255,255,0.6); }
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--ink);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; white-space: nowrap;
}

/* ---------- Horários ---------- */
.hours { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-card); }
.hour-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 26px; border-bottom: 1px solid var(--line); }
.hour-row:last-child { border-bottom: none; }
.hour-row .day { font-weight: 700; }
.hour-row .time { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 1px; }

/* ---------- Localização ---------- */
.loc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }
.loc-info h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.loc-address { font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: 26px; }
.loc-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.loc-map { border-radius: var(--radius); overflow: hidden; border: 3px solid var(--yellow); aspect-ratio: 16 / 11; }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  width: 100%; height: 100%; background: #1a1a1a; color: rgba(255,255,255,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 20px;
}
.map-placeholder span { font-family: var(--font-display); font-size: 1.4rem; color: var(--yellow); letter-spacing: 1px; }
.map-placeholder small { font-size: 0.78rem; }

/* ---------- CTA final ---------- */
.cta-final { background: var(--yellow); padding: 80px 0; }
.cta-inner { text-align: center; }
.cta-final h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); margin-bottom: 14px; }
.cta-final p { font-size: 1.15rem; font-weight: 600; margin-bottom: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #f4f4f1; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand p { line-height: 1.3; font-size: 0.92rem; }
.footer-brand strong { font-family: var(--font-display); font-weight: 400; letter-spacing: 1px; font-size: 1.05rem; }
.footer-nav, .footer-social { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-social a { font-weight: 600; color: rgba(255,255,255,0.75); width: fit-content; transition: color 0.2s; }
.footer-nav a:hover, .footer-social a:hover { color: var(--yellow); }
.footer-bottom { padding-top: 24px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease);
  animation: wa-pop 0.5s var(--ease) 1s both;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.cards .reveal.in, .feats .reveal.in, .plans .reveal.in { transition-delay: var(--d, 0s); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 380px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards .card,
  .cards .card:nth-child(4),
  .cards .card:nth-child(5) { grid-column: auto; }
  .plans { grid-template-columns: 1fr; }
  .plan-feature { transform: none; }
  .loc-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .shot-wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 26px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.35s var(--ease);
    box-shadow: 0 20px 30px rgba(0,0,0,0.08);
  }
  .nav.open { transform: translateY(0); }
  .nav > a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav > a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 10px; text-align: center; }
  .section { padding: 68px 0; }
  .feats { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
}

@media (max-width: 460px) {
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .shot-wide, .shot-tall { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-badge { left: 0; }
}
