:root{
  --lux-bg:#020202;
  --lux-bg-2:#060606;
  --lux-bg-3:#0b0b0d;

  --lux-surface:#0d0d0f;
  --lux-surface-2:#121216;
  --lux-surface-3:#17181d;

  --lux-card:#101114;
  --lux-card-soft:rgba(16,17,20,.92);

  --lux-text:#f5f3ee;
  --lux-text-soft:#d9d2c4;
  --lux-muted:#9b9488;

  --lux-line:rgba(255,255,255,.08);
  --lux-line-strong:rgba(255,255,255,.12);
  --lux-gold-line:rgba(212,175,55,.22);

  --lux-gold:#d4af37;
  --lux-gold-2:#b8901f;
  --lux-gold-soft:#f2df9b;

  --lux-blue:#3b82f6;
  --lux-blue-2:#1d4ed8;
  --lux-blue-soft:#bfdbfe;

  --lux-green:#22c55e;
  --lux-red:#ef4444;

  --lux-shadow:0 24px 70px rgba(0,0,0,.52);
  --lux-shadow-soft:0 16px 38px rgba(0,0,0,.34);

  --lux-radius-xl:28px;
  --lux-radius-lg:22px;
  --lux-radius-md:16px;
  --lux-radius-sm:12px;
}

*{
  box-sizing:border-box;
}

html,
body{
  height:100%;
  margin:0;
  padding:0;
  max-width:100%;
  overflow-x:hidden;
}

html{
  scroll-behavior:smooth;
}

body{
  font:16px/1.65 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--lux-text);
  background:
    radial-gradient(1200px 600px at 12% 10%, rgba(212,175,55,.07), transparent 60%),
    radial-gradient(900px 520px at 88% 0%, rgba(59,130,246,.08), transparent 58%),
    radial-gradient(900px 600px at 70% 90%, rgba(212,175,55,.05), transparent 62%),
    linear-gradient(180deg, var(--lux-bg) 0%, var(--lux-bg-2) 45%, var(--lux-bg-3) 100%);
}

body.menu-open{
  overflow:hidden;
}

a{
  color:var(--lux-text);
  text-decoration:none;
  transition:.18s ease;
}

a:hover{
  color:#fff;
  text-decoration:none;
}

strong{
  color:#fffdf7;
}

p{
  color:var(--lux-muted);
  margin:0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6{
  margin:0 0 .9rem;
  color:#fffdf8;
  line-height:1.15;
  letter-spacing:-.02em;
}

ul,
ol{
  margin:0 0 1rem;
  padding-left:1.2rem;
}

img,
video{
  max-width:100%;
  height:auto;
  display:block;
}

iframe{
  max-width:100%;
  display:block;
  border:0;
}

/* ===== MENU ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:9999;
  width:100%;
  background:rgba(6,6,7,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.site-header__inner{
  width:min(1380px, calc(100% - 40px));
  min-height:88px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.site-brand{
  display:flex;
  align-items:center;
  min-width:max-content;
}

.site-brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.site-brand__title{
  font-size:1.22rem;
  font-weight:900;
  color:#fffdf7;
  letter-spacing:-.02em;
}

.site-brand__subtitle{
  margin-top:6px;
  font-size:.76rem;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:var(--lux-muted);
}

.site-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex:1;
}

.site-nav__list{
  list-style:none;
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0;
  margin:0 auto;
  flex-wrap:nowrap;
}

.site-nav__item{
  margin:0;
  padding:0;
}

.site-nav__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 16px;
  border-radius:14px;
  color:var(--lux-text-soft);
  font-weight:700;
  white-space:nowrap;
  border:1px solid transparent;
}

.site-nav__link:hover{
  color:#fff;
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.06);
}

.site-nav__link.is-active{
  color:#fffdf7;
  background:rgba(212,175,55,.10);
  border:1px solid rgba(212,175,55,.20);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.site-nav__extras{
  display:flex;
  align-items:center;
  gap:12px;
}

.header-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:11px 16px;
  border-radius:14px;
  font-weight:800;
  color:#090909;
  background:linear-gradient(135deg, var(--lux-gold), var(--lux-gold-2));
  box-shadow:0 12px 24px rgba(212,175,55,.22);
  border:1px solid rgba(212,175,55,.18);
}

.header-btn:hover{
  color:#090909;
  transform:translateY(-1px);
  box-shadow:0 16px 28px rgba(212,175,55,.28);
}

.header-btn--ghost{
  color:#f8f8f6;
  background:linear-gradient(180deg, #17191f 0%, #101319 100%);
  border:1px solid var(--lux-line);
  box-shadow:0 10px 20px rgba(0,0,0,.22);
}

.header-btn--ghost:hover{
  color:var(--lux-gold-soft);
  border-color:rgba(212,175,55,.22);
}

/* ===== HAMBURGUER ===== */
.menu-toggle{
  display:none;
  width:52px;
  height:52px;
  border:1px solid var(--lux-line);
  border-radius:16px;
  background:rgba(255,255,255,.04);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  padding:0;
  transition:.18s ease;
}

.menu-toggle:hover{
  border-color:rgba(212,175,55,.22);
  background:rgba(255,255,255,.06);
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  border-radius:999px;
  background:var(--lux-text);
  transition:.25s ease;
}

.menu-toggle.is-open span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2){
  opacity:0;
}

.menu-toggle.is-open span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

/* ===== CONTEÚDO BASE ===== */
.container{
  min-height:calc(100vh - 88px);
  display:grid;
  place-items:start center;
  padding:32px 16px;
  max-width:100%;
}

.card{
  width:min(920px, 100%);
  max-width:100%;
  background:var(--lux-card-soft);
  border:1px solid var(--lux-line);
  border-radius:var(--lux-radius-lg);
  box-shadow:var(--lux-shadow);
  overflow:hidden;
}

.card-inner{
  padding:28px 26px;
  max-width:100%;
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 24px;
  border-bottom:1px solid var(--lux-line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), transparent),
    linear-gradient(180deg, rgba(212,175,55,.03), transparent 70%);
  flex-wrap:wrap;
  max-width:100%;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:#fff;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color:var(--lux-gold-soft);
  border:1px solid rgba(212,175,55,.20);
  background:rgba(212,175,55,.08);
  padding:5px 10px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.05em;
}

/* ===== ALERTAS ===== */
.alert{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--lux-line);
  background:rgba(255,255,255,.04);
  margin:14px 0;
  color:var(--lux-text-soft);
}

.alert.err{
  border-color:rgba(239,68,68,.30);
  background:rgba(239,68,68,.10);
  color:#ffe2e2;
}

.alert.ok{
  border-color:rgba(34,197,94,.28);
  background:rgba(34,197,94,.10);
  color:#dcfce7;
}

/* ===== FORMULÁRIOS ===== */
.form{
  display:grid;
  gap:14px;
  margin-top:14px;
  max-width:100%;
}

label{
  display:grid;
  gap:7px;
  color:var(--lux-text-soft);
  font-size:14px;
  font-weight:600;
}

input,
select,
textarea{
  width:100%;
  max-width:100%;
  padding:13px 14px;
  border-radius:12px;
  border:1px solid var(--lux-line);
  background:rgba(0,0,0,.24);
  color:var(--lux-text);
  outline:none;
  font:inherit;
  transition:.18s ease;
}

input::placeholder,
textarea::placeholder{
  color:#8f8a80;
}

input:focus,
select:focus,
textarea:focus{
  border-color:rgba(212,175,55,.38);
  box-shadow:0 0 0 4px rgba(212,175,55,.10);
  background:rgba(0,0,0,.30);
}

textarea{
  min-height:120px;
  resize:vertical;
}

.btn,
button.btn{
  border:0;
  padding:13px 16px;
  border-radius:12px;
  cursor:pointer;
  font-weight:800;
  color:#090909;
  background:linear-gradient(135deg, var(--lux-gold), var(--lux-gold-2));
  max-width:100%;
  box-shadow:0 12px 24px rgba(212,175,55,.18);
  transition:.18s ease;
}

.btn:hover,
button.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 28px rgba(212,175,55,.24);
}

.btn-secondary{
  color:#f8f8f6;
  background:linear-gradient(180deg, #17191f 0%, #101319 100%);
  border:1px solid var(--lux-line);
  box-shadow:0 10px 20px rgba(0,0,0,.22);
}

.btn-secondary:hover{
  color:var(--lux-gold-soft);
  border-color:rgba(212,175,55,.22);
}

.btn-danger{
  color:#fff;
  background:linear-gradient(135deg, #dc2626, #991b1b);
  box-shadow:0 12px 24px rgba(220,38,38,.20);
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
  max-width:100%;
}

/* ===== FOOTER INTERNO ===== */
.footer{
  padding:16px 24px;
  border-top:1px solid var(--lux-line);
  color:var(--lux-muted);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-size:13px;
  max-width:100%;
}

/* ===== VIDEO / EMBEDS ===== */
.video-embed{
  width:100%;
  margin-top:18px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(0,0,0,.22);
  border:1px solid var(--lux-line);
  background:rgba(255,255,255,.03);
}

.video-embed iframe{
  width:100%;
  aspect-ratio:16 / 9;
  min-height:220px;
  display:block;
  border:0;
}

/* ===== TABELAS GERAIS ===== */
table{
  width:100%;
  max-width:100%;
  border-collapse:collapse;
}

.table-wrap{
  width:100%;
  max-width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border:1px solid var(--lux-line);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow:var(--lux-shadow-soft);
}

.table-wrap table{
  width:100%;
  min-width:560px;
  border-collapse:collapse;
}

.table-wrap th,
.table-wrap td{
  padding:12px 14px;
  text-align:left;
  border-bottom:1px solid var(--lux-line);
}

.table-wrap th{
  color:#fff;
  font-weight:800;
  background:rgba(255,255,255,.03);
}

.table-wrap td{
  color:var(--lux-text-soft);
}

.table-wrap tr:hover td{
  background:rgba(255,255,255,.02);
}

/* ===== BLOCOS VIP / RESTRITOS ===== */
.vip-content{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.vip-intro{
  position:relative;
  background:
    linear-gradient(135deg, rgba(212,175,55,.08) 0%, rgba(255,255,255,.02) 20%, rgba(59,130,246,.08) 100%),
    linear-gradient(180deg, #0b0d11 0%, #12161d 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:26px;
  padding:28px 26px;
  box-shadow:var(--lux-shadow-soft);
  overflow:hidden;
}

.vip-intro::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg, var(--lux-gold), var(--lux-blue), var(--lux-gold));
}

.vip-intro-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 14px;
  border-radius:999px;
  margin-bottom:18px;
  background:rgba(212,175,55,.10);
  border:1px solid rgba(212,175,55,.24);
  color:var(--lux-gold-soft);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.vip-intro-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.vip-intro-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(248,248,246,.88);
  font-size:.84rem;
  font-weight:700;
}

.vip-block{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.vip-block-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.vip-section-kicker{
  display:inline-block;
  margin-bottom:10px;
  color:rgba(248,248,246,.56);
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
}

.vip-block-note{
  max-width:360px;
  color:rgba(248,248,246,.60);
  line-height:1.7;
  font-size:.92rem;
  text-align:right;
}

.vip-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
  gap:18px;
}

.vip-card{
  position:relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015)),
    linear-gradient(180deg, #0d1014 0%, #141821 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--lux-shadow-soft);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow:hidden;
}

.vip-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg, var(--lux-gold), var(--lux-blue));
}

.vip-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 38px rgba(0,0,0,.34);
  border-color:rgba(212,175,55,.18);
}

.vip-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}

.vip-card-icon{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--lux-gold), var(--lux-gold-2));
  color:#090909;
  font-size:.88rem;
  font-weight:900;
  letter-spacing:.06em;
  box-shadow:0 12px 24px rgba(212,175,55,.20);
  flex:0 0 auto;
}

.vip-card-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(59,130,246,.12);
  border:1px solid rgba(59,130,246,.22);
  color:var(--lux-blue-soft);
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.vip-card h3{
  margin:0 0 8px;
  font-size:1.08rem;
  color:#fffdf8;
  font-weight:900;
}

.vip-card p{
  margin:0 0 16px;
  color:rgba(248,248,246,.66);
  line-height:1.7;
  font-size:.95rem;
}

.vip-card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}

.vip-card-meta span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.07);
  color:rgba(248,248,246,.82);
  font-size:.78rem;
  font-weight:700;
}

.vip-card a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
  padding:11px 14px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--lux-gold), var(--lux-gold-2));
  color:#090909;
  transition:.18s ease;
  box-shadow:0 12px 24px rgba(212,175,55,.20);
}

.vip-card a:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 28px rgba(212,175,55,.28);
  color:#090909;
}

/* ===== UTILITÁRIOS ===== */
.text-center{
  text-align:center;
}

.text-right{
  text-align:right;
}

.text-muted{
  color:var(--lux-muted);
}

.mb-0{
  margin-bottom:0;
}

.mt-0{
  margin-top:0;
}

/* ===== MENU RESPONSIVO ===== */
@media (max-width:980px){
  .menu-toggle{
    display:flex;
  }

  .site-header__inner{
    min-height:78px;
  }

  .site-nav{
    position:fixed;
    top:78px;
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:18px;
    padding:18px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:26px;
    background:rgba(8,8,9,.97);
    box-shadow:0 28px 60px rgba(0,0,0,.42);
  }

  .site-nav.is-open{
    display:flex;
  }

  .site-nav__list{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:8px;
    margin:0;
  }

  .site-nav__item{
    width:100%;
  }

  .site-nav__link{
    width:100%;
    justify-content:flex-start;
    min-height:52px;
    padding:14px 16px;
    border-radius:16px;
    font-size:1rem;
  }

  .site-nav__extras{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding-top:10px;
    border-top:1px solid var(--lux-line);
  }

  .header-btn,
  .header-btn--ghost{
    width:100%;
  }
}

/* ===== MOBILE GERAL ===== */
@media (max-width:720px){
  .site-header__inner{
    width:min(100% - 24px, 1380px);
    gap:14px;
  }

  .site-brand__subtitle{
    display:none;
  }

  .menu-toggle{
    width:48px;
    height:48px;
    border-radius:14px;
  }

  .container{
    padding:20px 12px;
  }

  .card{
    border-radius:18px;
  }

  .card-inner,
  .header,
  .footer{
    padding-left:14px;
    padding-right:14px;
  }

  .header{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn,
  .btn-secondary,
  .btn-danger,
  .header-btn,
  .header-btn--ghost,
  button{
    width:100%;
  }

  h1{
    font-size:1.7rem;
    line-height:1.15;
  }

  h2{
    font-size:1.35rem;
    line-height:1.2;
  }

  table th,
  table td{
    white-space:nowrap;
    font-size:14px;
    padding:10px 8px;
  }

  .video-embed{
    border-radius:16px;
    margin-top:16px;
  }

  .video-embed iframe{
    min-height:200px;
  }

  .vip-intro,
  .vip-card{
    border-radius:22px;
  }

  .vip-block-note{
    text-align:left;
    max-width:none;
  }

  .vip-intro-highlights{
    flex-direction:column;
  }

  .vip-card a{
    width:100%;
  }
}

@media (max-width:480px){
  .site-brand__title{
    font-size:1.04rem;
  }

  .header{
    padding-top:16px;
    padding-bottom:16px;
  }

  .card-inner{
    padding:20px 16px;
  }

  input,
  select,
  textarea{
    padding:12px 12px;
  }
}

/* ===== NEWSLETTER HOME ===== */
.home-newsletter{
  width:min(1180px, calc(100% - 32px));
  margin:48px auto 0;
}

.newsletter-premium{
  position:relative;
  overflow:hidden;
  padding:34px;
  border-radius:var(--lux-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02)),
    var(--lux-card-soft);
  border:1px solid var(--lux-gold-line);
  box-shadow:var(--lux-shadow);
}

.newsletter-premium::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.045), transparent 34%, rgba(212,175,55,.035));
  pointer-events:none;
}

.newsletter-premium > *{
  position:relative;
  z-index:1;
}

.newsletter-kicker,
.instagram-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(212,175,55,.10);
  border:1px solid rgba(212,175,55,.24);
  color:var(--lux-gold-soft);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.newsletter-premium h2{
  margin:0 0 10px;
  font-size:clamp(1.65rem, 3vw, 2.55rem);
  line-height:1.08;
}

.newsletter-premium p{
  max-width:780px;
  color:var(--lux-text-soft);
}

.newsletter-form{
  display:flex;
  gap:14px;
  margin-top:24px;
}

.newsletter-form input{
  flex:1;
  min-height:54px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.28);
  color:var(--lux-text);
  padding:0 18px;
  font-size:1rem;
}

.newsletter-form input:focus{
  border-color:rgba(212,175,55,.42);
  box-shadow:0 0 0 4px rgba(212,175,55,.10);
}

.newsletter-feedback{
  margin-top:14px;
  color:var(--lux-gold-soft);
  font-size:.95rem;
}

/* ===== INSTAGRAM HOME ===== */
.home-instagram{
  width:min(1180px, calc(100% - 32px));
  margin:54px auto 0;
}

.instagram-head{
  max-width:820px;
  margin-bottom:28px;
}

.instagram-head h2{
  font-size:clamp(1.65rem, 3vw, 2.55rem);
}

.instagram-head p{
  color:var(--lux-text-soft);
}

.instagram-carousel{
  position:relative;
  max-width:660px;
  margin:0 auto;
  padding:18px;
  border-radius:var(--lux-radius-xl);
  border:1px solid var(--lux-gold-line);
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018)),
    var(--lux-card-soft);
  box-shadow:var(--lux-shadow);
}

.ig-track{
  min-height:540px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.ig-slide{
  display:none;
  width:100%;
  justify-content:center;
}

.ig-slide.is-active{
  display:flex;
}

.ig-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.32);
  background:rgba(0,0,0,.76);
  color:var(--lux-gold-soft);
  font-size:2rem;
  line-height:1;
  cursor:pointer;
  box-shadow:var(--lux-shadow-soft);
  transition:.18s ease;
}

.ig-arrow:hover{
  background:rgba(212,175,55,.16);
  transform:translateY(-50%) scale(1.04);
}

.ig-prev{
  left:-60px;
}

.ig-next{
  right:-60px;
}

.ig-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:16px;
}

.ig-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.22);
  cursor:pointer;
}

.ig-dot.is-active{
  width:28px;
  background:linear-gradient(135deg, var(--lux-gold), var(--lux-gold-2));
}

@media (max-width:760px){
  .newsletter-premium{
    padding:24px;
  }

  .newsletter-form{
    flex-direction:column;
  }

  .newsletter-form .btn{
    width:100%;
  }

  .instagram-carousel{
    padding:12px;
  }

  .ig-track{
    min-height:510px;
  }

  .ig-prev{
    left:8px;
  }

  .ig-next{
    right:8px;
  }
}