:root{
  --bg:#0e0f12;
  --panel:#15171c;
  --line:#2a2f3a;

  --text:#f2f2f2;
  --muted:#aab2c5;

  --red:#e31b23;
  --red2:#ff3038;
  --white:#ffffff;

  --shadow: 0 14px 40px rgba(0,0,0,0.45);
}

*{ box-sizing:border-box; }
html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
a{ color:inherit; text-decoration:none; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:12px;
  background:linear-gradient(135deg, var(--red), var(--red2));
  color:var(--white);
  font-weight:900;
  border:1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(227,27,35,0.18);
}
.btn:hover{ filter:brightness(1.06); transform: translateY(-1px); transition: .12s ease; }
.btn.secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:none;
  color:var(--text);
}
.btn.secondary:hover{ border-color: rgba(255,255,255,0.24); }

/* ---------- Small UI ---------- */
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(21,23,28,0.55);
  color: var(--muted);
  font-size:12px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--red);
  box-shadow:0 0 0 6px rgba(227,27,35,0.18);
}
.lead{ color:var(--muted); font-size:16px; line-height:1.6; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(14,15,18,0.70);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner{
  max-width:1160px;
  margin:0 auto;
  padding:12px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:42px; width:auto; display:block; }
.brand .title{ font-weight:950; letter-spacing:0.5px; }

.nav{ display:flex; gap:18px; align-items:center; }
.nav a{ color: var(--muted); font-weight:700; }
.nav a:hover{ color: var(--text); }

.header-actions{ display:flex; gap:10px; align-items:center; }

.menu-btn{
  display:none;
  border:1px solid rgba(255,255,255,0.16);
  border-radius:12px;
  padding:10px 12px;
  background: transparent;
  color: var(--text);
  font-weight:900;
}
@media (max-width: 900px){
  .nav{ display:none; }
  .menu-btn{ display:inline-flex; }
}

/* ---------- Mobile Drawer ---------- */
.drawer{
  display:none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 80;
}
.drawer.open{ display:block; }
.drawer-panel{
  position:absolute;
  right:0; top:0; bottom:0;
  width:min(360px, 92vw);
  background: #0f1116;
  border-left:1px solid rgba(255,255,255,0.10);
  padding:18px;
}
.drawer a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  color: var(--text);
  border:1px solid rgba(255,255,255,0.06);
  margin-bottom:10px;
  background: rgba(255,255,255,0.02);
}
.drawer a:hover{ border-color: rgba(255,255,255,0.18); }

/* ---------- HERO FULLSCREEN (Index Etapa 1) ---------- */
.hero-fullscreen{
  position: relative;
  height: calc(100vh - 74px); /* header sticky */
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  background: #0b0c0f;
}

.hero-fullscreen .carousel{
  position:absolute;
  inset:0;
  height:100%;
}

.hero-fullscreen .slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .5s ease;
}
.hero-fullscreen .slide.active{ opacity:1; }

.hero-fullscreen .slide-bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  transform: scale(1.03);
}

.hero-fullscreen .overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(950px 520px at 18% 12%, rgba(227,27,35,0.24), transparent 60%),
    linear-gradient(90deg, rgba(10,11,14,0.92), rgba(10,11,14,0.28)),
    linear-gradient(180deg, rgba(10,11,14,0.55), rgba(10,11,14,0.88));
}

.hero-ui{
  position: relative;
  z-index: 5;
  height: 100%;
  display:flex;
  align-items:center;
}

.hero-inner{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px;
  width:100%;
}

.hero-copy{ max-width: 760px; }

.hero-copy h1{
  margin: 12px 0 12px;
  font-size: 62px;
  line-height: 1.0;
  letter-spacing:-1.2px;
}
@media (max-width: 820px){
  .hero-copy h1{ font-size: 42px; line-height:1.06; }
}

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 16px;
}

/* Controls */
.carousel-controls{
  position:absolute;
  left:0; right:0;
  bottom: 18px;
  z-index: 6;
  padding: 0 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.dots{ display:flex; gap:10px; }
.dotbtn{
  width:11px; height:11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.10);
  cursor:pointer;
}
.dotbtn.active{
  background: var(--red);
  border-color: rgba(227,27,35,0.9);
}

.arrows{ display:flex; gap:8px; }
.arrow{
  width:38px; height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.20);
  color: var(--text);
  cursor:pointer;
  font-weight:900;
}
.arrow:hover{ border-color: rgba(255,255,255,0.24); }

/* ---------- Footer (básico) ---------- */
.site-footer{
  border-top:1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
}
.footer-inner{
  max-width:1160px;
  margin:0 auto;
  padding:22px;
  color: var(--muted);
  font-size:13px;
}
/* Header: logo maior, sem texto */
.brand img{
  height: 86px;   /* maior */
  width: auto;
  display:block;
}

/* remove espaço do texto (já vamos tirar do HTML, mas garante) */
.brand .title{ display:none; }

@media (max-width: 900px){
  .brand img{ height: 52px; }
}
/* ===== Footer Pro ===== */
.site-footer{
  border-top:1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(900px 380px at 18% 0%, rgba(227,27,35,0.16), transparent 60%),
    rgba(0,0,0,0.25);
}

.footer-inner{
  max-width:1160px;
  margin:0 auto;
  padding:28px 22px 18px;
}

.footer-top{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap:14px;
}
@media (max-width: 980px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .footer-top{ grid-template-columns: 1fr; }
}

.footer-brand{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-brand img{
  height: 54px;
  width:auto;
  display:block;
}
.footer-desc{
  color: var(--muted);
  line-height:1.55;
  font-size: 13px;
  max-width: 46ch;
}

.footer-col .footer-title{
  font-weight:950;
  margin-bottom:10px;
  letter-spacing:0.3px;
}

.footer-link{
  display:block;
  color:var(--muted);
  padding:7px 0;
  font-weight:650;
}
.footer-link:hover{ color:var(--text); }

.footer-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(21,23,28,0.35);
  color: var(--text);
  margin-top:10px;
}
.footer-chip b{ font-weight:950; }

.footer-cta{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-cta .btn{ width:100%; }

.footer-divider{
  height:1px;
  background: rgba(255,255,255,0.10);
  margin:18px 0 14px;
  border-radius:999px;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
}
.footer-bottom a{ color:var(--muted); text-decoration:none; }
.footer-bottom a:hover{ color:var(--text); }
/* ===== HERO banner/carrossel alinhado ===== */
.hero-fullscreen{
  position: relative;
  height: calc(100vh - 74px);
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  background: #0b0c0f;
}

.hero-fullscreen .carousel{
  position:absolute;
  inset:0;
}

.hero-fullscreen .slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .45s ease;
}
.hero-fullscreen .slide.active{ opacity:1; }

.hero-fullscreen .slide-bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  transform: scale(1.02);
}

.hero-fullscreen .overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 50% 20%, rgba(227,27,35,0.18), transparent 60%),
    linear-gradient(180deg, rgba(10,11,14,0.55), rgba(10,11,14,0.88));
}

/* Conteúdo centralizado */
.hero-ui{
  position: relative;
  z-index: 5;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-inner{
  width:100%;
  max-width: 980px;
  padding: 0 22px;
  margin: 0 auto;
}

.hero-copy{
  max-width: 860px;
  margin: 0 auto;
}

.hero-copy h1{
  margin: 12px 0 12px;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing:-1.1px;
}
@media (max-width: 820px){
  .hero-copy h1{ font-size: 40px; letter-spacing:-0.6px; }
}

.hero-copy .lead{
  margin:0 auto;
  color: var(--muted);
  line-height: 1.6;
  max-width: 72ch;
}

/* CTAs centralizados */
.hero-actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 16px;
}

/* Controles padrão */
.carousel-controls{
  position:absolute;
  left:0; right:0;
  bottom: 18px;
  z-index: 6;
  padding: 0 18px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 14px;
}
.dots{ display:flex; gap:10px; }
.dotbtn{
  width:11px; height:11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.10);
  cursor:pointer;
}
.dotbtn.active{ background: var(--red); border-color: rgba(227,27,35,0.95); }

.arrows{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display:flex;
  justify-content:space-between;
  pointer-events:none;
}
.arrow{
  pointer-events:auto;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  cursor:pointer;
  font-weight:900;
}
.arrow:hover{ border-color: rgba(255,255,255,0.28); }
/* Chips (modalidades) */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top: 14px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(0,0,0,0.28);
  border:1px solid rgba(255,255,255,0.12);
  font-weight:900;
  font-size:12px;
  letter-spacing:0.2px;
}
.chip i{ color: var(--red); }

/* Botão com ícone */
.btn i{
  margin-right:10px;
  font-size: 16px;
  line-height: 0;
}
.btn.secondary i{ color: var(--text); }

/* ===== Kicker mais visível (Pré-venda) ===== */
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(227,27,35,0.45);
  background: rgba(227,27,35,0.12);
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.2px;
  box-shadow: 0 0 0 6px rgba(227,27,35,0.10);
}

.kicker .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(227,27,35,0.20);
  animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot{
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 6px rgba(227,27,35,0.18); }
  50%      { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(227,27,35,0.10); }
}

/* ===== Espaçamento do hero ===== */
.hero-copy{
  max-width: 860px;
  margin: 0 auto;
}

.hero-copy h1{
  margin-top: 18px;
  margin-bottom: 14px;
}

.hero-copy .lead{
  margin-top: 0;
  margin-bottom: 0;
}

/* ===== Chips mais premium ===== */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top: 18px;
  margin-bottom: 6px;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:11px 14px;
  border-radius:999px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.15px;
}

.chip i{
  color: var(--red);
  font-size: 16px;
}

/* ===== Botões com ícones mais alinhados ===== */
.btn i{
  margin-right:10px;
  font-size: 16px;
  line-height: 0;
}

/* ===== Mais respiro entre texto e botões ===== */
.hero-actions{
  margin-top: 18px;
}
/* ===== Mobile-first refinements ===== */

/* Base: melhora toque e legibilidade */
@media (max-width: 820px){

  /* Hero: mais espaço e menos “aperto” */
  .hero-fullscreen{
    height: calc(100vh - 68px);
    min-height: 560px;
  }

  .hero-inner{
    padding: 0 16px;
  }

  /* Kicker (pré-venda) mais “badge” e mais legível no mobile */
  .kicker{
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 14px; /* fica mais “tag premium” no mobile */
    max-width: 100%;
  }

  /* Título: quebra melhor e não fica gigante */
  .hero-copy h1{
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.4px;
    margin: 14px 0 12px;
  }

  .hero-copy .lead{
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
  }

  /* Chips: mais “compactos”, sem lotar */
  .chips{
    gap: 8px;
    margin-top: 14px;
  }
  .chip{
    padding: 9px 12px;
    font-size: 12px;
  }
  .chip i{
    font-size: 14px;
  }

  /* Botões: em coluna (1 por linha) e “tocável” */
  .hero-actions{
    margin-top: 16px;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn{
    width: 100%;
    justify-content: center;
    padding: 14px 16px; /* maior área de toque */
    border-radius: 14px;
  }

  /* Controles do carrossel: mais confortáveis no dedo */
  .carousel-controls{
    bottom: 14px;
    padding: 0 12px;
  }
  .dotbtn{
    width: 12px;
    height: 12px;
  }
  .arrow{
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

/* Mobile pequeno (ex.: 360px) */
@media (max-width: 420px){
  .hero-copy h1{
    font-size: 30px;
  }
  .kicker{
    font-size: 11.5px;
  }
}

/* Evita corte em telas muito baixas */
@media (max-height: 700px){
  .hero-fullscreen{
    min-height: 520px;
  }
}

/* ===== Header Mobile (premium) ===== */
@media (max-width: 900px){

  /* header mais compacto e alinhado */
  .header-inner{
    padding: 10px 14px;
    gap: 10px;
  }

  /* logo mais bem encaixada no mobile */
  .logo-box{
    height: 46px;
    width: 160px;
  }

  /* esconder botões grandes e deixar só 1 CTA + menu */
  .header-actions .btn.secondary{ display:none; }

  /* botão principal fica menor e “tocável” */
  .header-actions .btn{
    padding: 12px 12px;
    border-radius: 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* menu button vira “ícone” */
  .menu-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    border:1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.18);
    font-size: 18px;
  }

  /* nav já fica escondido pelo seu CSS, então ok */
}

/* ===== Drawer Mobile (melhor layout) ===== */
.drawer-panel{
  padding: 16px;
}

.drawer-panel b{
  font-weight: 950;
  letter-spacing: 0.2px;
}

.drawer a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  margin-bottom:10px;
  font-weight: 850;
}

.drawer a:active{
  transform: scale(0.99);
}

.drawer-cta{
  margin-top: 12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.drawer-cta .btn{
  width:100%;
}
.drawer a i{
  color: var(--red);
  font-size: 16px;
}
.drawer-cta .btn i{
  margin-right:10px;
}
/* ===== Catalog ===== */
.page-wrap{
  max-width:1160px;
  margin:0 auto;
  padding: 22px;
}

.catalog-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.catalog-title{
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.2px;
}

.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.select{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  min-width: 260px;
}

.catalog-grid{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.product-card{
  border-radius: 20px;
}

.product-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}

.product-name{
  font-size: 18px;
  font-weight: 950;
  margin: 6px 0 0;
}

.product-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.meta-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  color: var(--text);
  font-weight: 850;
  font-size: 12px;
}
.meta-pill i{ color: var(--red); }

.price{
  font-size: 22px;
  font-weight: 950;
}
.price small{
  display:block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}

.product-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

@media (max-width: 820px){
  .select{ min-width: 100%; width:100%; }
  .product-actions{ flex-direction: column; }
  .product-actions .btn{ width:100%; justify-content:center; padding: 14px 16px; border-radius:14px; }
}
/* ===== Price box com tracejado vermelho (destaque) ===== */
.price-box{
  border: 2px dashed rgba(227,27,35,0.75);
  background: rgba(227,27,35,0.08);
  border-radius: 18px;
  padding: 12px 14px;
  min-width: 220px;
  text-align: right;
}

.price-box .label{
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.price-box .value{
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.4px;
  margin-top: 6px;
  color: var(--white);
}

.price-box .value small{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  margin-left: 6px;
}

/* Selo “preço desta turma” */
.price-box .note{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

/* Mobile: preço vira um bloco full-width embaixo */
@media (max-width: 820px){
  .product-head{
    flex-direction: column;
    align-items: stretch;
  }
  .price-box{
    width: 100%;
    text-align: left;
    min-width: 0;
  }
  .price-box .value{
    font-size: 28px;
  }
}
/* ===== Cabeçalho do card: TURMA DISPONÍVEL + tracejado ===== */
.turma-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}

.turma-available{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius: 14px;
  border:1px solid rgba(227,27,35,0.35);
  background: rgba(227,27,35,0.08);
  font-weight: 950;
  letter-spacing: 0.2px;
  font-size: 12px;
}

.turma-available i{
  color: var(--red);
  font-size: 15px;
}

.turma-divider{
  height: 0;
  border-top: 2px dashed rgba(227,27,35,0.65);
  opacity: 1;
  margin: 10px 0 14px;
}

/* Mobile: mantém tudo alinhado e com respiro */
@media (max-width: 820px){
  .turma-top{
    flex-direction: column;
    align-items:flex-start;
  }
  .turma-divider{
    margin: 10px 0 12px;
  }
}
/* ===== Página de categorias (modalidades) ===== */
.category-grid{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.category-card{
  display:block;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(21,23,28,0.52);
  box-shadow: var(--shadow);
  padding: 16px;
}

.category-card:hover{
  border-color: rgba(227,27,35,0.35);
}

.category-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.category-arrow{
  width:38px;
  height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.20);
}
.category-arrow i{ color: var(--text); font-size: 16px; }

.category-name{
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.category-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.category-note{
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 820px){
  .category-card{ padding: 16px; }
  .category-name{ font-size: 18px; }
}
/* ===== Checkout (turmas) ===== */
.checkout-wrap{
  max-width:1160px;
  margin:0 auto;
  padding:22px;
}

.checkout-layout{
  display:grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap:14px;
  align-items:start;
}

@media (max-width: 980px){
  .checkout-layout{ grid-template-columns:1fr; }
}

.input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  outline:none;
}
.input:focus{
  border-color: rgba(227,27,35,0.55);
  box-shadow: 0 0 0 6px rgba(227,27,35,0.10);
}

.label{
  display:block;
  margin:10px 0 6px;
  font-weight:850;
  color: var(--text);
  font-size: 13px;
}

.muted-small{
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width: 820px){
  .form-grid{ grid-template-columns:1fr; }
}

.pay-methods{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:10px;
}

.pay-option{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(21,23,28,0.42);
  cursor:pointer;
}
.pay-option input{ margin-top:3px; }
.pay-option:hover{ border-color: rgba(255,255,255,0.22); }

.sum-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,0.10);
}
.sum-row.total b{ font-size: 18px; }

.sticky{
  position: sticky;
  top: 92px; /* abaixo do header */
}
@media (max-width: 980px){
  .sticky{ position: static; }
}

.checkout-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top: 12px;
}
.checkout-actions .btn{ width:100%; justify-content:center; padding: 14px 16px; border-radius:14px; }
/* ===== Diferenciação visual do catálogo (sem ficar tudo igual) ===== */

/* Card mais “claro” internamente */
.product-card{
  border-radius:22px;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.10);
}

/* Topo “Turma disponível” mais destacado */
.turma-available{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(227,27,35,0.18), rgba(227,27,35,0.06));
  border:1px solid rgba(227,27,35,0.45);
  font-weight:950;
  letter-spacing:0.3px;
  text-transform: uppercase;
  font-size:12px;
}
.turma-available i{ color: var(--red); font-size:16px; }

/* Linha tracejada mais sutil (não competir com preço) */
.turma-divider{
  border-top: 2px dashed rgba(255,255,255,0.16);
  margin: 12px 0 14px;
}

/* Badge de modalidade mais neutra (não tudo vermelho) */
.badge{
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  color: var(--text);
}
.badge .mini{ background: var(--red); }

/* Meta pills (vagas, sexo) com fundo azulado neutro */
.meta-pill{
  background: rgba(70, 90, 120, 0.14);   /* azul/cinza discreto */
  border: 1px solid rgba(120, 150, 190, 0.20);
}
.meta-pill i{ color: #b8c7ff; }          /* ícone diferente do vermelho */

/* Destaque: lotação / ambos */
.meta-pill.vagas i{ color: #a7f3d0; }     /* verde suave */
.meta-pill.sexo i{ color: #fde68a; }      /* amarelo suave */

/* Nome da turma mais forte */
.product-name{
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.2px;
}

/* Price box continua vermelho, mas mais “premium” */
.price-box{
  border: 2px dashed rgba(227,27,35,0.70);
  background:
    radial-gradient(400px 180px at 20% 20%, rgba(227,27,35,0.16), transparent 60%),
    rgba(227,27,35,0.07);
}

/* “Categoria/Produto” vira nota mais discreta */
.product-note{
  margin-top: 10px;
  color: rgba(170,178,197,0.85);
  font-size: 12.5px;
}

/* Mobile: topo e preço ficam bem claros */
@media (max-width: 820px){
  .turma-top{ flex-direction: column; align-items:flex-start; }
  .price-box{ text-align:left; }
  .product-meta{ gap:8px; }
}
/* ===== Card de turma: enquadrado, alinhado e harmonioso ===== */

.product-card{
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 16px;
}

/* Topo */
.turma-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.turma-available{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(227,27,35,0.18), rgba(227,27,35,0.06));
  border:1px solid rgba(227,27,35,0.45);
  font-weight:950;
  letter-spacing:0.3px;
  text-transform: uppercase;
  font-size:12px;
}
.turma-available i{ color: var(--red); font-size:16px; }

/* Badge de modalidade (neutra, não “tudo vermelho”) */
.badge{
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  color: var(--text);
}
.badge .mini{ background: var(--red); }

.turma-divider{
  border-top: 2px dashed rgba(255,255,255,0.16);
  margin: 12px 0 14px;
}

/* Corpo (info + preço) */
.product-body{
  display:grid;
  grid-template-columns: 1fr 260px;
  gap: 14px;
  align-items:start;
}

/* Nome e meta */
.product-name{
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.2px;
  margin: 0 0 10px;
}

.product-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.meta-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(70, 90, 120, 0.14);
  border: 1px solid rgba(120, 150, 190, 0.20);
  color: var(--text);
  font-weight: 850;
  font-size: 12px;
}
.meta-pill i{ font-size: 14px; }
.meta-pill.vagas i{ color: #a7f3d0; }
.meta-pill.sexo  i{ color: #fde68a; }

/* Caixa do preço (destaque) */
.price-box{
  border: 2px dashed rgba(227,27,35,0.70);
  background:
    radial-gradient(400px 180px at 20% 20%, rgba(227,27,35,0.16), transparent 60%),
    rgba(227,27,35,0.07);
  border-radius: 18px;
  padding: 12px 14px;
  text-align: right;
}

.price-box .label{
  color: rgba(242,242,242,0.88);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.2px;
}
.price-box .value{
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.4px;
  margin-top: 6px;
  color: var(--white);
}
.price-box .value small{
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
  margin-left: 6px;
}
.price-box .note{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

/* Ações */
.product-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.product-actions .btn i{ margin-right: 10px; }

/* Nota final */
.product-note{
  margin-top: 10px;
  color: rgba(170,178,197,0.85);
  font-size: 12.5px;
  line-height: 1.5;
}

/* Mobile: tudo empilha, preço vira full width */
@media (max-width: 820px){
  .product-card{ padding: 14px; }
  .turma-top{ flex-direction: column; align-items:flex-start; }

  .product-body{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .price-box{
    width: 100%;
    text-align: left;
  }
  .product-actions{
    flex-direction: column;
  }
  .product-actions .btn{
    width:100%;
    justify-content:center;
    padding: 14px 16px;
    border-radius: 14px;
  }
}
.product-card{
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
}
.product-name{ color: var(--white); }
.product-note{ color: rgba(242,242,242,0.72) !important; }
/* ===== Marca d’água por modalidade ===== */
.product-card{
  position: relative;
  overflow: hidden;
}

.product-card::before{
  content:"";
  position:absolute;
  right: -20px;
  bottom: -30px;
  width: 240px;
  height: 240px;

  background-repeat:no-repeat;
  background-size: contain;
  background-position: right bottom;

  opacity: 0.10;              /* intensidade (ajuste 0.06–0.14) */
  filter: grayscale(100%) contrast(110%);
  pointer-events:none;
  z-index: 0;
}

/* Garantir que o conteúdo fique por cima */
.product-card > *{
  position: relative;
  z-index: 1;
}

/* Mobile: watermark menor pra não poluir */
@media (max-width: 820px){
  .product-card::before{
    width: 180px;
    height: 180px;
    right: -14px;
    bottom: -20px;
    opacity: 0.08;
  }
}
/* ===== Watermark por modalidade (cards) ===== */
.category-card{
  position: relative;
  overflow: hidden;
}

.category-card::before{
  content:"";
  position:absolute;
  right: -18px;
  bottom: -18px;
  width: 190px;
  height: 190px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: 0.18;                 /* bem suave */
  filter: grayscale(100%) contrast(120%);
  pointer-events:none;
}

/* Para mobile: watermark menor */
@media (max-width: 820px){
  .category-card::before{
    width: 300px;
    height: 150px;
    right: -14px;
    bottom: -14px;
    opacity: 0.5;
  }
}

/* Mapas das imagens */
.category-card.wm-cross::before{ background-image: url('/assets/wm/cross.avif'); }
.category-card.wm-jiu::before{ background-image: url('/assets/wm/jiu.jpg'); }
.category-card.wm-muay::before{ background-image: url('/assets/wm/muay.jpg'); }
.category-card.wm-funcional::before{ background-image: url('/assets/wm/funcional.jpg'); }
.category-card.wm-step::before{ background-image: url('/assets/wm/step.jpg'); }
.category-card.wm-danca::before{ background-image: url('/assets/wm/danca.jpg'); }
.category-card.wm-zumba::before{ background-image: url('/assets/wm/zumba.jpg'); }
.category-card.wm-ritmos::before{ background-image: url('/assets/wm/ritmos.avif'); }
.category-card.wm-urbanas::before{ background-image: url('/assets/wm/urbanas.jpg'); }
.category-card.wm-boxe::before{  background-image: url('/assets/wm/boxe.jpg');}
.category-card.wm-musc::before{  background-image: url('/assets/wm/musc.jpg');}

.category-card::before{
  width: 400px;
  height: 270px;
  right: -26px;
  bottom: -26px;
  opacity: 0.18;
}

/* ===== Planos: grid estilo loja ===== */
.plans-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 1100px){
  .plans-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px){
  .plans-grid{ grid-template-columns: 1fr; }
}

/* Card de plano mais “produto” */
.plan-card{
  border-radius: 22px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 16px 44px rgba(0,0,0,0.40);
  padding: 16px;
  display:flex;
  flex-direction:column;
  min-height: 280px;
}

.plan-card:hover{
  border-color: rgba(227,27,35,0.35);
  transform: translateY(-1px);
  transition: .12s ease;
}

.plan-title{
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.2px;
  margin: 10px 0 0;
  line-height: 1.25;
}

.plan-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.plan-price{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 2px dashed rgba(227,27,35,0.65);
  background: rgba(227,27,35,0.07);
}

.plan-price .label{
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}
.plan-price .value{
  margin-top: 6px;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.4px;
}
.plan-price .value small{
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
  margin-left: 6px;
}

.plan-actions{
  margin-top: auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.plan-actions .btn{
  width:100%;
  justify-content:center;
  padding: 14px 16px;
  border-radius: 14px;
}
/* ===== PLANOS: estilo “grandes sites” (cards brancos) ===== */

.plans-wrap{
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px;
}

/* topo */
.plans-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}
.plans-title{
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.2px;
}
.plans-sub{
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.45;
}

/* grid */
.plans-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1100px){
  .plans-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px){
  .plans-grid{ grid-template-columns: 1fr; }
}

/* card branco */
.plan-white{
  background: #ffffff;
  color: #0e0f12;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 16px 44px rgba(0,0,0,0.28);
  padding: 16px;
  display:flex;
  flex-direction:column;
  min-height: 260px;
}

.plan-white:hover{
  transform: translateY(-1px);
  transition: .12s ease;
}

/* label superior */
.plan-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}

.plan-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(227,27,35,0.10);
  color: #111;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2px;
}
.plan-pill i{ color: var(--red); }

/* nome */
.plan-name{
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.2px;
  line-height: 1.25;
  margin: 0 0 8px;
}

/* preço */
.plan-price{
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}
.plan-price .small{
  font-size: 12px;
  color: rgba(0,0,0,0.60);
  font-weight: 800;
}
.plan-price .value{
  margin-top: 6px;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.4px;
}
.plan-price .value span{
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  font-weight: 800;
  margin-left: 6px;
}

/* features */
.plan-features{
  margin: 12px 0 0;
  padding-left: 16px;
  color: rgba(0,0,0,0.68);
  line-height: 1.55;
  font-size: 13px;
}
.plan-features li{ margin: 6px 0; }

/* ações */
.plan-actions{
  margin-top: auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.plan-actions .btn,
.plan-actions .btn.secondary{
  width:100%;
  justify-content:center;
  padding: 14px 16px;
  border-radius: 14px;
}

/* botão secundário dentro do card branco: borda escura (fica “site grande”) */
.plan-white .btn.secondary{
  border-color: rgba(0,0,0,0.18);
  color:#0e0f12;
  background: transparent;
}
.plan-white .btn.secondary:hover{
  border-color: rgba(0,0,0,0.28);
}

/* ícones dentro do card branco */
.plan-white i{ color: var(--red); }
/* ===== PLANOS PRO (cards brancos premium) ===== */

.plan-white{
  background: #fff;
  color:#0e0f12;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
  padding: 18px;
  display:flex;
  flex-direction:column;
  min-height: 290px;
  position: relative;
  overflow:hidden;
}

.plan-white::before{
  content:"";
  position:absolute;
  right:-40px;
  top:-40px;
  width:160px;
  height:160px;
  background: radial-gradient(circle at 30% 30%, rgba(227,27,35,0.18), transparent 60%);
  pointer-events:none;
}

.plan-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}

.plan-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.plan-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(227,27,35,0.10);
  color: #111;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2px;
}
.plan-pill.secondary{
  background: rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.78);
}
.plan-pill i{
  color: var(--red);
  font-size: 14px;
}

.plan-name{
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.2px;
  line-height: 1.25;
  margin: 6px 0 10px;
  min-height: 42px; /* ajuda alinhar cards */
}

.plan-price{
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}

.plan-price .small{
  font-size: 12px;
  color: rgba(0,0,0,0.60);
  font-weight: 800;
  display:flex;
  align-items:center;
  gap:8px;
}
.plan-price .small i{ color: rgba(0,0,0,0.45); }

.plan-price .value{
  margin-top: 6px;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.5px;
}
.plan-price .value span{
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  font-weight: 800;
  margin-left: 6px;
}

.plan-features{
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
  color: rgba(0,0,0,0.72);
  line-height: 1.55;
  font-size: 13px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.plan-features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.plan-features li i{
  color: var(--red);
  font-size: 14px;
  margin-top: 2px;
}

/* Botões no card branco */
.plan-actions{
  margin-top: auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.plan-actions a{
  text-align:center;
}

/* Botão principal: vermelho sólido premium */
.plan-actions .btn{
  background: linear-gradient(135deg, var(--red), var(--red2));
  color:#fff;
}

/* Botão WhatsApp: verde (profissional) */
.btn.whatsapp{
  background: #22c55e;          /* verde */
  color:#0b0f12;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: none;
}
.btn.whatsapp:hover{
  filter: brightness(1.04);
}

/* Botão secundário “claro” dentro do card */
.plan-white .btn.secondary{
  border-color: rgba(0,0,0,0.18);
  color:#0e0f12;
  background: transparent;
}

/* Grid mais “respirado” */
.plans-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1100px){
  .plans-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px){
  .plans-grid{ grid-template-columns: 1fr; }
  .plan-actions .btn,
  .plan-actions .btn.secondary,
  .plan-actions .btn.whatsapp{
    width:100%;
    padding: 14px 16px;
    border-radius: 14px;
    justify-content:center;
  }
}
/* ===== Imagem do plano (card branco) ===== */
.plan-img{
  width: 100%;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 12px;
}

.plan-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* Mobile: um pouco menor */
@media (max-width: 820px){
  .plan-img{ height: 120px; }
}

/* ===== Plano: duração + parcelas bem evidentes ===== */
.plan-pill.duration{
  background: rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.82);
}

.plan-pill.duration i{ color: rgba(0,0,0,0.55); }

.plan-price{
  background: rgba(0,0,0,0.04);
}

.plan-lines{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.plan-line{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.65);
}

.plan-line .k{
  color: rgba(0,0,0,0.62);
  font-weight: 850;
  font-size: 12px;
}
.plan-line .v{
  font-weight: 950;
  color: #0e0f12;
  text-align:right;
}

/* destaca “Cartão” */
.plan-line.card{
  border-color: rgba(227,27,35,0.22);
  background: rgba(227,27,35,0.06);
}
/* ===== TURMAS (estilo igual planos: card branco + grid) ===== */

.turmas-wrap{
  max-width:1160px;
  margin:0 auto;
  padding:22px;
}

.turmas-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1100px){
  .turmas-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px){
  .turmas-grid{ grid-template-columns: 1fr; }
}

/* Card branco (produto) */
.turma-white{
  background:#fff;
  color:#0e0f12;
  border-radius: 20px;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
  padding: 18px;
  display:flex;
  flex-direction:column;
  min-height: 320px;
  position: relative;
  overflow:hidden;
}
.turma-white:hover{ transform: translateY(-1px); transition:.12s ease; }

/* Thumb (imagem da modalidade/treino) */
.turma-img{
  width:100%;
  height: 140px;
  border-radius: 16px;
  overflow:hidden;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 12px;
}
.turma-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
@media (max-width: 820px){ .turma-img{ height:120px; } }

/* topo badges */
.turma-topline{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 8px;
}
.turma-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(227,27,35,0.10);
  color:#111;
  font-weight: 900;
  font-size: 12px;
}
.turma-pill.secondary{
  background: rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.78);
}
.turma-pill i{ color: var(--red); }

/* nome */
.turma-name{
  font-size: 16px;
  font-weight: 950;
  letter-spacing:-0.2px;
  line-height:1.25;
  margin: 6px 0 8px;
  min-height: 42px;
}

/* info pills */
.turma-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top: 8px;
}
.turma-meta .pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 10px;
  border-radius:999px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.06);
  font-weight: 850;
  font-size: 12px;
  color: rgba(0,0,0,0.75);
}
.turma-meta .pill i{ color: rgba(0,0,0,0.55); }

/* preço (bem claro, sem tracejado) */
.turma-price{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}
.turma-price .small{
  font-size: 12px;
  color: rgba(0,0,0,0.60);
  font-weight: 850;
  display:flex;
  align-items:center;
  gap:8px;
}
.turma-price .value{
  margin-top: 6px;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.4px;
}
.turma-price .value span{
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  font-weight: 800;
  margin-left: 6px;
}

/* ações */
.turma-actions{
  margin-top: auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.turma-actions .btn,
.turma-actions .btn.secondary{
  width:100%;
  justify-content:center;
  padding: 14px 16px;
  border-radius: 14px;
}

/* secundário no card branco */
.turma-white .btn.secondary{
  border-color: rgba(0,0,0,0.18);
  color:#0e0f12;
  background: transparent;
}

/* botão whatsapp verde opcional */
.btn.whatsapp{
  background: #22c55e;
  color:#0b0f12;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: none;
}
.btn.whatsapp:hover{ filter: brightness(1.04); }


/* ===== Select do tema (corrige contraste em todo lugar) ===== */
.select{
  background: rgba(0,0,0,0.35) !important;
  color: var(--text) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 14px !important;
  padding: 12px 14px !important;
  min-width: 260px;
  outline: none;
}

/* foco */
.select:focus{
  border-color: rgba(227,27,35,0.55) !important;
  box-shadow: 0 0 0 6px rgba(227,27,35,0.10) !important;
}

/* opções do dropdown (quando abre) — muitos browsers usam fundo padrão */
.select option{
  background: #0f1116 !important;
  color: #f2f2f2 !important;
}

/* se tiver placeholder em option */
.select option[disabled]{
  color: #aab2c5 !important;
}

/* Mobile: ocupa toda largura */
@media (max-width: 820px){
  .select{
    width:100% !important;
    min-width: 0 !important;
  }
}
/* ===== MODALIDADES: imagem no topo (igual planos/turmas) ===== */
.category-img{
  width: 100%;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 12px;
}
.category-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 820px){
  .category-img{ height: 120px; }
}

/* ===== MODALIDADES: watermark (corrige duplicação + deixa suave) ===== */
.category-card::before{
  content:"";
  position:absolute;
  right: -26px;
  bottom: -26px;
  width: 320px;
  height: 220px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: 0.14;
  filter: grayscale(100%) contrast(120%);
  pointer-events:none;
}

@media (max-width: 820px){
  .category-card::before{
    width: 260px;
    height: 170px;
    right: -18px;
    bottom: -18px;
    opacity: 0.10;
  }
}

/* garante conteúdo acima do watermark */
.category-card > *{
  position: relative;
  z-index: 1;
}

/* ===== MODALIDADES: imagem no topo (sem watermark) ===== */
.category-img{
  width: 100%;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 12px;
}
.category-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 820px){
  .category-img{ height: 120px; }
}
/* ===== MODALIDADES: imagem à esquerda com fade + texto legível ===== */

.category-row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  align-items: stretch;
}

/* imagem */
.category-media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  min-height: 140px;
}

.category-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* fade da imagem “invadindo” pra direita */
.category-media::after{
  content:"";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 55%;
  background: linear-gradient(90deg, rgba(0,0,0,0.00), rgba(21,23,28,0.85));
}

/* conteúdo: coloca um “painel” leve pra garantir legibilidade */
.category-content{
  position: relative;
  border-radius: 18px;
  padding: 6px 2px 6px 2px;
}

/* camada de proteção do texto (não pesa, mas garante contraste) */
.category-content::before{
  content:"";
  position:absolute;
  inset: -6px -6px -6px -6px;
  border-radius: 18px;
  background: linear-gradient(90deg,
    rgba(21,23,28,0.55),
    rgba(21,23,28,0.22)
  );
  pointer-events:none;
  z-index: 0;
}

.category-content > *{
  position: relative;
  z-index: 1;
}

/* Mobile: empilha e volta a imagem no topo */
@media (max-width: 820px){
  .category-row{
    grid-template-columns: 1fr;
  }
  .category-media{
    min-height: 120px;
  }
  .category-media::after{
    width: 60%;
    background: linear-gradient(180deg, rgba(0,0,0,0.00), rgba(21,23,28,0.75));
  }
}
/* ===== MODALIDADES (cards brancos igual Planos/Turmas) ===== */

/* remove qualquer watermark/overlay antigo */
.category-card::before{ content:none !important; }
.category-media::after{ content:none !important; }  /* remove fade escuro antigo */
.category-content::before{ content:none !important; } /* remove painel escuro */

/* card branco */
.category-card{
  background:#fff !important;
  color:#0e0f12 !important;
  border:1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,0.28) !important;
}

/* arrow no card branco */
.category-arrow{
  border:1px solid rgba(0,0,0,0.14) !important;
  background: rgba(0,0,0,0.04) !important;
}
.category-arrow i{ color:#0e0f12 !important; }

/* título e texto */
.category-name{ color:#0e0f12 !important; }
.category-note{ color: rgba(0,0,0,0.62) !important; }

/* badge/pills no estilo Planos */
.category-card .badge{
  background: rgba(227,27,35,0.10) !important;
  border: 1px solid rgba(227,27,35,0.16) !important;
  color:#111 !important;
  font-weight: 900;
}
.category-card .badge .mini{ background: var(--red) !important; }

.category-card .meta-pill{
  background: rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  color: rgba(0,0,0,0.78) !important;
}
.category-card .meta-pill i{ color: var(--red) !important; }

/* imagem à esquerda no padrão “thumb” do card branco */
.category-row{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  align-items: stretch;
}

.category-media{
  border-radius: 16px;
  overflow:hidden;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  min-height: 140px;
}
.category-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* mobile empilha */
@media (max-width: 820px){
  .category-row{ grid-template-columns: 1fr; }
  .category-media{ min-height: 120px; }
}
/* =========================================================
   MODALIDADES — CARD BRANCO + TITULOS + BOTOES (PADRÃO PLANOS)
   Cole no FINAL do CSS
========================================================= */

/* remove qualquer watermark/fade antigo */
.category-card::before{ content:none !important; }
.category-media::after{ content:none !important; }
.category-content::before{ content:none !important; }

/* card branco premium */
.category-card{
  background:#fff !important;
  color:#0e0f12 !important;
  border-radius: 20px !important;
  border:1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,0.28) !important;
  padding: 18px !important;
  display:block;
}
.category-card:hover{
  transform: translateY(-1px);
  transition: .12s ease;
}

/* layout com imagem à esquerda */
.category-row{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  align-items: stretch;
}

/* imagem */
.category-media{
  border-radius: 16px;
  overflow:hidden;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  min-height: 150px;
}
.category-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* conteúdo */
.category-content{
  display:flex;
  flex-direction:column;
  min-height: 150px;
}

/* topo com chips */
.category-top{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 10px;
}

.category-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(227,27,35,0.10);
  color:#111;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2px;
}
.category-pill i{ color: var(--red); }

.category-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,0.06);
  border:1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.78);
  font-weight: 900;
  font-size: 12px;
}
.category-chip i{ color: rgba(0,0,0,0.45); }

/* título (mais forte e premium) */
.category-title{
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin: 2px 0 10px;
}

/* pills (meta) no padrão card branco */
.category-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 4px;
}
.category-card .meta-pill{
  background: rgba(0,0,0,0.05) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  color: rgba(0,0,0,0.78) !important;
  font-weight: 850 !important;
}
.category-card .meta-pill i{
  color: var(--red) !important;
}

/* descrição */
.category-note{
  margin-top: 10px;
  color: rgba(0,0,0,0.62) !important;
  font-size: 13px;
  line-height: 1.5;
}

/* ações (botões bonitos) */
.category-actions{
  margin-top: auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding-top: 12px;
}

.category-btn{
  min-height: 44px;
  border-radius: 14px !important;
  padding: 12px 14px !important;
  font-size: 13px;
  font-weight: 950;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.category-actions .btn{
  box-shadow: 0 10px 30px rgba(227,27,35,0.16);
}

.category-actions .btn.secondary{
  background: transparent !important;
  border:1px solid rgba(0,0,0,0.18) !important;
  color:#0e0f12 !important;
  box-shadow:none !important;
}
.category-actions .btn.secondary:hover{
  border-color: rgba(0,0,0,0.28) !important;
}

/* ícones alinhados */
.category-actions .btn i{
  margin-right: 10px;
  font-size: 16px;
  line-height: 0;
}

/* mobile: empilha */
@media (max-width: 820px){
  .category-row{ grid-template-columns: 1fr; }
  .category-media{ min-height: 120px; }
  .category-actions{
    flex-direction: column;
  }
  .category-actions .btn{
    width:100%;
  }
}
/* ===== MODALIDADES: chips/pills especiais ===== */

/* Disponível (verde premium, não neon) */
.category-chip.available{
  background: linear-gradient(135deg, #0f7a3a, #0b5f2c) !important; /* verde escuro */
  border: 1px solid rgba(0,0,0,0.12) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(15,122,58,0.18);
}
.category-chip.available i{
  color: #ffffff !important;
}


/* Pills vermelhas (letra branca) */
.meta-pill.highlight-red{
  background: linear-gradient(135deg, var(--red), var(--red2)) !important;
  border: 1px solid rgba(0,0,0,0.10) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(227,27,35,0.16);
}
.meta-pill.highlight-red i{
  color: #ffffff !important;
}


/* ===== Modalidades: tipografia e botões (premium) ===== */

/* pills (todas) com texto mais “limpo” */
.category-card .meta-pill{
  font-size: 12.5px !important;
  font-weight: 900 !important;
  letter-spacing: 0.15px !important;
  line-height: 1 !important;
  padding: 10px 12px !important;
  border-radius: 999px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap: 8px !important;
  white-space: nowrap;
}

/* ícone mais alinhado (não “torto”) */
.category-card .meta-pill i{
  font-size: 15px !important;
  line-height: 0 !important;
  margin-top: -1px;
}

/* pills vermelhas (musculação) com texto perfeito */
.meta-pill.highlight-red{
  background: linear-gradient(135deg, var(--red), var(--red2)) !important;
  border: 1px solid rgba(0,0,0,0.10) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}
.meta-pill.highlight-red i{ color:#fff !important; }

/* “Disponível” verde premium */
.category-chip.available{
  background: linear-gradient(135deg, #0f7a3a, #0b5f2c) !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 12.5px !important;
  font-weight: 950 !important;
  letter-spacing: 0.15px !important;
  line-height: 1 !important;
  padding: 10px 12px !important;
  border-radius: 999px !important;
}
.category-chip.available i{ color:#fff !important; font-size:15px !important; }

/* botão único do card */
.category-actions{
  margin-top: auto;
  padding-top: 12px;
  display:flex;
}
.category-btn{
  width: 100%;
  justify-content: center;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  letter-spacing: 0.2px !important;
}
.category-btn i{
  font-size: 18px !important;
  margin-right: 10px !important;
  line-height: 0 !important;
}

/* deixa o título do card com “cara de planos” */
.category-title{
  font-size: 18px !important;
  font-weight: 950 !important;
  letter-spacing: -0.3px !important;
  line-height: 1.18 !important;
}
.category-note{
  font-size: 13px !important;
  line-height: 1.5 !important;
}

/* mobile: pills quebram bonito sem ficar esmagado */
@media (max-width: 820px){
  .category-card .meta-pill{
    white-space: normal;
  }
}
/* =========================================================
   MODALIDADES: CTA premium (centralizado, não “barra gigante”)
========================================================= */

.category-actions{
  margin-top: 14px;
  padding-top: 6px;
  display:flex;
  justify-content:center;   /* centraliza */
}

.category-actions .category-btn{
  width: auto !important;               /* tira full width */
  min-width: 220px;                     /* tamanho mínimo bonito */
  max-width: 320px;                     /* limita pra não virar barra */
  padding: 12px 18px !important;
  border-radius: 999px !important;      /* pill premium */
  font-size: 14px !important;
  font-weight: 950 !important;
  letter-spacing: 0.2px !important;
  box-shadow: 0 12px 30px rgba(227,27,35,0.16) !important;
}

/* Ícone do CTA alinhado */
.category-actions .category-btn i{
  font-size: 18px !important;
  margin-right: 10px !important;
  line-height: 0 !important;
}

/* Hover mais sutil (sem “esticar”) */
.category-card:hover .category-btn{
  filter: brightness(1.03);
}

/* Mobile: CTA ocupa mais, mas ainda “botão”, não barra */
@media (max-width: 820px){
  .category-actions .category-btn{
    width: 100% !important;
    max-width: 520px;
  }
}
/* =========================================================
   MODALIDADES: pills mais premium (todas)
========================================================= */

.category-card .meta-pill{
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12px !important;
  line-height: 1 !important;
  padding: 9px 11px !important;
  border-radius: 999px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap: 8px !important;
  white-space: nowrap;
}

/* padrão neutro melhor (turmas/modalidades comuns) */
.category-card .meta-pill:not(.highlight-red){
  background: rgba(0,0,0,0.05) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  color: rgba(0,0,0,0.78) !important;
}

/* vermelho da musculação: menos “gordinho” e mais elegante */
.meta-pill.highlight-red{
  background: linear-gradient(135deg, var(--red), var(--red2)) !important;
  border: 1px solid rgba(0,0,0,0.10) !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* ícones alinhados */
.category-card .meta-pill i{
  font-size: 14px !important;
  line-height: 0 !important;
  margin-top: -1px;
}

/* no vermelho, ícone branco */
.meta-pill.highlight-red i{ color:#fff !important; }

/* no neutro, ícone vermelho (assinatura) */
.category-card .meta-pill:not(.highlight-red) i{ color: var(--red) !important; }

/* Mobile: permite quebrar sem deformar */
@media (max-width: 820px){
  .category-card .meta-pill{ white-space: normal; }
}
/* =========================================================
   MODALIDADES: thumb sempre com cara de imagem (mesmo fallback)
========================================================= */

.category-media{
  background: radial-gradient(280px 160px at 30% 30%, rgba(0,0,0,0.08), rgba(0,0,0,0.03)) !important;
}

.category-media img{
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}
/* =========================================================
   MODALIDADES — BRANCO PREMIUM (degradê) + VERMELHO MAIS PRESENTE
========================================================= */

/* Card branco menos “chapado”: branco -> cinza muito suave */
.category-card{
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,0.26) !important;
  position: relative;
  overflow: hidden;
}

/* brilho sutil (só branco) pra dar “premium” */
.category-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 220px at 18% 22%, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(520px 260px at 85% 85%, rgba(255,255,255,0.60), transparent 60%);
  pointer-events:none;
  opacity: 0.65;
}

/* garante conteúdo acima do brilho */
.category-card > *{
  position: relative;
  z-index: 1;
}

/* ---- Vermelho mais presente no topo e elementos ---- */

/* chip PLANO/MODALIDADE com vermelho mais “marca” */
.category-pill{
  background: rgba(227,27,35,0.12) !important;
  border: 1px solid rgba(227,27,35,0.16) !important;
}
.category-pill i{ color: var(--red) !important; }

/* pills neutras (turmas/vagas): volta ícone vermelho e borda mais definida */
.category-card .meta-pill:not(.highlight-red){
  background: rgba(0,0,0,0.04) !important;
  border: 1px solid rgba(0,0,0,0.10) !important;
  color: rgba(0,0,0,0.78) !important;
}
.category-card .meta-pill:not(.highlight-red) i{
  color: var(--red) !important;
}

/* pills vermelhas (musculação): mantém forte e clean */
.meta-pill.highlight-red{
  background: linear-gradient(135deg, var(--red), var(--red2)) !important;
  border: 1px solid rgba(0,0,0,0.10) !important;
  color: #fff !important;
}
.meta-pill.highlight-red i{ color:#fff !important; }

/* CTA centralizado: mais “marca” (vermelho vivo) + sombra suave */
.category-actions .category-btn{
  background: linear-gradient(135deg, var(--red), var(--red2)) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(227,27,35,0.18) !important;
}
.category-actions .category-btn i{ color:#fff !important; }

/* seta do card: borda mais marcada e ícone escuro */
.category-arrow{
  border: 1px solid rgba(0,0,0,0.16) !important;
  background: rgba(0,0,0,0.04) !important;
}
.category-arrow i{ color:#0e0f12 !important; }

/* thumb: combina com o branco->cinza */
.category-media{
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.02)) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
}
.category-actions .category-btn{
  min-height: 46px !important;
  padding: 13px 20px !important;
  letter-spacing: 0.25px !important;
}
/* ===== Pills escuras (modalidades comuns) — fundo + letra branca ===== */
.meta-pill.highlight-dark{
  background: linear-gradient(180deg, #2b2f38, #1e2128) !important;  /* grafite premium */
  border: 1px solid rgba(0,0,0,0.18) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.meta-pill.highlight-dark i{
  color: #ffffff !important;
}
.meta-pill.highlight-dark{
  box-shadow: 0 10px 22px rgba(0,0,0,0.12) !important;
}
/* =========================================================
   CHECKOUT — LIGHT PREMIUM (só nessa página)
   Cole no FINAL do CSS
========================================================= */

/* Fundo do checkout mais claro (sem mudar o site inteiro) */
.checkout-wrap{
  background: transparent;
}
.checkout-wrap::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(900px 520px at 85% 90%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #0e0f12 0%, #0e0f12 35%, #0b0c0f 100%);
  pointer-events:none;
}

/* Cards do checkout em branco (igual Planos) */
.checkout-wrap .card{
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
  color: #0e0f12;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
  padding: 18px;
}

/* títulos e textos */
.checkout-wrap .catalog-title{
  color: #fff; /* título do topo mantém contraste no fundo escuro */
}
.checkout-wrap .label{
  color: rgba(0,0,0,0.82);
  font-weight: 950;
  font-size: 13px;
  margin: 12px 0 7px;
}
.checkout-wrap .muted-small{
  color: rgba(0,0,0,0.60);
}

/* inputs grandes e claros (melhor mobile) */
.checkout-wrap .input,
.checkout-wrap .select{
  width: 100%;
  background: rgba(0,0,0,0.04) !important;
  border: 1px solid rgba(0,0,0,0.10) !important;
  color: #0e0f12 !important;
  border-radius: 14px !important;

  padding: 14px 14px !important;
  font-size: 16px !important;  /* evita zoom no iPhone */
  font-weight: 800;
  outline: none;
}

/* placeholder */
.checkout-wrap .input::placeholder{
  color: rgba(0,0,0,0.45);
  font-weight: 700;
}

/* foco premium */
.checkout-wrap .input:focus,
.checkout-wrap .select:focus{
  border-color: rgba(227,27,35,0.55) !important;
  box-shadow: 0 0 0 6px rgba(227,27,35,0.12) !important;
  background: rgba(0,0,0,0.03) !important;
}

/* options do select */
.checkout-wrap .select option{
  background: #ffffff !important;
  color: #0e0f12 !important;
}

/* grid e espaçamento melhores */
.checkout-layout{
  gap: 16px;
}
.form-grid{
  gap: 12px;
}

/* resumo do lado direito mais “cartão” */
.checkout-wrap .sum-row{
  border-top: 1px solid rgba(0,0,0,0.10);
}
.checkout-wrap .sum-row.total b{
  color: #0e0f12;
}

/* badge e meta-pill no card branco (mantém vermelho de marca) */
.checkout-wrap .badge{
  background: rgba(227,27,35,0.10);
  border: 1px solid rgba(227,27,35,0.16);
  color: #111;
  font-weight: 950;
}
.checkout-wrap .badge .mini{ background: var(--red); }

.checkout-wrap .meta-pill{
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.78);
  font-weight: 900;
}
.checkout-wrap .meta-pill i{ color: var(--red); }

/* botões do checkout mais premium e “tocáveis” */
.checkout-wrap .checkout-actions .btn{
  min-height: 48px;
  font-size: 15px;
  border-radius: 14px;
  padding: 14px 16px;
}
.checkout-wrap .checkout-actions .btn.secondary{
  border: 1px solid rgba(0,0,0,0.18);
  color: #0e0f12;
  background: transparent;
}

/* sticky no desktop ok */
.checkout-wrap .sticky{ top: 92px; }

/* ===== Mobile: formulário fica MUITO melhor de digitar ===== */
@media (max-width: 980px){
  .checkout-wrap{ padding: 16px; }
  .checkout-wrap .card{ padding: 16px; }
}

@media (max-width: 820px){
  .checkout-wrap{ padding: 14px; }

  .checkout-layout{
    grid-template-columns: 1fr;
  }

  /* inputs ainda mais confortáveis */
  .checkout-wrap .input,
  .checkout-wrap .select{
    padding: 15px 14px !important;
    border-radius: 16px !important;
  }

  /* botões full width e grandes */
  .checkout-wrap .checkout-actions{
    gap: 10px;
  }
  .checkout-wrap .checkout-actions .btn{
    width: 100%;
    justify-content: center;
    min-height: 52px;
    border-radius: 16px;
  }

  /* remove sticky no mobile */
  .checkout-wrap .sticky{ position: static; }
}
/* Botão WhatsApp padrão verde */
.btn.whatsapp,
.footer-cta .btn.whatsapp {
  background: #25D366;            /* verde oficial WhatsApp */
  color: #0b0f12;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 28px rgba(37,211,102,0.28);
}

.btn.whatsapp:hover,
.footer-cta .btn.whatsapp:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
/* ===== Personalizar: totalizador no topo (desktop) ===== */
.mini-total{
  min-width: 230px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}
.mini-total-label{
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 850;
}
.mini-total-value{
  margin-top: 4px;
  font-size: 16px;
  font-weight: 950;
  color: var(--white);
}

/* ===== Mobile: barra fixa com total + CTA ===== */
.mobile-bar{
  display:none;
}

@media (max-width: 820px){
  .mobile-bar{
    display:flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    padding: 12px;
    gap: 10px;
    align-items:center;
    justify-content:space-between;

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(15,17,22,0.86);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  }

  .mobile-bar-left{
    display:flex;
    flex-direction:column;
    gap:3px;
    min-width: 0;
  }

  .mobile-bar-label{
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 850;
    white-space: nowrap;
  }

  .mobile-bar-value{
    font-size: 16px;
    font-weight: 950;
    color: var(--white);
    white-space: nowrap;
  }

  .mobile-bar-btn{
    padding: 14px 14px;
    border-radius: 16px;
    min-width: 120px;
    justify-content:center;
  }

  /* dá espaço no final da página pra barra não cobrir conteúdo */
  .checkout-wrap{
    padding-bottom: 92px;
  }
}
/* ===== PERSONALIZAR: remove scroll horizontal só nessa página ===== */
.personalizar-page{
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;  /* trava a lateral */
}

@media (max-width: 820px){
  .personalizar-page{
    overflow-x: hidden;
  }

  /* o culpado mais comum é min-width em select/input */
  .personalizar-page .select,
  .personalizar-page .input{
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  /* grid/colunas podem estourar sem min-width:0 */
  .personalizar-page .checkout-layout > *{
    min-width: 0 !important;
  }

  /* chips/pills às vezes estouram por texto longo */
  .personalizar-page .meta-pill{
    max-width: 100% !important;
    white-space: normal !important;
  }

  /* se existir barra fixa no mobile, garante que não estoura a tela */
  .personalizar-page .mobile-bar{
    left: 12px !important;
    right: 12px !important;
    max-width: calc(100vw - 24px) !important;
  }
}
/* ================================
   FILTROS DE PLANOS (BOTÕES)
   Cole no FINAL do CSS
================================ */

/* container dos filtros */
.plans-filters{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

/* botão do filtro: versão compacta e alinhada */
.plans-filters .btn{
  padding: 10px 14px;
  border-radius: 999px;            /* pill premium */
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.2px;
  min-height: 40px;                /* mesma altura */
  line-height: 1;
  box-shadow: none;                /* evita alturas diferentes por sombra */
  transform: none;                 /* remove “pulo” no hover */
}

/* hover sem mexer no layout */
.plans-filters .btn:hover{
  filter: brightness(1.05);
  transform: none;
}

/* estado ativo */
.plans-filters .btn.active{
  box-shadow: 0 12px 28px rgba(227,27,35,0.20);
}

/* quando não está ativo (secundário) fica bem “clean” */
.plans-filters .btn:not(.active){
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text);
}

/* garante que o ativo mantenha o gradient vermelho */
.plans-filters .btn.active{
  background: linear-gradient(135deg, var(--red), var(--red2));
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}

/* Mobile: organiza bonito e alinhado */
@media (max-width: 820px){
  .plans-filters{
    width: 100%;
    gap: 10px;
  }
  .plans-filters .btn{
    flex: 1 1 calc(50% - 10px); /* 2 colunas */
    justify-content:center;
  }
}
/* =========================================
   HEADER: botões mais alinhados e premium
   Cole no FINAL do CSS
========================================= */

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.header-actions .btn{
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.header-actions .btn i{
  margin-right: 10px;
  line-height: 0;
}

/* secondary do header: menos “pesado” */
.header-actions .btn.secondary{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none;
}

/* CTA principal: mantém do jeito bom, só padroniza */
.header-actions .btn.header-cta{
  box-shadow: 0 12px 30px rgba(227,27,35,0.18);
}

/* menu icon button: fica “redondo premium” */
.menu-btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
}

/* Desktop: nav já existe */
@media (max-width: 900px){
  .nav{ display:none; }
  /* no mobile, mostrar só o CTA + menu (e esconder Promoções no topo se quiser) */
  .header-actions .btn.secondary{ display:none; }
}

/* =========================================
   DRAWER: menu mobile premium
========================================= */

.drawer-panel{
  border-left: 1px solid rgba(255,255,255,0.10);
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  background:
    radial-gradient(600px 220px at 20% 10%, rgba(227,27,35,0.12), transparent 60%),
    #0f1116;
}

.drawer-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 12px;
}

.drawer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.drawer-links a{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  font-weight: 900;
}

.drawer-links a i{
  color: var(--red);
  font-size: 16px;
}

.drawer-links a:hover{
  border-color: rgba(255,255,255,0.18);
}

.drawer-cta{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.drawer-cta .btn{
  width:100%;
  justify-content:center;
  border-radius: 16px;
  padding: 14px 16px;
}
/* =========================================
   CATALOG: UM CARD GRANDE COM TODAS AS TURMAS
========================================= */

.turmas-onecard-page{
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px;
}

/* card grande */
.turma-big-card{
  width: 100%;
  padding: 22px !important;
  border-radius: 22px !important;
}

/* imagem do card */
.turmas-onecard-page .turma-img{
  height: 190px !important;
}

/* seção (quando estiver em "todas as modalidades") */
.turma-section-title{
  margin-top: 16px;
  margin-bottom: 10px;
  font-weight: 950;
  letter-spacing: -0.2px;
  color: #0e0f12;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}

/* lista */
.turma-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* linha: nome completo + botões */
.turma-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;

  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}

/* nome SEM quebrar linha — mostra completo */
.turma-row-title{
  font-weight: 950;
  color: #0e0f12;
  letter-spacing: -0.2px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
}

/* ações */
.turma-row-actions{
  display:flex;
  gap: 10px;
  flex: 0 0 auto;
  white-space: nowrap;
}

/* botões compactos */
.btn.mini{
  padding: 10px 12px;
  border-radius: 14px;
  min-height: 40px;
  font-size: 13px;
  font-weight: 950;
}
.btn.whatsapp.mini{
  width: 42px;
  padding: 0;
  justify-content:center;
}

/* Desktop: card mais “page-width” */
@media (min-width: 1100px){
  .turmas-onecard-page{
    max-width: 1400px;
  }
}

/* Mobile: fica realmente bom e usável */
@media (max-width: 820px){
  .turmas-onecard-page{
    max-width: 100%;
    padding: 14px;
  }

  .turmas-onecard-page .turma-img{
    height: 130px !important;
  }

  /* no mobile o nome não deve ficar cortado demais: pode quebrar */
  .turma-row{
    flex-direction: column;
    align-items: stretch;
  }

  .turma-row-title{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .turma-row-actions .btn.mini{
    width: 100%;
    justify-content:center;
  }

  .btn.whatsapp.mini{
    width: 100%;
    padding: 12px 12px;
  }
}

/* ===== Cole no FINAL do seu style.css (melhorias de evidência) ===== */

.turma-row-left{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
  flex: 1 1 auto;
}

.turma-row-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

/* preço mais destacado */
.pill-price{
  background: linear-gradient(135deg, rgba(227,27,35,0.14), rgba(227,27,35,0.06)) !important;
  border: 1px solid rgba(227,27,35,0.30) !important;
  color: rgba(14,15,18,0.92) !important;
  font-weight: 950 !important;
}
.pill-price i{ color: var(--red) !important; }
.pill-price small{
  font-size: 11px;
  font-weight: 900;
  opacity: .75;
  margin-left: 4px;
}

/* poucas vagas */
.pill-low{
  background: linear-gradient(135deg, rgba(227,27,35,0.22), rgba(227,27,35,0.10)) !important;
  border: 1px solid rgba(227,27,35,0.48) !important;
  font-weight: 950 !important;
}

/* ocupação discreta */
.pill-ghost{
  background: rgba(0,0,0,0.04) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  opacity: .85;
}
.pill-ghost i{ opacity: .75; }


/* ===== Cole no FINAL do seu style.css (melhorias visuais finais) ===== */

/* layout badges + título */
.turma-row-left{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
  flex: 1 1 auto;
}
.turma-row-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

/* preço mais premium */
.pill-price{
  background: linear-gradient(135deg, rgba(227,27,35,0.16), rgba(227,27,35,0.06)) !important;
  border: 1px solid rgba(227,27,35,0.34) !important;
  font-weight: 950 !important;
  box-shadow: 0 10px 24px rgba(227,27,35,0.14);
}
.pill-price i{ color: var(--red) !important; }
.pill-price small{
  font-size: 11px;
  font-weight: 900;
  opacity: .75;
  margin-left: 4px;
}

/* vagas: normal */
.pill-vagas{
  background: rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.10) !important;
  font-weight: 950 !important;
}

/* poucas vagas: destaque + pulse sutil */
.pill-vagas.low{
  background: linear-gradient(135deg, rgba(227,27,35,0.22), rgba(227,27,35,0.10)) !important;
  border: 1px solid rgba(227,27,35,0.52) !important;
  box-shadow: 0 10px 22px rgba(227,27,35,0.16);
  animation: vagasPulse 1.6s ease-in-out infinite;
}
@keyframes vagasPulse{
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}

/* esgotado */
.pill-vagas.soldout{
  background: rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(0,0,0,0.18) !important;
  color: rgba(14,15,18,0.70) !important;
}

/* linha esgotada fica mais “cinza” */
.row-soldout{
  opacity: 0.88;
}

/* botão desabilitado */
.btn.disabled{
  background: rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(0,0,0,0.14) !important;
  color: rgba(0,0,0,0.62) !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  pointer-events: none;
}


/* ===== TURMAS: imagem do card SEM CORTAR (desktop + mobile) ===== */
.turmas-onecard-page .turma-img{
  height: 220px !important;              /* pode ajustar */
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,0.04);          /* fundo suave */
  border: 1px solid rgba(0,0,0,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
}

.turmas-onecard-page .turma-img img{
  width: 100%;
  height: 100%;
  object-fit: contain !important;        /* ✅ não corta */
  object-position: center;
  display:block;
}

/* Mobile */
@media (max-width: 820px){
  .turmas-onecard-page .turma-img{
    height: 160px !important;
  }
}
.turmas-onecard-page .turma-img{
  height: 240px !important;
}

.turmas-onecard-page .turma-img img{
  object-fit: cover !important;
  object-position: center 25%; /* sobe um pouco o enquadramento */
}
@media (max-width: 820px){
  .turmas-onecard-page .turma-img{ height: 170px !important; }
  .turmas-onecard-page .turma-img img{ object-position: center 30%; }
}

/* =============================================================
   MODALIDADES — REDESIGN v2 (hero + grid limpo)
   ============================================================= */

/* ── Hero ──────────────────────────────────────────────────── */
.mod-hero {
  position: relative;
  padding: 64px 22px 52px;
  background:
    radial-gradient(900px 520px at 8% 0%,  rgba(227,27,35,.22), transparent 60%),
    radial-gradient(700px 400px at 92% 100%, rgba(227,27,35,.10), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.mod-hero__inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  z-index: 1;
}

.mod-hero__title {
  margin: 14px 0 12px;
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: -1px;
  font-weight: 950;
}

.mod-hero__red { color: var(--red); }

.mod-hero__sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 52ch;
  margin: 0 0 28px;
}

/* Stats */
.mod-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mod-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mod-stat strong {
  font-size: 17px;
  font-weight: 950;
  color: var(--white);
  letter-spacing: -.3px;
}

.mod-stat span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.mod-stat-div {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,.14);
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .mod-hero          { padding: 40px 16px 36px; }
  .mod-hero__title   { font-size: 36px; letter-spacing: -.5px; }
  .mod-hero__sub     { font-size: 14px; max-width: 100%; }
  .mod-stats         { gap: 14px; }
  .mod-stat strong   { font-size: 15px; }
  .mod-stat-div      { height: 24px; }
}

/* ── Grid ──────────────────────────────────────────────────── */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 8px;
}

@media (max-width: 1100px) { .mod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:  580px) { .mod-grid { grid-template-columns: 1fr; } }

/* ── Card ──────────────────────────────────────────────────── */
.mod-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
  color: #0e0f12;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 52px rgba(0,0,0,.24);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}

.mod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 68px rgba(0,0,0,.30);
}

/* Imagem */
.mod-card__img {
  width: 100%;
  height: 185px;
  overflow: hidden;
  background: rgba(0,0,0,.04);
  flex-shrink: 0;
}

.mod-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}

.mod-card:hover .mod-card__img img { transform: scale(1.05); }

/* Body */
.mod-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
  gap: 0;
}

.mod-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.mod-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(227,27,35,.10);
  border: 1px solid rgba(227,27,35,.16);
  color: #111;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2px;
}
.mod-card__pill i { color: var(--red); font-size: 12px; line-height: 0; }

.mod-card__avail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f7a3a, #0b5f2c);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}
.mod-card__avail i { color: #fff; font-size: 12px; line-height: 0; }

.mod-card__name {
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.2px;
  line-height: 1.2;
  color: #0e0f12;
  margin-bottom: 10px;
}

.mod-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.mod-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.08);
  color: rgba(0,0,0,.75);
  font-size: 11.5px;
  font-weight: 900;
  white-space: nowrap;
}
.mod-card__tag i { color: var(--red); font-size: 13px; line-height: 0; }

.mod-card__tag--red {
  background: linear-gradient(135deg, var(--red), var(--red2)) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.mod-card__tag--red i { color: #fff !important; }

.mod-card__note {
  font-size: 12.5px;
  color: rgba(0,0,0,.58);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* CTA */
.mod-card__actions { margin-top: auto; }

.mod-card__cta {
  width: 100%;
  justify-content: center;
  border-radius: 14px !important;
  padding: 13px 16px !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  letter-spacing: .2px !important;
  box-shadow: 0 10px 28px rgba(227,27,35,.18) !important;
}
.mod-card__cta i { font-size: 16px !important; margin-right: 10px !important; line-height: 0 !important; }

@media (max-width: 820px) {
  .mod-card__img  { height: 150px; }
  .mod-card__name { font-size: 16px; }
  .mod-card__body { padding: 14px; }
}

/* =============================================================
   HEADER PREMIUM v3 — ATHLETIC DARK EDITION
   Barlow Condensed nav · atmospheric depth · CTA shine
   ============================================================= */

/* ── Fundo atmosférico ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6,7,10,0.86);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow:
    inset 160px 0 100px -60px rgba(227,27,35,0.07),
    0 1px 0 rgba(255,255,255,0.03);
  transition: background .3s, box-shadow .3s;
}

/* grid 1×1 sutilíssimo no fundo */
.hdr-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.15) 40%,
    transparent 80%
  );
  -webkit-mask-image: linear-gradient(90deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.15) 40%,
    transparent 80%
  );
}

.site-header.scrolled {
  background: rgba(6,7,10,0.97);
  box-shadow:
    inset 160px 0 100px -60px rgba(227,27,35,0.10),
    0 12px 48px rgba(0,0,0,0.55),
    0 1px 0 rgba(255,255,255,0.05);
}

/* ── Linha de acento na base do header ──────────────────── */
.hdr-line {
  height: 1px;
  background: linear-gradient(90deg,
    rgba(227,27,35,0.65) 0%,
    rgba(255,48,56,0.90) 30%,
    rgba(255,48,56,0.90) 70%,
    rgba(227,27,35,0.65) 100%
  );
  mask-image: linear-gradient(90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* ── Nav links — Barlow Condensed, uppercase ─────────────── */
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: rgba(185,198,218,0.72);
  transition: color .18s, background .18s;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

/* ponto vermelho embaixo do link ativo */
.nav-link.nav-active {
  color: #fff;
}
.nav-link.nav-active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(227,27,35,0.75);
}

/* ── Botão ghost no header ───────────────────────────────── */
.hdr-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(200,210,228,0.80);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: color .18s, background .18s, border-color .18s;
  text-decoration: none;
}
.hdr-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  text-decoration: none;
}
@media (max-width: 900px) { .hdr-ghost { display: none; } }

/* ── CTA com efeito shine ───────────────────────────────── */
.hdr-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 9px;
  overflow: hidden;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #e51e26 0%, #c41018 55%, #9e0c12 100%);
  box-shadow:
    0 4px 20px rgba(227,27,35,0.38),
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.22) inset;
  transition: transform .18s, box-shadow .18s, filter .18s;
  text-decoration: none;
}

.hdr-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.10);
  box-shadow:
    0 10px 36px rgba(227,27,35,0.50),
    0 1px 0 rgba(255,255,255,0.14) inset,
    0 -1px 0 rgba(0,0,0,0.22) inset;
  text-decoration: none;
  color: #fff;
}

/* shine diagonal que varre o botão */
.hdr-cta__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform .55s ease;
}
.hdr-cta:hover .hdr-cta__shine { transform: translateX(100%); }

/* ── Drawer — painel imersivo ─────────────────────────────── */
.drawer-panel {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(227,27,35,0.18) 0%, transparent 70%),
    linear-gradient(180deg, #0a0c12 0%, #06080c 100%) !important;
  border-left: 1px solid rgba(255,255,255,0.07) !important;
}

/* cabeçalho do drawer */
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.drawer-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

/* links do drawer */
.drawer-links {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(185,198,218,0.75);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  transition: color .18s, background .18s, border-color .18s;
  text-decoration: none;
}

.drawer-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  text-decoration: none;
}

.drawer-links a.drawer-active {
  color: #fff !important;
  background: rgba(227,27,35,0.14) !important;
  border-color: rgba(227,27,35,0.32) !important;
}

.drawer-links a.drawer-active .dl-icon { color: var(--red) !important; }

/* ícone dentro do item */
.dl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  color: rgba(185,198,218,0.60);
  flex-shrink: 0;
  transition: color .18s;
}

/* CTA no drawer */
.drawer-cta {
  padding: 12px 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
}

/* ── Overrides: neutraliza .drawer a genérico no logo/head ─ */
.drawer-logo {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  background: transparent !important;
}

.drawer-panel {
  display: flex;
  flex-direction: column;
}

/* ── zera margin-bottom do .drawer a genérico para os links do novo drawer ─ */
.drawer-links a { margin-bottom: 0 !important; }

/* =============================================================
   FOOTER v2 — ATMOSPHERIC DARK
   ============================================================= */

.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 70% 35% at 100% 100%, rgba(227,27,35,0.07), transparent 70%),
    radial-gradient(ellipse 40% 50% at 0% 50%, rgba(227,27,35,0.04), transparent 60%),
    #06080c;
  margin-top: 72px;
}

.ftr-top-line {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(227,27,35,0.50) 15%,
    rgba(255,48,56,0.85) 50%,
    rgba(227,27,35,0.50) 85%,
    transparent 100%
  );
}

.ftr-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 22px 28px;
}

.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 52px;
}

@media (max-width: 900px) { .ftr-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .ftr-grid { grid-template-columns: 1fr; } }

/* ── Brand ──────────────────────────────── */
.ftr-logo-link { display: inline-block; margin-bottom: 18px; }
.ftr-logo-link img { height: 44px; width: auto; display: block; }

.ftr-tagline {
  font-size: 14px;
  color: rgba(185,198,218,0.60);
  line-height: 1.70;
  margin: 0 0 22px;
}

.ftr-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(185,198,218,0.50);
  line-height: 1.60;
}
.ftr-address i {
  color: var(--red);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}
.ftr-address div { display: flex; flex-direction: column; }

/* ── Colunas ────────────────────────────── */
.ftr-title {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}

.ftr-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(185,198,218,0.62);
  font-size: 14px;
  font-weight: 500;
  padding: 5px 0;
  transition: color .15s;
  text-decoration: none;
}
.ftr-link i {
  font-size: 16px;
  color: rgba(227,27,35,0.45);
  transition: transform .15s, color .15s;
  line-height: 0;
}
.ftr-link:hover { color: #fff; text-decoration: none; }
.ftr-link:hover i { transform: translateX(3px); color: var(--red); }

/* ── Contato ────────────────────────────── */
.ftr-desc {
  font-size: 13.5px;
  color: rgba(185,198,218,0.52);
  line-height: 1.65;
  margin: 0 0 20px;
}

.ftr-btn-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1ab954, #0e9040);
  color: #fff;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 10px;
  box-shadow: 0 6px 24px rgba(26,185,84,0.25);
  transition: filter .18s, transform .18s;
}
.ftr-btn-wa i { font-size: 18px; }
.ftr-btn-wa:hover { filter: brightness(1.10); transform: translateY(-1px); text-decoration: none; color: #fff; }

.ftr-btn-ghost {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(185,198,218,0.72);
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .18s, background .18s, border-color .18s;
}
.ftr-btn-ghost i { font-size: 15px; color: rgba(227,27,35,0.55); }
.ftr-btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.22); text-decoration: none; }

/* ── Base ───────────────────────────────── */
.ftr-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 44px 0 22px;
}

.ftr-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(185,198,218,0.32);
  flex-wrap: wrap;
  gap: 10px;
}
.ftr-bottom-links { display: flex; gap: 20px; }
.ftr-bottom-links a { color: rgba(185,198,218,0.32); text-decoration: none; transition: color .15s; }
.ftr-bottom-links a:hover { color: rgba(185,198,218,0.75); }


/* =============================================================
   MODALIDADES v3 — HERO + CARDS APRIMORADOS
   ============================================================= */

/* ── Hero: grid atmosférico + kicker ───── */
.mod-hero {
  padding: 72px 22px 56px;
  background:
    radial-gradient(900px 500px at 5% 0%,  rgba(227,27,35,.20), transparent 60%),
    radial-gradient(600px 400px at 95% 100%, rgba(227,27,35,.08), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.mod-hero__grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 0% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 0% 0%, black 0%, transparent 70%);
}

.mod-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(227,27,35,0.10);
  border: 1px solid rgba(227,27,35,0.22);
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,180,183,0.90);
  margin-bottom: 20px;
  animation: heroFadeUp .5s ease both;
}

.mod-kicker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(227,27,35,0.75);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(227,27,35,0.6); }
  50%       { box-shadow: 0 0 14px rgba(227,27,35,0.9); }
}

/* título com Barlow Condensed em peso extremo */
.mod-hero__title {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  line-height: 0.96;
  letter-spacing: -1.5px;
  animation: heroFadeUp .55s .08s ease both;
}

.mod-hero__line1 {
  font-family: 'Barlow', system-ui, sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0px;
  color: rgba(185,198,218,0.70);
  text-transform: none;
  line-height: 1.3;
  margin-bottom: 4px;
}

.mod-hero__red {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 900;
  font-size: 88px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -3px;
  line-height: 0.92;
  display: block;
}

.mod-hero__sub {
  color: rgba(185,198,218,0.60);
  font-size: 15.5px;
  line-height: 1.70;
  max-width: 50ch;
  margin: 0 0 36px;
  animation: heroFadeUp .55s .16s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stats aprimoradas */
.mod-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  animation: heroFadeUp .55s .24s ease both;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 24px;
  display: inline-flex;
}

.mod-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 20px;
}
.mod-stat:first-child { padding-left: 0; }
.mod-stat:last-child  { padding-right: 0; }

.mod-stat strong {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0;
}

.mod-stat span {
  font-size: 10.5px;
  color: rgba(185,198,218,0.50);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}

.mod-stat-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .mod-hero           { padding: 44px 16px 40px; }
  .mod-hero__red      { font-size: 60px; letter-spacing: -2px; }
  .mod-hero__line1    { font-size: 22px; }
  .mod-hero__sub      { font-size: 14px; max-width: 100%; }
  .mod-stats          { padding: 12px 16px; gap: 0; }
  .mod-stat           { padding: 0 12px; }
}

/* ── Grid ───────────────────────────────── */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 8px;
}

@media (max-width: 1100px) { .mod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:  580px) { .mod-grid { grid-template-columns: 1fr; } }

/* ── Card com staggered reveal ──────────── */
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mod-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f2f3f6 100%);
  color: #0e0f12;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 16px 48px rgba(0,0,0,.28);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  animation: cardReveal .50s ease both;
}

.mod-card--d0 { animation-delay: .05s; }
.mod-card--d1 { animation-delay: .10s; }
.mod-card--d2 { animation-delay: .15s; }
.mod-card--d3 { animation-delay: .20s; }
.mod-card--d4 { animation-delay: .25s; }
.mod-card--d5 { animation-delay: .30s; }

.mod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0,0,0,.34);
}

/* Imagem */
.mod-card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(0,0,0,.06);
  flex-shrink: 0;
  position: relative;
}

.mod-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .40s ease;
}

.mod-card:hover .mod-card__img img { transform: scale(1.06); }

/* overlay vermelho no hover */
.mod-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,27,35,0.22), transparent 60%);
  opacity: 0;
  transition: opacity .28s;
}
.mod-card:hover .mod-card__img::after { opacity: 1; }

/* Body */
.mod-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
  gap: 0;
}

.mod-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.mod-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(227,27,35,.08);
  border: 1px solid rgba(227,27,35,.16);
  color: #111;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.mod-card__pill i { color: var(--red); font-size: 11px; line-height: 0; }

.mod-card__avail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f7a3a, #0b5f2c);
  color: #fff;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.mod-card__avail i { color: #fff; font-size: 11px; line-height: 0; }

.mod-card__name {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1.1;
  color: #0e0f12;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.mod-card__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.mod-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.08);
  color: rgba(0,0,0,.70);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.mod-card__tag i { color: var(--red); font-size: 12px; line-height: 0; }

.mod-card__tag--red {
  background: linear-gradient(135deg, var(--red), var(--red2)) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.mod-card__tag--red i { color: #fff !important; }

.mod-card__note {
  font-size: 12.5px;
  color: rgba(0,0,0,.52);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* CTA */
.mod-card__actions { margin-top: auto; }

.mod-card__cta {
  width: 100%;
  justify-content: center;
  border-radius: 12px !important;
  padding: 13px 16px !important;
  font-family: 'Barlow Condensed', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: .6px !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 28px rgba(227,27,35,.18) !important;
}
.mod-card__cta i {
  font-size: 16px !important;
  margin-right: 8px !important;
  line-height: 0 !important;
  transition: transform .18s !important;
}
.mod-card:hover .mod-card__cta i { transform: translateX(3px); }

@media (max-width: 820px) {
  .mod-card__img  { height: 160px; }
  .mod-card__name { font-size: 19px; }
  .mod-card__body { padding: 14px; }
}

/* =============================================================
   MODALIDADES — CARD IMAGE: blur-behind (sem corte)
   Imagem em contain, fundo é a mesma foto desfocada+escurecida
   ============================================================= */

.mod-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  background: #0a0c12;
}

/* fundo desfocado usando a mesma imagem via CSS variable */
.mod-card__img::before {
  content: '';
  position: absolute;
  inset: -24px;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.30) saturate(1.4);
  transform: scale(1.08);
  transition: filter .40s ease;
}

.mod-card:hover .mod-card__img::before {
  filter: blur(14px) brightness(0.38) saturate(1.6);
}

/* imagem principal: tamanho real, sem corte */
.mod-card__img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .40s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.45));
}

.mod-card:hover .mod-card__img img {
  transform: scale(1.04);
}

/* remove o overlay vermelho anterior (conflito) */
.mod-card__img::after { display: none !important; }

@media (max-width: 820px) {
  .mod-card__img { aspect-ratio: 4 / 3; }
}

/* =============================================================
   MODALIDADES — CARD IMAGE v3: cover limpo (imagens 16:9)
   Use imagens 1280x720 ou 1920x1080 no upload
   ============================================================= */

.mod-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  background: #0a0c12;
}

/* remove o pseudo-elemento de blur anterior */
.mod-card__img::before { display: none !important; }
.mod-card__img::after  { display: none !important; }

.mod-card__img img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
  transition: transform .40s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mod-card:hover .mod-card__img img {
  transform: scale(1.05);
}

@media (max-width: 820px) {
  .mod-card__img { aspect-ratio: 16 / 9; }
}

/* ================================================================
   CATALOG v2 — Turmas premium redesign (ct-* classes)
   ================================================================ */

/* ── Hero ─────────────────────────────────────────────────────── */
.ct-hero {
  position: relative;
  background: var(--bg, #06080c);
  padding: 80px 24px 64px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.ct-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.ct-hero__img-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  filter: blur(4px) saturate(1.4);
  transform: scale(1.05);
  pointer-events: none;
}

.ct-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,8,12,0.96) 0%,
    rgba(6,8,12,0.72) 55%,
    rgba(6,8,12,0.88) 100%
  );
  pointer-events: none;
}

.ct-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.ct-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.45);
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 22px;
  transition: color .18s;
}
.ct-hero__back:hover { color: #fff; }
.ct-hero__back i { font-size: 13px; }

.ct-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.50);
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ct-kicker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red, #e31b23);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.ct-hero__title {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 84px;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 30px;
}
.ct-hero__red { color: var(--red, #e31b23); }

.ct-hero__stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  padding: 10px 20px;
  backdrop-filter: blur(10px);
}
.ct-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 20px;
}
.ct-hero__stat strong {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.4px;
  line-height: 1;
}
.ct-hero__stat span {
  font-size: 9.5px;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .9px;
  white-space: nowrap;
}
.ct-hero__stat-div {
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,.13);
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .ct-hero { padding: 56px 16px 44px; min-height: unset; }
  .ct-hero__title { font-size: 54px; letter-spacing: -1.5px; }
  .ct-hero__stats { padding: 8px 10px; }
  .ct-hero__stat { padding: 0 10px; }
  .ct-hero__stat strong { font-size: 14px; }
}

/* ── Filter bar ───────────────────────────────────────────────── */
.ct-filter-bar {
  background: #0c0e15;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: sticky;
  top: 68px;
  z-index: 90;
}
.ct-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ct-filter-form { max-width: 340px; }

.ct-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.ct-select-wrap > .bi-funnel-fill {
  position: absolute;
  left: 13px;
  color: var(--red, #e31b23);
  font-size: 12px;
  pointer-events: none;
  z-index: 1;
}
.ct-select-wrap select {
  width: 100%;
  appearance: none;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  color: #fff;
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 34px 9px 36px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.ct-select-wrap select:hover,
.ct-select-wrap select:focus {
  border-color: rgba(227,27,35,.40);
  background: rgba(255,255,255,.08);
  outline: none;
}
.ct-select-wrap select option { background: #0e1018; color: #fff; }
.ct-select-arrow {
  position: absolute;
  right: 11px;
  color: rgba(255,255,255,.30);
  font-size: 11px;
  pointer-events: none;
}

.ct-filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.40);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .18s;
  white-space: nowrap;
}
.ct-filter-clear:hover { color: rgba(255,255,255,.75); }
.ct-filter-clear i { font-size: 13px; }

.ct-filter-count {
  margin-left: auto;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  color: rgba(255,255,255,.28);
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .ct-filter-inner { padding: 9px 14px; }
  .ct-filter-count { display: none; }
}

/* ── Page wrap ────────────────────────────────────────────────── */
.ct-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 90px;
}

/* ── Section divider ──────────────────────────────────────────── */
.ct-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0 18px;
}
.ct-section-label:first-child { margin-top: 0; }
.ct-section-label span {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  white-space: nowrap;
}
.ct-section-label__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.07);
}

/* ── Cards grid ───────────────────────────────────────────────── */
.ct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}
@media (max-width: 1100px) { .ct-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:  620px) { .ct-grid { grid-template-columns: 1fr; } }

/* ── Individual card ──────────────────────────────────────────── */
@keyframes ctCardIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ct-card {
  background: #0e1018;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  animation: ctCardIn .44s ease both;
  animation-delay: var(--ct-delay, 0s);
}

/* Red top shimmer on hover */
.ct-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red, #e31b23) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .25s;
}
.ct-card:hover::before { opacity: 1; }
.ct-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.13);
}

/* States */
.ct-card--sold { opacity: 0.55; }
.ct-card--sold::before { display: none; }

.ct-card--low { border-color: rgba(251,146,60,.18); }
.ct-card--low:hover {
  border-color: rgba(251,146,60,.30);
  box-shadow: 0 24px 64px rgba(251,146,60,.06);
}
.ct-card--low::before {
  background: linear-gradient(90deg, transparent, #f97316 50%, transparent);
}

/* Top row */
.ct-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.ct-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(227,27,35,.09);
  border: 1px solid rgba(227,27,35,.18);
  color: rgba(255,255,255,.65);
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.ct-card__badge i { color: var(--red, #e31b23); font-size: 10px; }

.ct-card__vagas {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.18);
  color: #4ade80;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ct-card__vagas i { font-size: 10px; }
.ct-card__vagas--low {
  background: rgba(251,146,60,.10);
  border-color: rgba(251,146,60,.22);
  color: #fb923c;
}
.ct-card__vagas--sold {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.09);
  color: rgba(255,255,255,.28);
}

/* Name */
.ct-card__name {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.2px;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Meta tags */
.ct-card__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ct-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.42);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.ct-card__tag i { font-size: 10px; color: rgba(255,255,255,.28); }

/* Price */
.ct-card__price { margin-bottom: 14px; }
.ct-card__price-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 4px;
}
.ct-card__price-val {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ct-card__price-per {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.30);
  letter-spacing: 0;
}

/* Progress bar */
.ct-card__bar-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
  margin-bottom: 6px;
}
.ct-card__bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  transition: width .6s ease;
}
.ct-card__bar-fill--low  { background: linear-gradient(90deg, #ea580c, #fb923c); }
.ct-card__bar-fill--sold { background: rgba(255,255,255,.12); width: 100% !important; }
.ct-card__bar-label {
  font-size: 10.5px;
  color: rgba(255,255,255,.25);
  font-weight: 600;
  margin-bottom: 18px;
}

/* Actions */
.ct-card__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 4px;
}

.ct-card__cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e31b23, #b80f15);
  color: #fff;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(227,27,35,.22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ct-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(227,27,35,.35);
  color: #fff;
}
.ct-card__cta i { font-size: 14px; line-height: 0; }

.ct-card__cta--sold {
  background: rgba(255,255,255,.05);
  box-shadow: none;
  color: rgba(255,255,255,.25);
  cursor: default;
}
.ct-card__cta--sold:hover { transform: none; box-shadow: none; color: rgba(255,255,255,.25); }

.ct-card__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37,211,102,.10);
  border: 1px solid rgba(37,211,102,.20);
  color: #25d366;
  font-size: 20px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .18s, transform .15s, border-color .18s;
}
.ct-card__wa:hover {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.35);
  transform: translateY(-2px);
  color: #25d366;
}

/* ── Empty state ──────────────────────────────────────────────── */
.ct-empty {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ct-empty > .bi {
  font-size: 52px;
  color: rgba(255,255,255,.12);
  line-height: 1;
}
.ct-empty__title {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: rgba(255,255,255,.50);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ct-empty__sub {
  font-size: 14px;
  color: rgba(255,255,255,.28);
  max-width: 300px;
  line-height: 1.65;
}

/* ================================================================
   CATALOG v2 — LIGHT override: fundo claro, cards brancos
   ================================================================ */

/* Fundo claro da seção de conteúdo */
.ct-content-bg {
  background: #f0f2f8;
  min-height: 320px;
}

/* Inner wrap: só define espaçamento */
.ct-page-wrap {
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 90px;
}

/* Section label no fundo claro */
.ct-section-label span {
  color: rgba(0,0,0,.38);
}
.ct-section-label__line {
  background: rgba(0,0,0,.10);
}

/* ── Card: branco ─────────────────────────────────────────────── */
.ct-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  color: #0e0f12;
}
.ct-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  border-color: rgba(0,0,0,.12);
}
.ct-card::before {
  background: linear-gradient(90deg, transparent, var(--red, #e31b23) 50%, transparent);
}

/* Soldout no fundo claro */
.ct-card--sold {
  background: #f9fafb;
  opacity: 1;
  border-color: rgba(0,0,0,.06);
}
.ct-card--sold .ct-card__price-val,
.ct-card--sold .ct-card__name { color: rgba(0,0,0,.35); }

/* Low no fundo claro */
.ct-card--low {
  border-color: rgba(234,88,12,.22);
}
.ct-card--low:hover {
  border-color: rgba(234,88,12,.38);
  box-shadow: 0 16px 48px rgba(234,88,12,.07);
}
.ct-card--low::before {
  background: linear-gradient(90deg, transparent, #f97316 50%, transparent);
}

/* Badges topo */
.ct-card__badge {
  background: rgba(227,27,35,.07);
  border-color: rgba(227,27,35,.14);
  color: #555;
}
.ct-card__badge i { color: var(--red, #e31b23); }

.ct-card__vagas {
  background: rgba(22,163,74,.09);
  border-color: rgba(22,163,74,.18);
  color: #15803d;
}
.ct-card__vagas--low {
  background: rgba(234,88,12,.09);
  border-color: rgba(234,88,12,.20);
  color: #c2410c;
}
.ct-card__vagas--sold {
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.08);
  color: rgba(0,0,0,.30);
}

/* Nome */
.ct-card__name { color: #0e0f12; }

/* Tags de meta */
.ct-card__tag {
  background: rgba(0,0,0,.045);
  border-color: rgba(0,0,0,.07);
  color: rgba(0,0,0,.52);
}
.ct-card__tag i { color: rgba(0,0,0,.28); }

/* Preço */
.ct-card__price-label { color: rgba(0,0,0,.32); }
.ct-card__price-val   { color: #0e0f12; }
.ct-card__price-per   { color: rgba(0,0,0,.32); }

/* Barra de ocupação */
.ct-card__bar-track { background: rgba(0,0,0,.08); }
.ct-card__bar-fill  { background: linear-gradient(90deg, #16a34a, #22c55e); }
.ct-card__bar-fill--low  { background: linear-gradient(90deg, #ea580c, #fb923c); }
.ct-card__bar-fill--sold { background: rgba(0,0,0,.10); width: 100% !important; }
.ct-card__bar-label { color: rgba(0,0,0,.32); }

/* CTA vermelho — igual, mas sombra mais visível no branco */
.ct-card__cta {
  background: linear-gradient(135deg, #e31b23, #b80f15);
  box-shadow: 0 6px 20px rgba(227,27,35,.28);
}
.ct-card__cta:hover {
  box-shadow: 0 10px 28px rgba(227,27,35,.38);
  color: #fff;
}

/* CTA soldout no card branco */
.ct-card__cta--sold {
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.28);
  box-shadow: none;
}
.ct-card__cta--sold:hover { color: rgba(0,0,0,.28); }

/* WhatsApp button */
.ct-card__wa {
  background: rgba(37,211,102,.10);
  border-color: rgba(37,211,102,.22);
  color: #15803d;
}
.ct-card__wa:hover {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.38);
  color: #15803d;
}

/* Estado vazio */
.ct-empty__title { color: rgba(0,0,0,.40); }
.ct-empty__sub   { color: rgba(0,0,0,.28); }
.ct-empty > .bi  { color: rgba(0,0,0,.10); }

/* ================================================================
   PLANOS v2 — pl-* classes, premium redesign
   ================================================================ */

/* ── Hero ─────────────────────────────────────────────────────── */
.pl-hero {
  position: relative;
  background: var(--bg, #06080c);
  padding: 80px 24px 64px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.pl-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.pl-hero__img-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center 30%;
  opacity: 0.15;
  filter: blur(4px) saturate(1.5);
  transform: scale(1.05);
  pointer-events: none;
}
.pl-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,8,12,0.96) 0%,
    rgba(6,8,12,0.70) 55%,
    rgba(6,8,12,0.90) 100%
  );
  pointer-events: none;
}
.pl-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.pl-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.42);
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 22px;
  transition: color .18s;
}
.pl-hero__back:hover { color: #fff; }
.pl-hero__back i { font-size: 13px; }

.pl-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.48);
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pl-kicker__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red, #e31b23);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.pl-hero__title {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 82px;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.pl-hero__red { color: var(--red, #e31b23); }
.pl-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.50);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 420px;
}
.pl-hero__stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  padding: 10px 20px;
  backdrop-filter: blur(10px);
}
.pl-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 18px;
}
.pl-hero__stat strong {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.4px;
  line-height: 1;
}
.pl-hero__stat span {
  font-size: 9.5px;
  color: rgba(255,255,255,.36);
  text-transform: uppercase;
  letter-spacing: .9px;
  white-space: nowrap;
}
.pl-hero__stat-div {
  width: 1px; height: 26px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
@media (max-width: 820px) {
  .pl-hero { padding: 56px 16px 44px; min-height: unset; }
  .pl-hero__title { font-size: 52px; letter-spacing: -1.5px; }
  .pl-hero__stats { padding: 8px 10px; }
  .pl-hero__stat { padding: 0 10px; }
  .pl-hero__stat strong { font-size: 14px; }
}

/* ── Filter tabs ───────────────────────────────────────────────── */
.pl-filter-bar {
  background: #0c0e15;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: sticky;
  top: 68px;
  z-index: 90;
  overflow-x: auto;
  scrollbar-width: none;
}
.pl-filter-bar::-webkit-scrollbar { display: none; }
.pl-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.pl-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.50);
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .18s;
  white-space: nowrap;
}
.pl-tab:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.pl-tab--active {
  background: var(--red, #e31b23);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(227,27,35,.30);
}
.pl-tab--active:hover {
  background: #c41118;
  color: #fff;
}
.pl-tab i { font-size: 12px; }
.pl-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}
.pl-tab--active .pl-tab__count {
  background: rgba(255,255,255,.22);
}
@media (max-width: 600px) {
  .pl-filter-inner { padding: 8px 14px; gap: 6px; }
  .pl-tab { padding: 7px 12px; font-size: 12px; }
}

/* ── Content area ──────────────────────────────────────────────── */
.pl-content-bg {
  background: #f0f2f8;
  min-height: 320px;
}
.pl-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 90px;
}

/* ── Grid ──────────────────────────────────────────────────────── */
.pl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .pl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:  600px) { .pl-grid { grid-template-columns: 1fr; } }

/* ── Card ──────────────────────────────────────────────────────── */
@keyframes plCardIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pl-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
  transition: transform .20s ease, box-shadow .20s ease, border-color .20s ease;
  animation: plCardIn .44s ease both;
  animation-delay: var(--pl-delay, 0s);
  position: relative;
}
.pl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red, #e31b23) 50%, transparent);
  opacity: 0;
  transition: opacity .22s;
  z-index: 1;
}
.pl-card:hover::before { opacity: 1; }
.pl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,.14);
  border-color: rgba(0,0,0,.12);
}

/* Imagem (sempre visível, 16:9) */
.pl-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
}
.pl-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .40s ease;
}
.pl-card:hover .pl-card__img img { transform: scale(1.04); }

/* Body padding */
.pl-card__top,
.pl-card__name,
.pl-card__price-box,
.pl-card__features,
.pl-card__actions {
  padding-left: 20px;
  padding-right: 20px;
}

/* Badges */
.pl-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 0;
  margin-bottom: 12px;
}
.pl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pl-badge i { font-size: 10px; }

.pl-badge--normal {
  background: rgba(227,27,35,.08);
  border: 1px solid rgba(227,27,35,.14);
  color: #b31219;
}
.pl-badge--combo {
  background: rgba(124,58,237,.09);
  border: 1px solid rgba(124,58,237,.18);
  color: #6d28d9;
}
.pl-badge--segsex {
  background: rgba(14,165,233,.09);
  border: 1px solid rgba(14,165,233,.18);
  color: #0369a1;
}
.pl-badge--segsab {
  background: rgba(16,185,129,.09);
  border: 1px solid rgba(16,185,129,.18);
  color: #065f46;
}
.pl-badge--dur {
  background: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.08);
  color: rgba(0,0,0,.52);
}

/* Nome */
.pl-card__name {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.3px;
  line-height: 1.15;
  color: #0e0f12;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Preço */
.pl-card__price-box {
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  margin: 0 20px 14px;
  padding: 14px 16px;
}
.pl-card__price-box {
  padding-left: 0;
  padding-right: 0;
  margin-left: 20px;
  margin-right: 20px;
}

/* Preço equivalente (para planos multi-meses) */
.pl-card__price-equiv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 10px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin-bottom: 10px;
}
.pl-card__price-equiv-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0,0,0,.35);
}
.pl-card__price-equiv-val {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #15803d;
  letter-spacing: -.5px;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.pl-card__price-equiv-val small {
  font-size: 11px;
  font-weight: 600;
  color: #15803d;
}

/* Preço principal */
.pl-card__price-main {
  padding: 0 16px;
}
.pl-card__price-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,.32);
  margin-bottom: 4px;
}
.pl-card__price-val {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #0e0f12;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pl-card__price-per {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(0,0,0,.32);
  letter-spacing: 0;
}

/* Features */
.pl-card__features {
  list-style: none;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pl-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(0,0,0,.60);
  line-height: 1.45;
}
.pl-card__features li i {
  color: var(--red, #e31b23);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTAs */
.pl-card__actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 20px;
  padding-top: 4px;
}
.pl-card__cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e31b23, #b80f15);
  color: #fff;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(227,27,35,.28);
  transition: transform .15s, box-shadow .15s;
}
.pl-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(227,27,35,.38);
  color: #fff;
}
.pl-card__cta i { font-size: 14px; line-height: 0; }

.pl-card__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37,211,102,.10);
  border: 1px solid rgba(37,211,102,.22);
  color: #15803d;
  font-size: 20px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .18s, transform .15s, border-color .18s;
}
.pl-card__wa:hover {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.38);
  transform: translateY(-2px);
  color: #15803d;
}

/* ── Empty state ────────────────────────────────────────────────── */
.pl-empty {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pl-empty > .bi {
  font-size: 52px;
  color: rgba(0,0,0,.10);
  line-height: 1;
}
.pl-empty__title {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: rgba(0,0,0,.38);
  text-transform: uppercase;
}
.pl-empty__sub {
  font-size: 14px;
  color: rgba(0,0,0,.28);
}
