* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0F1535;
  --navy-mid: #1a2347;
  --navy-light: #263060;
  --gold: #F5C518;
  --gold-dark: #C9A010;
  --gold-light: #FAD84A;
  --white: #FFFFFF;
  --off-white: #F5F5F7;
  --gray-100: #EBEBF0;
  --gray-300: #C7C7CC;
  --gray-500: #8E8E93;
  --gray-700: #3A3A3C;
  --text-primary: #1D1D1F;
  --text-secondary: #6E6E73;
  --text-tertiary: #AEAEB2;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: #fff;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

 /*── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-header {
  height: 32px;
  width: 32px;
  object-fit: contain;
  background: var(--navy);
  border-radius: 8px;
  padding: 3px;
}

.logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* Menu-hamburguer*/
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24.
}

i#burguer { display: none; }

.menu {
  display: flex;
}

 nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

nav a {
  font-size: 0.8125rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}

nav a:hover { color: var(--gold-dark); }

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.header-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: background 0.15s;
}

.header-icon:hover { background: rgba(0,0,0,0.06); } 

 /*── Slides Inicial ── */
 .hero {
  position: relative;
  z-index: 0;
  isolation: isolate;
  height: calc(100vh - 52px);
  min-height: 600px;
  max-height: 820px;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;          /* ← adicione isso */
  pointer-events: none;
  transition: opacity 1s cubic-bezier(.4,0,.2,1);
  display: flex;
  align-items: center;
  justify-content: center;
}


.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
}

 /* Slide 1 — dark navy + gold  */
.s1 .slide-bg { background: radial-gradient(ellipse 80% 80% at 60% 50%, #1e2d6b 0%, #0F1535 60%); }

 /* Slide 2 — deeper navy  */
.s2 .slide-bg { background: radial-gradient(ellipse 80% 80% at 40% 50%, #152060 0%, #080D20 60%); }

 /* Slide 3 — navy w warm hint  */
.s3 .slide-bg { background: radial-gradient(ellipse 80% 80% at 55% 45%, #1d2555 0%, #0a0f28 60%); }

.slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  max-width: 800px;
}

.slide-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.slide-title {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}

.slide-title em {
  font-style: normal;
  color: var(--gold);
}

.slide-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.slide-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  justify-content: center;
  margin-bottom: 2.25rem;
}

#midBannersSection{
    /*padding:5rem 1rem 1.5rem;*/
    display: flex;
    flex-direction: column;
    padding: 5rem 1rem 1.5rem;
    align-items: center;
    justify-content: center;
}


#midBannersGrid{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.midBannersGrid img{
    max-height: 450px!important;
}

/* ══ CARDS DE PROMOÇÃO — edite aqui ═══════════════
   Altere height para mudar a altura dos cards      */

.offer-promo-card {
  border-radius: 15px;
  overflow: hidden;
  background: var(--promo-bg, #0F1535);
  position: relative;
}

.offer-promo-link { cursor: pointer; }
.offer-promo-link:hover { opacity: .92; }

.offer-card-img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 15px;
  height: 280px;          /* ← Desktop — altere aqui */
}


.offer-card-placeholder {
  height: 280px;          /* ← Desktop — altere aqui */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.3);
}



/* ══════════════════════════════════════════════   Altere height para mudar a altura dos banners    */

.mid-banner-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
}

.mid-banner-link { cursor: pointer; }
.mid-banner-link:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }

.mid-banner-img {
  width: 500px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  height: 350px;          /* ← Desktop — altere aqui */
}

.mid-banner-placeholder {
  height: 220px;          /* ← Desktop — altere aqui */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,.3);
}


/* ══════════════════════════════════════════════ */

.price-from { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }

.price-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.price-old {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.slide-actions { display: flex; gap: 0.875rem; justify-content: center; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.75rem 1.875rem;
  border-radius: 980px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.01em;
}

.btn-gold:hover { background: var(--gold-light); transform: scale(1.02); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.75rem 1.875rem;
  border-radius: 980px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.01em;
}

.btn-ghost-light:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

.slide-product-visual {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14rem;
  opacity: 0.12;
  pointer-events: none;
  filter: grayscale(1) brightness(3);
  line-height: 1;
}

 /* slider controls  */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.hero-dot {
  height: 2px;
  width: 24px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active { background: var(--gold); width: 40px; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}

.hero-arrow:hover { background: rgba(255,255,255,0.12); color: #fff; }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

 /*── OFFER BANNERS ── */
.banners-section {
  padding: 2rem 2rem 5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.section-intro { 
    text-align: center; 
    margin-bottom: 3rem; 
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1.1;
}

@keyframes borderRun {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.banner-borda-animada {
  position: relative;
  border-radius: 18px;
  padding: 2px; /* espessura da borda */
  background: linear-gradient(90deg, #F5C518, #C9A010, #FAD84A, #ffffff, #F5C518, #C9A010);
  background-size: 300% 300%;
  animation: borderRun 2s linear infinite;
}

.banner-borda-animada > * {
  border-radius: 15px; /* border-radius - padding */
  overflow: hidden;
  display: block;
}

.banner-borda-animada img {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
}

.offer-grid {
}

.offer-grid img{
    height: 400px !important;
}

.offer-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }

/* ══ ALTURA DOS CARDS DE PROMOÇÃO ══════════════════
   Altere os valores abaixo para mudar a altura
   dos cards de promoção em cada dispositivo        */



.offer-card-placeholder {
  height: 280px;        /* ← Desktop */
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ════════════════════════════════════════════════ */

.oc-1 { background: var(--navy); }
.oc-2 { background: #111; }

.offer-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  padding-right: 1.5rem;
}

.offer-card-emoji { font-size: 7rem; opacity: 0.18; line-height: 1; }

.offer-card-content { position: relative; z-index: 2; }

.offer-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 980px;
  margin-bottom: 0.625rem;
}

.offer-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  line-height: 1.15;
}

.offer-sub { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }

.offer-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.25rem; }
.offer-price { font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: -0.02em; }
.offer-price-old { font-size: 0.875rem; color: rgba(255,255,255,0.3); text-decoration: line-through; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s;
}

.link-arrow:hover { gap: 0.625rem; }

 /*── Mais vendidos ── */
.products-section {
  padding: 5rem 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border-radius: 20px;
}

.pcard {
  background: #fff;
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.pcard:hover { background: var(--off-white); }

.pcard-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.pcard-cat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.375rem;
}

.pcard-name {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.pcard-spec {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.pcard-bottom { display: flex; align-items: center; justify-content: space-between; }

.pcard-price {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.pcard-price-old {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  text-decoration: line-through;
  display: block;
  margin-top: 1px;
}

.pcard-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 980px;
}

.btn-add-gold {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, background 0.15s;
  flex-shrink: 0;
}

.btn-add-gold:hover { transform: scale(1.1); background: var(--gold-light); }

.ver-mais-row { text-align: center; margin-top: 2.5rem; }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(15,21,53,0.2);
  padding: 0.75rem 2.5rem;
  border-radius: 980px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: all 0.2s;
}

.btn-outline-navy:hover { border-color: var(--navy); background: rgba(15,21,53,0.04); }

 /*── PROMO BANNER ── */
.promo-wrap {
  padding: 0 2rem 5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.promo-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
}

.promo-btn{
  font-size:1rem;
  padding:.875rem 2.5rem;
}

.promo-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(245,197,24,0.07);
}

.promo-circle-1 { width: 500px; height: 500px; right: -100px; top: -150px; }
.promo-circle-2 { width: 250px; height: 250px; right: 200px; bottom: -100px; }

.promo-left { position: relative; z-index: 2; }

.promo-timer { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1.75rem; }

.timer-label { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

.timer-units { display: flex; gap: 0.375rem; }

.tunit {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.375rem 0.625rem;
  min-width: 46px;
}

.tunit-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
}

.tunit-label {
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.promo-eyebrow { font-size: 0.6875rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }

.promo-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.promo-desc { font-size: 0.9375rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 2rem; }

.promo-price-row { display: flex; align-items: baseline; gap: 0.875rem; margin-bottom: 2rem; }
.promo-price-new { font-size: 3rem; font-weight: 700; color: var(--gold); letter-spacing: -0.04em; }
.promo-price-old { font-size: 1.0625rem; color: rgba(255,255,255,0.25); text-decoration: line-through; }
.promo-off-pill {
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 980px;
  letter-spacing: 0.04em;
}

.promo-visual {
  position: relative;
  z-index: 2;
  font-size: 11rem;
  line-height: 1;
  filter: drop-shadow(0 32px 80px rgba(245,197,24,0.2));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

 /* ── RECENT PRODUCTS SLIDE ──  */
.slide-section {
  padding: 0 2rem 5rem;
  max-width: 1120px;
  padding-bottom: 150px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.slide-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.slide-nav { display: flex; gap: 0.5rem; }

.snav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  color: var(--text-primary);
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.snav-btn:hover { background: var(--navy); color: #fff; }

.rec-track-wrap { overflow: hidden; width: 100%; position: relative; }

.rec-track {
  display: flex;
  gap: 1px;
  background: var(--gray-100);
  border-radius: 20px;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

.rec-track .pcard { flex: 0 0 25%; }

 /*── lançamento 2026 ── */
.launches-wrap {
  background: var(--navy);
  padding: 5rem 2rem;
}

.launches-inner { max-width: 1120px; margin: 0 auto; }

.launches-intro { text-align: center; margin-bottom: 3.5rem; }

.eyebrow-light { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); opacity: 0.75; margin-bottom: 0.5rem; }

.section-title-light {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}


/*Video seção Lançamentos do ano*/
.launch-video iframe,
.launches-inner iframe,
.launch-embed iframe {
  border-radius: 16px; /* ← adicione aqui */
  overflow: hidden;
  height: 100%;
  width: 100%;
}



.section-sub-light { font-size: 1rem; color: rgba(255,255,255,0.45); max-width: 480px; margin: 0 auto; line-height: 1.55; }

.video-card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  aspect-ratio: 16/9;
  max-width: 860px;
  margin: 0 auto 2.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  padding-left: 5px;
}

.play-circle:hover { transform: scale(1.08); box-shadow: 0 8px 40px rgba(245,197,24,0.3); }

.play-circle svg { width: 26px; height: 26px; fill: var(--navy); }

.video-desc { font-size: 0.875rem; color: rgba(255,255,255,0.3); }

.vol-title { font-size: 1.125rem; font-weight: 600; color: #fff; letter-spacing: -0.02em; }
.vol-sub { font-size: 0.8125rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

.vol-pill {
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.25);
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 980px;
  letter-spacing: 0.04em;
  align-self: flex-end;
}

.launch-pills {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.launch-pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 0.875rem 1.375rem;
  cursor: pointer;
  transition: all 0.2s;
}

.launch-pill:hover { background: rgba(245,197,24,0.08); border-color: rgba(245,197,24,0.25); }

.lp-icon { font-size: 1.5rem; }
.lp-name { font-size: 0.9375rem; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.lp-date { font-size: 0.6875rem; color: var(--gold); font-weight: 500; margin-top: 2px; }

 /*── seção de ajuda ── */
.help-wrap {
  padding: 5rem 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.help-card {
  background: var(--off-white);
  border-radius: 24px;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.help-left { flex: 1; }

.help-eyebrow { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #25D366; margin-bottom: 0.75rem; }

.help-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.875rem;
}

.help-desc { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 2rem; }

.help-feats { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2.5rem; }

.help-feat { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9375rem; color: var(--text-primary); }

.feat-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.2);
  color: #25D366;
  font-size: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 0.875rem 2.25rem;
  border-radius: 980px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.btn-whatsapp:hover { transform: scale(1.02); box-shadow: 0 6px 28px rgba(37,211,102,0.3); }

.help-right { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.hcard {
  background: #fff;
  border-radius: 16px;
  padding: 1.375rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 0.5px solid rgba(0,0,0,0.06);
}

.hcard:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }

.hcard-icon { font-size: 1.625rem; display: block; margin-bottom: 0.75rem; }

.hcard-title { font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); letter-spacing: -0.01em; margin-bottom: 0.25rem; }

.hcard-sub { font-size: 0.8125rem; color: var(--text-secondary); }

 /*── FOOTER ── */
footer {
  background: #0f1535;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  padding: 3rem 2rem;
}

.footer-inner { max-width: 1120px; margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }

.footer-logo-img {
  height: 28px;
  width: 28px;
  object-fit: contain;
  background: var(--navy);
  border-radius: 7px;
  padding: 3px;
}

.footer-logo-text { font-size: 0.9375rem; font-weight: 600; color: #fff; letter-spacing: -0.01em; }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.8125rem; transition: color 0.15s; }

.footer-links a:hover { color: #fff; }

.footer-social { display: flex; gap: 0.75rem; }

.fsocial-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.fsocial-btn:hover { background: rgba(255,255,255,0.12); }

.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.75rem; }


/* ══════════════════════════════════════════════════════════
   CARDS DINÂMICOS · index.html
   ══════════════════════════════════════════════════════════ */

/* ── GRID MAIS VENDIDOS ── */
.promo-card {
  padding: 2rem;
}

.icard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border-radius: 20px;
}

.icard {
  background: #fff;
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.icard:hover {
  background: var(--off-white);
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.icard-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 980px;
}

.icard-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s;
}

.icard:hover .icard-icon-wrap { background: var(--gray-300); }

.icard-icon { font-size: 2.25rem; line-height: 1; }

.icard-brand {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.25rem;
}

.icard-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.icard-spec {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
  flex: 1;
  margin-bottom: 1.25rem;
}

.icard-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.icard-prices { display: flex; flex-direction: column; gap: 2px; }

.icard-price {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.icard-old {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.icard-disc {
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.35);
  color: var(--gold-dark);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 980px;
  letter-spacing: 0.02em;
}

/* ── SLIDER RECENTES ── */
.rec-track {
  display: flex;
  gap: 1px;
  background: var(--gray-100);
  border-radius: 20px;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  width: 100%;
}

.rcard {
  flex: 0 0 calc(25% - 1px);
  min-width: 0;
  background: #fff;
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.rcard:hover {
  background: var(--navy);
  z-index: 1;
  box-shadow: 0 8px 32px rgba(15,21,53,0.2);
  transform: translateY(-2px);
}

.rcard-new {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 980px;
}

.rcard-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s;
}

.rcard:hover .rcard-icon-wrap { background: rgba(255,255,255,0.1); }

.rcard-icon { font-size: 2rem; line-height: 1; }

.rcard-brand {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.125rem;
  transition: color 0.2s;
}

.rcard:hover .rcard-brand { color: rgba(255,255,255,0.4); }

.rcard-cat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}

.rcard:hover .rcard-cat { color: var(--gold); }

.rcard-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}

.rcard:hover .rcard-name { color: #fff; }

.rcard-spec {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
  flex: 1;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}

.rcard:hover .rcard-spec { color: rgba(255,255,255,0.45); }

.rcard-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.rcard-price {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  transition: color 0.2s;
}

.rcard:hover .rcard-price { color: var(--gold); }

.rec-track-wrap:active { cursor: grabbing; }

/* Impede que cliques em cards disparem durante o drag */
.rec-track.dragging { pointer-events: none; }

 /*── RESPONSIVE ── */

/* ══ IMAGENS DESKTOP vs MOBILE ════════════════════
   banner-img-desktop: visível no desktop, oculto no mobile
   banner-img-mobile:  visível no mobile, oculto no desktop  */

.banner-img-mobile { display: none !important; }
.banner-img-desktop { display: block; }

@media (max-width: 768px) {
  .banner-img-desktop { display: none !important; }
  .banner-img-mobile  { display: block !important; }
}

/* ══════════════════════════════════════════════ */
@media only screen and (max-width: 900px) {
  .icard-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SLIDER DRAG ── */
.rec-track-wrap {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}


@media only screen and (max-width: 480px) {
/* rcard: mesmo tamanho do icard */
.rcard {
  flex: 0 0 194.5px;
  min-width: 194.5px;
  min-height: 360.19px;
  padding: 1.75rem 1.5rem;
}

header{
  max-width: 100%;
  padding: 7px;
  justify-content: space-between;
}

#midBannersGrid{
  flex-direction: column;
}

#midBannersGrid img {
    width: 350px;
    height: 350px;
}

.section-intro { 
    text-align: center; 
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.banners-section { padding: 5rem 1rem 5rem; }

.help-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/*Seção Card Social*/
.offer-grid img { 
    height: 500px !important; 
}

.offer-grid{
    grid-template-columns: 1fr;
}


.products-section {
    padding: 2rem 0rem;
}

.icard-grid{
    border-radius: 0px;
}

.slide-header{
    padding: 0 2rem;
}

.slide-section{
    padding: 0 0 4rem;

}

.rec-track {
    border-radius: 0px;
}

.promo-card{
    box-shadow: 0 0 0 1.5px var(--gold), 0 32px 80px rgba(15,21,53,0.3);
}

.icard-disc {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 980px;
    letter-spacing: 0.02em;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 55px;
}

}

/* ── MOBILE: hambúrguer (760px e abaixo) ─────────────────────────────── */
@media only screen and (max-width: 760px) {
  i#burguer {
    display: block;
    cursor: pointer;
  }

  /* Esconde nav no mobile por padrão */
  nav.menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 2rem;
    gap: 1.25rem;
    z-index: 998;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  /* Abre quando JS adiciona classe .open */
  nav.menu.open {
    display: flex;
  }

  header {
    padding: 7px;
    justify-content: space-between;
  }
  .header-right { gap: 0.5rem; }
}

/* ── 390px: ajustes extras ──────────────────────────────────────────── */
@media only screen and (max-width: 390px) {
    
.slide-title { 
    font-size: 2.25rem; 
    
}
  
header { 
    max-width: 100%; 
    
}

#midBannersSection{
    padding: 0rem 1rem 1.5rem;
}

#midBannersGrid{
  flex-direction: column;
}

#midBannersGrid img {
    width: 350px;
    height: 350px;
}
  
.section-intro { 
    text-align: center; 
    margin-top: 5rem;
    margin-bottom: 3rem;
}


  
.banners-section { padding: 5rem 1rem 5rem; }


.offer-grid {
  display: grid;
  grid-template-columns: 1fr ;
  gap: 1rem;
}


/*Seção Card Social*/
.offer-grid img { 
    height: 500px !important; 
}

.products-grid {
  grid-template-columns: repeat(2, 1fr);
}

.products-section {
    padding: 2rem 0rem;
}

.section-title {
  font-size: 2rem;
}
  
 /*── seção de ajuda ── */
.help-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.launches-wrap { 
  padding: 1rem 1rem;
  padding-top: 70px;
  padding-bottom: 70px;
}

.rcard {
  flex: 0 0 194.5px;
  min-width: 194.5px;
  min-height: 360.19px;
  padding: 1.75rem 1.5rem;
}

.slide-header{
    padding: 0 1rem;
}

.slide-section{
  padding: 0;
  max-width: 1120px;
  padding-bottom: 70px;
  margin: 0 auto;
}

.promo-card{
    box-shadow: 0 0 0 1.5px var(--gold), 0 32px 80px rgba(15,21,53,0.3);
}

.icard-disc {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 980px;
    letter-spacing: 0.02em;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 55px;
}

}
/* ── icard: badge "Mais Vendido" e categoria ── */
.icard { position: relative; }

.icard-badge-hot {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 980px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}

.icard-cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9A010;
  margin-bottom: 0.25rem;
}
.rec-clip { overflow: hidden; width: 100%; position: relative; }