@font-face{
  font-family: 'Pricedown';
  src: url('../fonts/Pricedown.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #150a24;
  --bg-alt: #1e0f36;
  --indigo: #1a0b2e;
  --purple: #5a2a8f;
  --magenta: #ff2d95;
  --pink: #ff5fa8;
  --orange: #ff8a3d;
  --gold: #ffc35c;
  --teal: #2dd9c7;
  --white: #fdf6ff;
  --ink: #0d0616;
  --card: #24123f;
  --card-border: rgba(255,255,255,0.08);
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-glow: 0 0 30px rgba(255,45,149,0.35);
  --radius: 14px;
}

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

html{scroll-behavior:smooth;}

body{
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.5;
}

img{max-width:100%; display:block;}

a{color:inherit; text-decoration:none;}

.grain{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */

.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(21,10,36,0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner{
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo{
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(255,45,149,0.45));
}

.nav{
  display: flex;
  gap: 32px;
}

.nav-link{
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s, text-shadow 0.2s;
}

.nav-link:hover{
  opacity: 1;
  text-shadow: 0 0 14px var(--magenta);
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

.wanted-badge{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
}

.wanted-text{
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.wanted-stars{
  display: flex;
  gap: 2px;
}

.wanted-stars svg{
  width: 13px;
  height: 13px;
  fill: var(--gold);
  animation: wanted-blink 1.1s ease-in-out infinite;
}

.wanted-stars svg:nth-child(2){animation-delay: 0.12s;}
.wanted-stars svg:nth-child(3){animation-delay: 0.24s;}
.wanted-stars svg:nth-child(4){animation-delay: 0.36s;}
.wanted-stars svg:nth-child(5){animation-delay: 0.48s;}

@keyframes wanted-blink{
  0%, 100%{
    filter: drop-shadow(0 0 2px rgba(255,195,92,0.6));
    opacity: 1;
  }
  50%{
    filter: drop-shadow(0 0 9px rgba(255,195,92,1)) drop-shadow(0 0 16px rgba(255,195,92,0.8));
    opacity: 0.75;
  }
}

.cart-btn{
  position: relative;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cart-btn:hover{
  border-color: var(--magenta);
  box-shadow: 0 0 16px rgba(255,45,149,0.4);
}

.cart-count{
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--magenta);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.menu-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span{
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero{
  position: relative;
  margin-top: 73px;
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 6vw;
}

.hero-photo{
  position: absolute;
  inset: 0;
  background: var(--bg);
  overflow: hidden;
}

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-video.is-active{
  opacity: 1;
  z-index: 1;
}

#heroVideo1{ object-position: 64% 38%; }
#heroVideo2{ object-position: center 32%; }
#heroVideo3{ object-position: 58% 35%; }
#heroVideo4{ object-position: 42% 30%; }

.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,11,46,0.4) 0%, rgba(26,11,46,0.05) 22%, rgba(26,11,46,0.12) 55%, rgba(21,10,36,0.78) 88%, var(--bg) 100%),
    linear-gradient(115deg, rgba(255,45,149,0.25) 0%, rgba(90,42,143,0.1) 35%, rgba(45,217,199,0.16) 100%);
}

.hero-neon-edge{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow:
    inset 0 50px 90px -40px rgba(255,45,149,0.6),
    inset 0 -50px 100px -40px rgba(255,138,61,0.55),
    inset 50px 0 90px -40px rgba(90,42,143,0.55),
    inset -50px 0 90px -40px rgba(45,217,199,0.5);
}

.hero-content{
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 32px 36px;
  text-align: center;
}

.hero-kicker{
  font-family: var(--font-display);
  letter-spacing: 0.3em;
  font-size: 14px;
  color: var(--teal);
  text-shadow: 0 0 10px rgba(45,217,199,0.7);
  margin-bottom: 18px;
}

.hero-title{
  font-family: 'Pricedown', 'Archivo', 'Arial Black', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: clamp(38px, 8vw, 88px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-align: center;
  background: linear-gradient(90deg, var(--magenta), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(255,45,149,0.45)) drop-shadow(0 10px 2px rgba(0,0,0,0.95));
}

.hero-sub{
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  opacity: 0.95;
  text-shadow: 0 0 4px rgba(255,255,255,0.35), 0 6px 3px rgba(0,0,0,0.9);
}

.hero-actions{
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn{
  min-width: 190px;
}

.hero-fade{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(21,10,36,0) 0%, var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ---------- Buttons ---------- */

.btn{
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:active{transform: scale(0.97);}

.btn-primary{
  background: linear-gradient(90deg, var(--magenta), var(--orange));
  color: var(--ink);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover{box-shadow: 0 0 40px rgba(255,45,149,0.55);}

.btn-primary:disabled{
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-ghost{
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.btn-ghost:hover{
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(45,217,199,0.35);
}

.btn-block{width: 100%;}

/* ---------- Marquee ---------- */

.marquee{
  background: linear-gradient(90deg, var(--magenta), var(--purple), var(--teal));
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track{
  display: inline-flex;
  animation: scroll-left 240s linear infinite;
}

.marquee-track span{
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--ink);
  padding-right: 4px;
}

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

/* ---------- Sections ---------- */

.section-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.section-kicker{
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  font-size: 13px;
  color: var(--magenta);
  margin-bottom: 10px;
}

.section-title{
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.02em;
}

.section-note{
  margin-top: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* ---------- Para quem é ---------- */

.who{
  padding: 110px 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,45,149,0.12), transparent 55%),
    var(--bg-alt);
  text-align: center;
}

.who-inner{
  max-width: 640px;
  margin: 0 auto;
}

.who-title{
  font-family: 'Archivo', 'Arial Black', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(45,217,199,0.4));
}

.who-list{
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.who-list li{
  position: relative;
  padding-left: 30px;
  font-family: var(--font-display);
  font-size: clamp(17px, 2.6vw, 22px);
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.who-list li::before{
  content: '▸';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--magenta);
  text-shadow: 0 0 10px rgba(255,45,149,0.6);
}

.who-stars{
  color: var(--gold);
  letter-spacing: 0.1em;
  text-shadow: 0 0 12px rgba(255,195,92,0.7);
}

.who-highlight{
  margin-top: 52px;
  font-family: 'Archivo', 'Arial Black', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.25;
  background: linear-gradient(90deg, var(--magenta), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(255,45,149,0.4));
}

.who-text{
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.6;
}

.products{
  padding: 100px 24px;
  background: var(--bg);
}

/* ---------- Product grid ---------- */

.product-grid{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.product-card{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.product-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,45,149,0.4);
  box-shadow: 0 16px 40px rgba(255,45,149,0.18);
}

.product-media{
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-mockup{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.product-mockup.is-active{
  opacity: 1;
}

.product-media.has-gallery{
  cursor: pointer;
}

.product-expand{
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,6,22,0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}

.product-expand:hover{
  background: rgba(255,45,149,0.5);
  transform: scale(1.08);
}

.product-expand svg{width: 16px; height: 16px;}

.product-tag{
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13,6,22,0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.product-info{
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-name{
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.03em;
}

.product-desc{
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.product-price{
  font-size: 20px;
  font-weight: 800;
  color: var(--teal);
}

.product-price small{
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.size-row{
  display: flex;
  gap: 8px;
}

.size-btn{
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.size-btn:hover{border-color: var(--teal);}

.size-btn.active{
  background: var(--teal);
  border-color: var(--teal);
  color: var(--ink);
}

.add-btn{
  margin-top: auto;
  background: transparent;
  border: 1px solid var(--magenta);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 11px 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.add-btn:hover{
  background: var(--magenta);
  box-shadow: 0 0 22px rgba(255,45,149,0.45);
}

.add-btn:disabled{
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---------- About ---------- */

.about{
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
}

.about-inner{
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-text{
  margin-top: 18px;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
}

.about-quote{
  margin-top: 32px;
  font-size: 19px;
  font-style: italic;
  color: var(--teal);
  text-shadow: 0 0 14px rgba(45,217,199,0.4);
}


/* ---------- Contato (página própria) ---------- */

.contact-hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 24px 100px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,45,149,0.18), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(45,217,199,0.14), transparent 55%),
    var(--bg);
}

.contact-hero-inner{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-title{
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 84px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--white);
  text-shadow: 0 0 30px rgba(255,45,149,0.35);
}

.contact-sub{
  margin: 22px auto 0;
  max-width: 480px;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.6;
}

.contact-cards{
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.contact-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 36px 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.contact-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,45,149,0.4);
  box-shadow: 0 16px 40px rgba(255,45,149,0.18);
}

.contact-card-icon{
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--magenta), var(--orange));
  margin-bottom: 8px;
}

.contact-card-name{
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--white);
}

.contact-card-detail{
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.contact-card-cta{
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

/* ---------- Footer ---------- */

.site-footer{
  padding: 60px 24px 40px;
  background: var(--ink);
  text-align: center;
}

.footer-logo{
  height: 40px;
  margin: 0 auto 14px;
  opacity: 0.9;
}

.footer-tagline{
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: var(--pink);
}

.footer-links{
  margin-top: 22px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-links a:hover{color: var(--teal);}

.footer-social{
  margin-top: 20px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-social a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.footer-social a:hover{color: var(--magenta);}

.footer-copy{
  margin-top: 26px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ---------- Cart drawer ---------- */

.cart-overlay{
  position: fixed;
  inset: 0;
  background: rgba(13,6,22,0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.cart-overlay.open{opacity: 1; pointer-events: auto;}

.cart-drawer{
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(380px, 90vw);
  background: var(--bg-alt);
  border-left: 1px solid var(--card-border);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open{transform: translateX(0);}

.cart-drawer-inner{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.cart-drawer-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-drawer-head h3{
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
}

.cart-close{
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

.cart-items{
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty{color: rgba(255,255,255,0.5); font-size: 14px;}

.cart-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
}

.cart-item-name{font-weight: 600;}
.cart-item-meta{color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 2px;}

.cart-item-remove{
  background: none;
  border: none;
  color: var(--magenta);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.cart-footer{
  border-top: 1px solid var(--card-border);
  padding-top: 18px;
  margin-top: 18px;
}

.cart-total-row{
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ---------- Galeria do produto ---------- */

.gallery-overlay{
  position: fixed;
  inset: 0;
  background: rgba(13,6,22,0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 399;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.gallery-overlay.open{opacity: 1; pointer-events: auto;}

.gallery-modal{
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  padding: 24px;
}

.gallery-modal.open{opacity: 1; pointer-events: auto;}

.gallery-stage{
  position: relative;
  width: min(420px, 90vw);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gallery-stage img,
.gallery-stage video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-stage img.is-active,
.gallery-stage video.is-active{
  opacity: 1;
}

.gallery-close{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gallery-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-arrow:hover{background: rgba(255,45,149,0.5);}
.gallery-arrow svg{width: 20px; height: 20px;}
.gallery-prev{left: 16px;}
.gallery-next{right: 16px;}

.gallery-dots{
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.gallery-dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
}

.gallery-dot.is-active{background: var(--magenta);}

@media (max-width: 640px){
  .gallery-stage{width: min(340px, 84vw);}
  .gallery-arrow{width: 38px; height: 38px;}
  .gallery-prev{left: 6px;}
  .gallery-next{right: 6px;}
}

/* ---------- Toast ---------- */

.toast{
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--card);
  border: 1px solid var(--teal);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(45,217,199,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 300;
}

.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 860px){
  .nav{
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }

  .nav.open{transform: translateY(0);}

  .nav-link{
    width: 100%;
    text-align: center;
    padding: 14px 0;
  }

  .menu-toggle{display: flex;}

  /* nav vira menu dropdown fixo aqui, então sobra o meio exato entre logo e carrinho pro wanted-badge */
  .wanted-badge{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hero{
    justify-content: center;
    align-items: stretch;
    text-align: center;
    padding: 0 24px;
  }

  .hero-content{
    max-width: 100%;
    width: 100%;
    padding: 72px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-sub{
    align-self: center;
    text-align: center;
    font-size: clamp(18px, 4.6vw, 24px);
  }

  .hero-title{
    font-size: clamp(48px, 14vw, 68px);
    margin-top: auto;
    margin-bottom: 0;
  }

  .hero-overlay{
    background:
      linear-gradient(180deg, rgba(21,10,36,0.28) 0%, rgba(21,10,36,0.28) 100%),
      linear-gradient(160deg, rgba(255,45,149,0.22) 0%, rgba(90,42,143,0.2) 32%, rgba(45,217,199,0.22) 66%, rgba(255,138,61,0.2) 100%);
  }

  .hero-actions{
    justify-content: center;
    margin-top: auto;
  }

  .hero-video{
    object-fit: cover;
  }

  /* vídeo 2 já vem bem enquadrado no celular; os outros têm céu/rua demais
     sobrando em cima, então dá um zoom pra deixar os personagens em destaque */
  #heroVideo2{ object-position: center; }
  #heroVideo1{ object-position: center; }
  #heroVideo3{ object-position: center; transform: scale(1.35); transform-origin: 50% 62%; }
  #heroVideo4{ object-position: center; transform: scale(1.18); transform-origin: 50% 55%; }

  .hero-neon-edge{
    box-shadow:
      inset 0 24px 46px -20px rgba(255,45,149,0.6),
      inset 0 -24px 50px -20px rgba(255,138,61,0.55),
      inset 24px 0 46px -20px rgba(90,42,143,0.55),
      inset -24px 0 46px -20px rgba(45,217,199,0.5);
  }

  .who-list li{
    font-size: clamp(19px, 5vw, 23px);
    line-height: 1.5;
  }
}
