/* ═══════════════════════════════════════════════════════
   ÍNDIÃO STORE — LANDING PAGE
   Paleta: Marrom #1E1209 | Terracota #C0522B
           Cinza #C4BAB6  | Off-White #F4EDE8
   Fontes: Jockey One (títulos) | Inter (corpo)
═══════════════════════════════════════════════════════ */

/* ── VARIÁVEIS ─────────────────────────────────────── */
:root {
  --marrom:          #1E1209;
  --marrom-mid:      #2D1A0A;
  --terracota:       #C0522B;
  --terracota-light: #D4704A;
  --cinza:           #C4BAB6;
  --offwhite:        #F4EDE8;
  --white:           #FFFFFF;
  --black:           #0A0A0A;
  --font-title: 'Jockey One', sans-serif;
  --font-body:  'Inter', sans-serif;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 8px 40px rgba(30,18,9,.15);
  --shadow-lg: 0 20px 60px rgba(30,18,9,.25);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --form-w:    380px;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--marrom);
  overflow-x: hidden;
  padding-right: var(--form-w);
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--terracota); border-radius: 3px; }

/* ── BARRA DE PROGRESSO ────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--terracota), #e8845a);
  z-index: 9999;
  box-shadow: 0 0 10px rgba(192,82,43,.5);
  transition: width .1s linear;
}

/* ── CONTENT WRAP ──────────────────────────────────── */
.content-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════════════════════════════════════
   PAINEL LATERAL — FORMULÁRIO RD STATION
═══════════════════════════════════════════════════ */
.sticky-form-wrapper {
  position: fixed;
  top: 0; right: 0;
  width: var(--form-w);
  height: 100dvh;
  background: #ffffff;
  z-index: 900;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -6px 0 40px rgba(0,0,0,.18);
  border-left: 1px solid rgba(30,18,9,.08);
}

.sticky-form-wrapper::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--marrom), var(--terracota), #e8845a, var(--terracota), var(--marrom));
  flex-shrink: 0;
}

.sticky-form-inner {
  padding: 24px 20px 32px;
  flex: 1;
}

.form-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--offwhite);
  text-align: center;
}

.form-logo-wrap {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.form-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: inline-block;
}

.form-tagline {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--terracota);
  text-transform: uppercase;
  margin-top: 4px;
}

.rd-form-wrap { width: 100%; }

/* Botão mobile flutuante */
.mobile-form-btn {
  display: none;
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 950;
  background: var(--terracota);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-family: var(--font-title);
  font-size: 14px;
  cursor: pointer;
  gap: 8px;
  align-items: center;
  box-shadow: 0 8px 30px rgba(192,82,43,.5);
  transition: transform .2s, box-shadow .2s;
}
.mobile-form-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(192,82,43,.6); }

/* Backdrop mobile */
.form-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 940;
  backdrop-filter: blur(3px);
}
.form-backdrop.active { display: block; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--marrom);
  overflow: hidden;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(10,5,2,.75) 0%,
    rgba(30,18,9,.55) 55%,
    rgba(10,5,2,.35) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 44px 84px;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,82,43,.18);
  border: 1px solid rgba(192,82,43,.45);
  color: var(--terracota-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: .3px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-logo-wrap { margin-bottom: 18px; }
.hero-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 3.5vw, 46px);
  color: var(--terracota-light);
  letter-spacing: 8px;
  margin-bottom: 20px;
  line-height: 1;
}

.hero-desc {
  font-size: 17px;
  color: var(--cinza);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
}
.hero-desc strong { color: var(--white); }

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--offwhite);
  font-size: 14px;
}
.badge-item i { color: var(--terracota); font-size: 16px; }

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracota);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: 1.5px;
  padding: 15px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), transform .2s, box-shadow var(--transition);
}
.btn-hero:hover {
  background: var(--terracota-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(192,82,43,.5);
}
.btn-hero i { animation: bounceY 1.5s ease-in-out infinite; }

@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--terracota);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(192,82,43,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(192,82,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,82,43,0); }
}

/* ═══════════════════════════════════════════════════
   RÓTULOS E TÍTULOS DE SEÇÃO
═══════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 2px;
  background: var(--terracota);
  border-radius: 2px;
}
.section-label.light { color: var(--terracota-light); }
.section-label.light::before { background: var(--terracota-light); }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.05;
  letter-spacing: -.5px;
  color: var(--marrom);
  margin-bottom: 16px;
}
.section-title.light  { color: var(--white); }
.section-title.center { text-align: center; }

.section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #7a6056;
  max-width: 540px;
}
.section-subtitle.center { text-align: center; margin: 0 auto 48px; }

/* ═══════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════ */
.features-section {
  padding: 100px 0;
  background: var(--offwhite);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: #3a2a1e;
  transition: transform .25s ease;
}
.feature-list li:hover { transform: translateX(5px); }

.check-icon {
  width: 26px; height: 26px;
  background: var(--terracota);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.features-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.features-img img { transition: transform .5s ease; }
.features-img:hover img { transform: scale(1.04); }

.features-section .section-title::after,
.history-section  .section-title::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--terracota);
  border-radius: 2px;
  margin-top: 14px;
}

/* ═══════════════════════════════════════════════════
   STEPS
═══════════════════════════════════════════════════ */
.steps-section {
  padding: 100px 0 120px;
  background: #faf5f0;
}
.steps-section .content-wrap { display: block; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.step-card {
  position: relative;
  padding: 34px 26px 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.step-card.dark   { background: var(--marrom);    color: var(--white); }
.step-card.light  { background: var(--white);     color: var(--marrom); border: 1.5px solid rgba(30,18,9,.1); }
.step-card.accent { background: var(--terracota); color: var(--white); }

.step-num {
  font-family: var(--font-title);
  font-size: 54px;
  line-height: 1;
  opacity: .1;
  position: absolute;
  top: 14px; right: 18px;
  letter-spacing: -2px;
}
.step-card h3 {
  font-family: var(--font-title);
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.step-card p {
  font-size: 14px;
  line-height: 1.65;
  opacity: .85;
  position: relative; z-index: 1;
}
.step-icon { margin-top: 22px; font-size: 22px; opacity: .55; }
.step-card.light .step-icon { color: var(--terracota); opacity: 1; }

/* ═══════════════════════════════════════════════════
   GALERIA
═══════════════════════════════════════════════════ */
.gallery-section {
  padding: 100px 0;
  background: var(--marrom);
  overflow: hidden;
}
.gallery-section .section-label       { color: var(--terracota-light); }
.gallery-section .section-label::before { background: var(--terracota-light); }
.gallery-section .section-title       { color: var(--white); }

.gallery-track-wrapper {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-track {
  display: flex;
  gap: 16px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.gallery-item {
  flex: 0 0 calc(33.333% - 11px);
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.gallery-item img { transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  background: rgba(30,18,9,.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(192,82,43,.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10;
}
.gallery-btn.prev { left: 12px; }
.gallery-btn.next { right: 12px; }
.gallery-btn:hover { background: var(--terracota); border-color: var(--terracota); }

/* ═══════════════════════════════════════════════════
   QUALIDADE PREMIUM
═══════════════════════════════════════════════════ */
.quality-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.quality-bg { position: absolute; inset: 0; }
.quality-bg img { transition: transform 9s ease; transform: scale(1.06); }
.quality-section:hover .quality-bg img { transform: scale(1.12); }
.quality-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,5,2,.92) 0%, rgba(10,5,2,.55) 100%);
}
.quality-content {
  position: relative;
  z-index: 2;
  padding: 80px 44px;
  width: 100%;
  max-width: 820px;
}
.quality-stats {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-top: 40px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .3s ease;
}
.stat-item:hover { transform: scale(1.05) translateY(-3px); }
.stat-row { display: flex; align-items: baseline; gap: 2px; }
.stat-num {
  font-family: var(--font-title);
  font-size: 54px;
  line-height: 1;
  color: var(--white);
}
.stat-unit {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--terracota);
}
.stat-label {
  font-size: 12px;
  color: var(--cinza);
  letter-spacing: .5px;
}
.stat-divider {
  width: 1px; height: 58px;
  background: rgba(255,255,255,.18);
}

/* ═══════════════════════════════════════════════════
   FAMOSOS
═══════════════════════════════════════════════════ */
.famous-section {
  padding: 100px 0 80px;
  background: var(--offwhite);
  overflow: hidden;
}

.famous-carousel-wrapper {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.famous-carousel {
  display: flex;
  gap: 16px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
  cursor: grab;
}
.famous-carousel:active { cursor: grabbing; }

.famous-card {
  flex: 0 0 calc(25% - 12px);
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}
.famous-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.famous-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}
.famous-card:hover img { transform: scale(1.06); }

.famous-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.famous-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--marrom);
  border: none;
  color: var(--white);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform .2s;
  flex-shrink: 0;
}
.famous-btn:hover { background: var(--terracota); transform: scale(1.1); }

.famous-dots { display: flex; gap: 8px; align-items: center; }
.famous-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(30,18,9,.2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background .3s, width .3s;
}
.famous-dot.active {
  background: var(--terracota);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════
   HISTÓRIA
═══════════════════════════════════════════════════ */
.history-section {
  padding: 100px 0;
  background: #faf5f0;
}
.history-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.history-paras {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.history-paras p { font-size: 15px; line-height: 1.75; color: #4a3428; }
.history-paras strong { color: var(--marrom); }

.highlight-text {
  background: var(--terracota);
  color: var(--white) !important;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 16px !important;
}

.history-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.history-img img { transition: transform .5s ease; }
.history-img:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  background: var(--marrom);
  padding: 120px 44px;
  overflow: hidden;
}
.cta-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(192,82,43,.06) 0, rgba(192,82,43,.06) 1px,
    transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.cta-logo { margin-bottom: 24px; }
.cta-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
  display: block;
}
.cta-desc {
  font-size: 17px;
  color: var(--cinza);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-badges { display: flex; flex-direction: column; gap: 14px; }
.cta-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--offwhite);
  transition: transform .25s ease;
}
.cta-badge:hover { transform: translateX(6px); }
.cta-badge i {
  width: 36px; height: 36px;
  background: rgba(192,82,43,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracota);
  font-size: 16px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--cinza);
}
.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--terracota), var(--marrom));
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 32px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-logo-col { display: block; }
.footer-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}
.footer-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cinza);
  margin-bottom: 16px;
}
.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza);
  font-size: 16px;
  transition: background var(--transition), color var(--transition), transform .2s;
}
.social-links a:hover {
  background: var(--terracota);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a,
.footer-contact span { font-size: 14px; color: var(--cinza); transition: color var(--transition); }
.footer-contact a:hover { color: var(--terracota-light); }
.footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 32px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 12px;
  color: rgba(196,186,182,.35);
}

/* ═══════════════════════════════════════════════════
   NAV DOTS
═══════════════════════════════════════════════════ */
#nav-dots {
  position: fixed;
  right: calc(var(--form-w) + 18px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-dot {
  width: 8px; height: 8px;
  background: rgba(30,18,9,.22);
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s, transform .3s;
  position: relative;
}
.nav-dot::after {
  content: attr(data-label);
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  background: var(--marrom);
  color: var(--white);
  font-size: 11px;
  font-family: var(--font-body);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.nav-dot:hover::after { opacity: 1; }
.nav-dot.active { background: var(--terracota); transform: scale(1.5); }

/* ═══════════════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  body { padding-right: 0; }
  #nav-dots { display: none; }
  .sticky-form-wrapper {
    position: fixed;
    top: 0; right: -100%;
    width: min(380px, 100vw);
    height: 100dvh;
    transition: right .4s cubic-bezier(.25,.46,.45,.94);
    z-index: 950;
  }
  .sticky-form-wrapper.open { right: 0; }
  .mobile-form-btn { display: flex; }
  .hero-content { padding: 80px 24px 64px; }
  .features-grid,
  .history-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-img,
  .history-img { aspect-ratio: 4/3; max-height: 360px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { flex: 0 0 calc(50% - 8px); }
  .quality-content { padding: 60px 24px; }
  .quality-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .famous-card { flex: 0 0 calc(50% - 8px); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-section { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 calc(78% - 8px); }
  .famous-card  { flex: 0 0 calc(74% - 8px); }
  .hero-logo    { height: 72px; }
  .hero-title   { font-size: 22px; letter-spacing: 5px; }
}
