/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --off-black: #111;
  --dark: #1a1a1a;
  --mid: #555;
  --light: #aaa;
  --cream: #f7f4ef;
  --white: #ffffff;
  --accent: #c8a96e;
  --accent-light: #e8d5b0;

  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
body::after {
  content: '';
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s;
  top: var(--cy, -20px);
  left: var(--cx, -20px);
}

a, button { cursor: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { line-height: 1.1; letter-spacing: -0.02em; }
em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 16px;
}

.label-light { color: rgba(255,255,255,0.5); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: none;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover { background: var(--dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover { background: var(--cream); }

.btn-sm { padding: 9px 20px; font-size: 13px; }

/* CTA dentro da bolha do nav */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.btn-nav-cta:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}

/* ===== SECTIONS ===== */
.section { padding: var(--section-pad) clamp(20px, 6vw, 100px); }
.section-header { margin-bottom: 64px; }
.section-header h2 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; }
.section-header.align-left { max-width: 480px; }
.section-sub { margin-top: 24px; font-size: 16px; color: var(--mid); line-height: 1.7; max-width: 420px; }

/* ===== NAV — floating bubble ===== */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 940px);
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0 8px 0 24px;
  gap: 0;
  z-index: 100;
  border-radius: 100px;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 2px 8px rgba(0,0,0,0.25),
    0 8px 32px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.82);
  border-color: rgba(255,255,255,0.13);
  box-shadow:
    0 2px 8px rgba(0,0,0,0.35),
    0 12px 40px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  font-family: var(--font-sans);
  display: none;
}

.footer-logo-text {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  font-family: var(--font-sans);
  margin-bottom: 16px;
}

/* Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
  border-radius: 2px;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 24px 0; }
.mobile-link {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
  display: block;
}
.mobile-link:hover { opacity: 0.6; }
.btn-mobile {
  margin-top: 8px;
  font-size: 16px !important;
  background: var(--white);
  color: var(--black) !important;
  border-radius: 100px;
  padding: 14px 40px;
  display: inline-block;
}

/* ===== HERO ===== */
.hero-scroll-wrapper {
  position: relative;
}

.hero {
  position: sticky;
  top: 0;
  height: 100svh;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Canvas background (scroll-driven frames) */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.4) 55%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 6vw, 100px);
  max-width: 640px;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
  display: block;
}

.hero-title {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 28px;
}

.hero-title em {
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 48px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: clamp(20px, 6vw, 100px);
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  transition: opacity 0.4s;
}
.hero-scroll.hidden { opacity: 0; }

.scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scroll-anim 2s ease-in-out infinite;
}

/* Video progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 3;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.08s linear;
}

/* ===== TICKER ===== */
.ticker {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}

.ticker-track .dot { color: var(--accent); }

/* ===== CAFÉS ===== */
.cafes { background: var(--cream); }

.cafes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cafe-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.cafe-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.cafe-card.featured { transform: scale(1.03); }
.cafe-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.card-img {
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.card-origin-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 100px;
}

.card-roast {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.roast-light { background: rgba(200, 169, 110, 0.2); color: var(--accent-light); }
.roast-medium { background: rgba(200, 130, 60, 0.25); color: #e8b060; }

.card-featured-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 100px;
}

.card-body { padding: 24px; }
.card-body h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }

.card-notes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.note {
  font-size: 11px;
  font-weight: 500;
  color: var(--mid);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 100px;
}

.card-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 24px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 22px;
  font-weight: 700;
}
.price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  margin-left: 2px;
}

.cafes-cta {
  text-align: center;
  margin-top: 56px;
}

/* ===== STATS ===== */
.stats {
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px clamp(20px, 6vw, 100px);
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 20px 48px;
  flex: 1;
  min-width: 180px;
}

.stat-number {
  display: block;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ===== PROCESSO ===== */
.processo {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.step:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.step:hover { padding-left: 8px; }

.step-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 30px;
  padding-top: 3px;
}

.step-body h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

/* Roaster visual */
.processo-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.roaster-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}
.ring-1 { width: 360px; height: 360px; animation: spin-slow 20s linear infinite; }
.ring-2 { width: 270px; height: 270px; animation: spin-slow 15s linear infinite reverse; border-style: dashed; }
.ring-3 { width: 180px; height: 180px; background: var(--black); border-color: var(--black); }

.roaster-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.roaster-center span {
  display: block;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.roaster-center small {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== ASSINATURA ===== */
.assinatura {
  background: var(--black);
  color: var(--white);
}

.assinatura-content h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 20px;
}

.assinatura-content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 56px;
}

.assinatura-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 0.3s;
}
.plan:hover { background: rgba(255,255,255,0.07); }
.plan.plan-featured {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-freq {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.plan-featured .plan-freq { color: var(--mid); }

.plan-price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan:not(.plan-featured) .plan-price { color: var(--white); }
.plan-price small {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.5;
}

.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin: 8px 0 16px;
}
.plan ul li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  opacity: 0.7;
}
.plan.plan-featured ul li { opacity: 1; color: var(--black); }
.plan ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}

/* ===== SOBRE ===== */
.sobre {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-text h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
}
.sobre-text p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.sobre-text .btn { margin-top: 16px; }

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

.sobre-box {
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 140px;
  justify-content: space-between;
}

.box-dark { background: var(--black); color: var(--white); }
.box-light { background: var(--white); color: var(--black); }
.box-accent { background: var(--accent); color: var(--black); grid-column: span 2; min-height: 100px; }

.box-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}
.box-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--section-pad) clamp(20px, 6vw, 100px) 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 12px; }
.social {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.2s;
}
.social:hover { border-color: var(--white); color: var(--white); }
.social svg { width: 16px; height: 16px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-newsletter h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.footer-newsletter p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.3); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== ANIMATIONS ===== */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(12px, -18px) rotate(15deg); }
  66% { transform: translate(-8px, -10px) rotate(-10deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-14px, -20px) rotate(-12deg); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-anim {
  from { left: -100%; }
  to { left: 100%; }
}

/* Entrance animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PRODUCT CAROUSEL ===== */
.pc {
  --pc-bg:   #c2de16;
  --pc-text: #070d00;
  --pc-glow: #a0c200;

  position: relative;
  min-height: 100svh;
  background-color: var(--pc-bg);
  color: var(--pc-text);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    background-color 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.75s ease;
}

/* Ghost number */
.pc-ghost {
  position: absolute;
  right: -0.04em;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(180px, 32vw, 440px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--pc-text);
  opacity: 0.065;
  pointer-events: none;
  user-select: none;
  transition: color 0.9s ease, opacity 0.5s ease;
}

/* Inner grid */
.pc-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px clamp(28px, 6vw, 100px) 56px;
  position: relative;
  z-index: 1;
}

/* Left: info panel */
.pc-info {
  display: flex;
  flex-direction: column;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.pc-info.fading {
  opacity: 0;
  transform: translateY(14px);
}

.pc-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 22px;
}

.pc-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.pc-tag-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.55;
}
.pc-tag-weight {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  opacity: 0.4;
  padding: 3px 9px;
  border-radius: 100px;
}

.pc-name {
  font-size: clamp(40px, 6vw, 86px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pc-origin {
  font-size: 15px;
  font-weight: 400;
  opacity: 0.55;
  margin-bottom: 28px;
}
.pc-divider {
  width: 44px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.2;
  margin-bottom: 28px;
}
.pc-notes {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.2vw, 27px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.88;
  margin-bottom: 28px;
}
.pc-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.pc-badges span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 5px 13px;
  border-radius: 100px;
  opacity: 0.45;
}
.pc-purchase {
  display: flex;
  align-items: center;
  gap: 22px;
}
.pc-price {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  background: var(--pc-text);
  color: var(--pc-bg);
  border: none;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: none;
  transition:
    background-color 0.9s ease,
    color 0.9s ease,
    opacity 0.2s;
}
.pc-btn:hover { opacity: 0.82; }
.pc-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Right: stage */
.pc-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68vh;
  min-height: 400px;
}
.pc-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background-color: var(--pc-glow);
  filter: blur(110px);
  opacity: 0.48;
  transition: background-color 0.9s ease;
  pointer-events: none;
}
.pc-imgs-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-img {
  position: absolute;
  height: 62vh;
  max-height: 560px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.86) translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.34, 1.3, 0.64, 1);
  user-select: none;
  pointer-events: none;
  will-change: transform, opacity;
}
.pc-img.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: pc-float 6.5s ease-in-out infinite;
}
@keyframes pc-float {
  0%, 100% { transform: translateY(0px)   rotate(-0.4deg); }
  50%       { transform: translateY(-18px) rotate( 0.4deg); }
}

/* Navigation row */
.pc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 clamp(28px, 6vw, 100px) 44px;
  position: relative;
  z-index: 1;
}
.pc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  background: transparent;
  color: var(--pc-text);
  opacity: 0.45;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    opacity 0.2s,
    color 0.9s ease,
    border-color 0.9s ease;
}
.pc-arrow:hover { opacity: 1; }
.pc-arrow svg { width: 18px; height: 18px; }

.pc-dots {
  display: flex;
  gap: 14px;
  align-items: center;
}
.pc-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid var(--dot-color, rgba(255,255,255,0.5));
  background: transparent;
  cursor: none;
  padding: 0;
  transition: all 0.38s ease;
}
.pc-dot.active {
  background: var(--dot-color, #fff);
  transform: scale(1.35);
  border-color: var(--dot-color, #fff);
}

/* Progress bar */
.pc-progress-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(0,0,0,0.08);
  z-index: 2;
}
.pc-progress-bar {
  height: 100%;
  background: var(--pc-text);
  opacity: 0.35;
  transition: width 0.7s ease, background-color 0.9s ease;
}

/* Carousel responsive */
@media (max-width: 900px) {
  .pc-inner {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 32px;
  }
  .pc-stage {
    height: 48vw;
    min-height: 260px;
    order: -1;
  }
  .pc-img { height: 44vw; max-height: 320px; }
  .pc-ghost { font-size: clamp(120px, 26vw, 240px); top: 20%; transform: none; }
}
@media (max-width: 600px) {
  .pc-name { font-size: clamp(34px, 9vw, 52px); }
  .pc-stage { height: 52vw; }
  .pc-img { height: 46vw; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .cafes-grid { grid-template-columns: 1fr 1fr; }
  .cafe-card.featured { transform: none; }
  .cafe-card.featured:hover { transform: translateY(-6px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .processo { grid-template-columns: 1fr; }
  .processo-visual { display: none; }
  .sobre { grid-template-columns: 1fr; }
  .assinatura-plans { grid-template-columns: 1fr; }
  .plan.plan-featured { order: -1; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 0 8px 0 20px; width: calc(100% - 24px); }
  .cafes-grid { grid-template-columns: 1fr; }
  .stats { flex-direction: column; gap: 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-newsletter { grid-column: span 1; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  body::after { display: none; }
}
