/* =============================================
   GAROTA VIP RJ — Premium Dark Theme (Optimized)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97e;
  --gold-dark: #8a6d2f;
  --bg-dark: #0a0a0d;
  --bg-card: #111116;
  --bg-card2: #18181f;
  --bg-glass: rgba(201,168,76,0.07);
  --text: #f0ece4;
  --text-muted: #9a9a9a;
  --text-dim: #6e6e6e;
  --border: rgba(201,168,76,0.18);
  --border-hover: rgba(201,168,76,0.45);
  --red: #e8354a;
  --green: #28c76f;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.18);
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { 
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Prevent screenshot on desktop */
@media screen and (min-width: 768px) {
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    opacity: 0.01;
  }
}

/* ——— SCROLLBAR ——— */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ——— TYPOGRAPHY ——— */
h1,h2,h3,h4 { 
  font-family: var(--font-display); 
  font-weight: 700; 
  line-height: 1.2; 
}
a { 
  color: var(--gold); 
  text-decoration: none; 
  transition: color var(--transition); 
}
a:hover { color: var(--gold-light); }

/* ——— UTILITY ——— */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }

/* ——— NAVBAR ——— */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,13,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
  will-change: transform;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  letter-spacing: .5px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  flex: 1;
}

.navbar-menu a {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
  letter-spacing: .3px;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--gold);
  background: var(--bg-glass);
}

.navbar-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.navbar-mobile-panel {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.navbar-mobile-panel:hover {
  opacity: 0.92;
}

.navbar-mobile-panel img,
.navbar-mobile-panel svg {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  user-select: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition);
}

.dropdown-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.8rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), opacity var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-glass);
  color: var(--gold);
}

/* ——— HAMBURGER ——— */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ——— MOBILE MENU ——— */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  display: none;
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
  animation: menuSlideIn 0.22s ease forwards;
}

@keyframes menuSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
  font-size: 0.9rem;
}

.mobile-menu a:hover {
  background: var(--bg-glass);
  color: var(--gold);
}

.mobile-menu-sep {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

/* ——— HERO ——— */
.hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, transparent, var(--bg-glass));
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  min-height: 80px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  font-family: var(--font-body);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--bg-glass);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--bg-card2);
  color: var(--gold);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ——— LAYOUT ——— */
.layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ——— SIDEBAR ——— */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 92px;
  align-self: start;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

@media (min-width: 1025px) {
  .sidebar {
    max-height: none;
    overflow: visible;
  }
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sidebar-card-header {
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card2);
}

.sidebar-card-body {
  padding: 1.2rem;
  min-height: 0;
}

/* Sidebar Destaques: evita parecer "cortado" e permite rolagem interna */
#sidebarDestaque {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}

.filter-group {
  margin-bottom: 1.2rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 0.7rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.zone-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zone-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background-color var(--transition), border-color var(--transition);
  font-size: 0.85rem;
}

.zone-link:hover {
  background: var(--bg-glass);
  border-color: var(--border);
}

.badge {
  background: var(--bg-dark);
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* ——— MAIN CONTENT ——— */
main {
  min-width: 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-family: var(--font-display);
}

.section-count {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ——— GRID ——— */
.ads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ads-list-vertical {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.ads-list-vertical .ad-card {
  max-width: none;
}

.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pagination-nav .btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.pagination-summary {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ——— ADS CAROUSEL (HOME) ——— */
.ads-carousel-wrapper {
  position: relative;
}

.ads-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 2rem 1.2rem;
}

.ads-carousel > .ad-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.ads-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(17, 17, 22, 0.92);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 26px rgba(0,0,0,0.55);
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.ads-carousel-btn:hover {
  transform: translateY(-50%) scale(1.06);
  border-color: var(--border-hover);
  background: rgba(24, 24, 31, 0.96);
}

/* ——— REELS / VIDEOS (VERTICAL) ——— */
.reels-page {
  height: calc(100vh - 72px);
}

.reels-feed {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.reel-item {
  scroll-snap-align: start;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.reel-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
}

.reel-video {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.reel-meta {
  padding: 0.9rem 1rem 1.1rem;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.reel-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.55rem;
}

.reel-sub {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.reel-actions {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.reel-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .reels-page { height: calc(100vh - 64px); }
  .reels-feed { border-radius: var(--radius-sm); }
}

.ads-carousel-prev { left: 0.35rem; }
.ads-carousel-next { right: 0.35rem; }

@media (max-width: 768px) {
  .ads-carousel-btn { display: none; }
  .ads-carousel { padding: 0.25rem 1rem 1rem; }
  .ads-carousel > .ad-card { flex: 0 0 240px; }
}

/* ——— AD CARD ——— */
.ad-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ad-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ad-card-img {
  position: relative;
  width: 100%;
  padding-top: 133.33%;
  background: var(--bg-card2);
  overflow: hidden;
}

.ad-card-badges {
  z-index: 4;
}

.ad-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.ad-card-badges {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  right: 0.8rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  pointer-events: none;
}

.badge-destaque,
.badge-verified {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  max-width: 142px;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid rgba(201,168,76,0.3);
}

.badge-destaque {
  color: var(--gold);
}

.badge-verified {
  color: var(--green);
  border-color: rgba(40,199,111,0.3);
}

.badge-verified-seal {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  min-height: 28px;
  max-width: 28px;
  padding: 0;
  border-radius: 50%;
  background: rgba(40,199,111,0.95);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  font-size: 0.9rem;
  font-weight: 900;
  z-index: 5;
}

.ad-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ad-card-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.ad-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
}

.ad-card-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: auto;
}

.ad-card-actions .btn {
  flex: 1;
  justify-content: center;
}

/* ——— WARNING BOX ——— */
.warning-box {
  background: linear-gradient(135deg, rgba(232,53,74,0.1), rgba(232,53,74,0.05));
  border: 1px solid rgba(232,53,74,0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.warning-box h4 {
  color: var(--red);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.warning-box p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.warning-box strong {
  color: var(--text);
}

/* ——— FAQ ——— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: background-color var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-question.open::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  background: var(--bg-glass);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* ——— PLANS ——— */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.plan-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  position: relative;
}

.plan-card.featured::before {
  content: '⭐ Mais Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-period {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  color: var(--green);
  margin-right: 0.7rem;
  font-weight: 700;
}

/* ——— FOOTER ——— */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto 2rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ——— FLOATING BUTTONS ——— */
.whatsapp-btn,
.floap-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 900;
  text-decoration: none;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
  bottom: 7rem;
  overflow: visible;
}
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.55);
  animation: wp-pulse 2.2s ease-out infinite;
  z-index: -1;
  pointer-events: none;
}
.whatsapp-btn:hover::before {
  animation-play-state: paused;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: scale(1.1);
}

.floap-btn {
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 1.5rem;
  font-weight: 700;
}

.floap-btn:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

/* ——— ANIMATIONS ——— */
@keyframes wp-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

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

.animate-in {
  animation: fadeInUp 0.5s ease-out;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    top: 0;
    max-height: none;
    overflow: visible;
  }

  .ads-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .ads-list-vertical {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .navbar-menu,
  .navbar-actions {
    display: none;
  }

  .navbar-mobile-panel {
    display: inline-flex;
    margin-left: auto;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 3rem 1.5rem 2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .layout {
    padding: 1rem;
  }

  .ads-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ads-list-vertical {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-btn,
  .floap-btn {
    width: 48px;
    height: 48px;
  }

  .whatsapp-btn {
    bottom: 5.5rem;
    right: 1rem;
  }

  .floap-btn {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* ——— PROFILE PAGE ——— */
.profile-hero {
  background: linear-gradient(180deg, var(--bg-card2), transparent);
  padding: 2rem;
  border-bottom: 1px solid var(--border);
}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
}

.profile-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  padding: 2rem;
}

.profile-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 92px;
  align-self: start;
}

.profile-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card2);
}

.profile-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.profile-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.profile-thumb.active {
  border-color: var(--gold);
}

.profile-thumb:hover {
  transform: scale(1.05);
}

.profile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.profile-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.profile-title h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.profile-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.profile-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.profile-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.info-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

.profile-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.service-tag {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-gallery {
    position: relative;
    top: 0;
  }
}

/* ——— ADMIN PANEL ——— */
.admin-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.admin-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-top: 1rem;
}

.admin-nav a {
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background-color var(--transition);
}

.admin-nav a.active,
.admin-nav a:hover {
  background: var(--bg-glass);
  color: var(--gold);
}

.admin-content {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.stat-card-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.stat-card-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}

.data-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  background: var(--bg-card2);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover {
  background: var(--bg-glass);
}

/* Form Elements */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition);
}

.file-upload:hover {
  border-color: var(--gold);
  background: var(--bg-glass);
}

.file-upload input[type="file"] {
  display: none;
}


/* â€”â€”â€” BOTTOM NAVIGATION â€”â€”â€” */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,13,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0 env(safe-area-inset-bottom, 0.5rem);
  z-index: 990;
  justify-content: space-around;
  align-items: center;
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  transition: opacity var(--transition);
  will-change: opacity;
  min-width: 52px;
  text-align: center;
  border-radius: var(--radius-sm);
}
.bottom-nav-item:hover,
.bottom-nav-item.active {
  color: var(--gold);
}
.bottom-nav-item svg { flex-shrink: 0; }
.bottom-nav-cta {
  background: var(--gold);
  color: #000 !important;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-weight: 700;
}
.bottom-nav-cta:hover { background: var(--gold-light); }

@media (max-width: 768px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: 65px; }
  footer { margin-bottom: 0 !important; }
}

/* ——— VIDEO CAROUSEL ——— */
.video-carousel-wrapper {
  position: relative;
}
.video-carousel {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 2rem 1.2rem;
  scrollbar-width: none;
  cursor: grab;
}
.video-carousel:active { cursor: grabbing; }
.video-carousel::-webkit-scrollbar { display: none; }
.video-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  background: rgba(10,10,13,0.88);
  border: 1px solid var(--border-hover);
  color: var(--gold-light);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-carousel-btn:hover { background: var(--bg-glass); border-color: var(--gold); }
.video-carousel-prev { left: 0.4rem; }
.video-carousel-next { right: 0.4rem; }

/* VIDEO CARD — carrossel e grid */
.video-card {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  flex: 0 0 155px;
  width: 155px;
  scroll-snap-align: start;
  user-select: none;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* Video grid (página videos.html) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1rem;
}
.video-grid .video-card {
  flex: none;
  width: auto;
  scroll-snap-align: unset;
}

/* â€”â€”â€” PROFILE GALLERY IMPROVEMENTS â€”â€”â€” */
.profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 3px;
}

/* â€”â€”â€” MOBILE FIXES â€”â€”â€” */
@media (max-width: 480px) {
  /* BotÃµes: evitar overflow de texto */
  .btn {
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.6rem 0.9rem;
  }
  /* Cards: largura mÃ­nima responsiva */
  .ads-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    gap: 0.75rem !important;
  }
  .ad-card-name {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ad-card-actions {
    gap: 0.4rem;
  }
  .ad-card-actions .btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
  /* Hero text */
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 0.88rem; }
  /* Plans */
  .plans-grid {
    grid-template-columns: 1fr !important;
  }
  .plan-price {
    font-size: 1.6rem;
  }
  /* Profile */
  .profile-name { font-size: 1.6rem; }
  .profile-header {
    grid-template-columns: 1fr !important;
  }
  /* Navbar */
  .navbar { padding: 0 1rem; }
  /* Sections */
  .layout { padding: 1rem !important; }
  /* Bottom nav safe area */
  .bottom-nav { padding-bottom: max(0.5rem, env(safe-area-inset-bottom)); }
}

@media (max-width: 768px) {
  /* Video carousel mobile */
  .video-carousel-btn { display: none; }
  .video-card { flex: 0 0 130px; width: 130px; }
  .video-grid .video-card { flex: none; width: auto; }
  .video-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.75rem; }
  .video-carousel { padding: 0.4rem 1rem 1rem; gap: 0.65rem; }
  /* Hero CTA buttons */
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  /* FAQ */
  .faq-question { font-size: 0.9rem; }
  /* Footer grid mobile */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Sidebar bottom SEO region links */
  .zone-links { gap: 0.4rem; }
}

/* â€”â€”â€” SEO PAGES BOTTOM NAV (para pÃ¡ginas em /seo/) â€”â€”â€” */
.seo-bottom-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  justify-content: center;
  margin-top: 2rem;
}
.seo-bottom-nav a {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: background-color var(--transition);
  white-space: nowrap;
}
.seo-bottom-nav a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* â€”â€”â€” PLAN CARD IMPROVEMENTS â€”â€”â€” */
.plan-card {
  display: flex;
  flex-direction: column;
}
.plan-features {
  flex: 1;
}
.plan-card .btn {
  margin-top: auto;
}

/* â€”â€”â€” SKELETON LOADING â€”â€”â€” */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card2) 25%, var(--bg-card) 50%, var(--bg-card2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* WhatsApp button: icon-only on mobile for VIP/Premium cards */
@media (max-width: 600px) {
  [data-plano="vip"] .wa-text,
  [data-plano="premium"] .wa-text {
    display: none;
  }
  [data-plano="vip"] .btn-primary svg,
  [data-plano="premium"] .btn-primary svg {
    margin-right: 0 !important;
  }
  [data-plano="vip"] .btn-primary,
  [data-plano="premium"] .btn-primary {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    min-width: unset;
  }
}

/* ——— UTILITY ——— */
.hidden { display: none !important; }

/* ——— BADGES: menores e alinhadas no topo ——— */
.badge-destaque,
.badge-verified {
  padding: 0.24rem 0.55rem !important;
  font-size: 0.64rem !important;
  border-radius: 999px !important;
  line-height: 1.15;
}
.badge-verified-seal {
  padding: 0 !important;
  font-size: 0.9rem !important;
}
.ad-card-badges {
  top: 0.5rem !important;
  left: 0.5rem !important;
  right: 0.5rem !important;
  gap: 0.3rem !important;
}

/* ——— MOBILE: texto melhor distribuído ——— */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; text-align: center; }
  .hero p  { font-size: 0.88rem; text-align: center; padding: 0 0.5rem; }
  .section-title { font-size: 1.1rem; }
  .ad-card-name { font-size: 0.95rem; }
  .ad-card-meta { font-size: 0.75rem; }
  .ad-card-body { padding: 0.8rem; gap: 0.5rem; }
  .ad-card-actions { gap: 0.4rem; }
  .ad-card-actions .btn { font-size: 0.72rem; padding: 0.45rem 0.6rem; }

  .ads-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .layout { grid-template-columns: 1fr; padding: 0.8rem; gap: 1rem; }
  .sidebar { position: static; max-height: none; }

  /* Texto SEO pages mobile */
  .seo-hero h1 { font-size: 1.4rem; }
  .seo-hero p  { font-size: 0.85rem; }

  /* Profile page */
  .gallery-main { max-width: 100%; }
  .gallery-thumbs { justify-content: center; }
}

/* ——— SEO PAGES: mobile layout fix ——— */
@media (max-width: 768px) {
  /* Reduce article padding so text has room */
  .container > article {
    padding: 1.2rem !important;
  }

  /* Step cards (gold left border) → stack vertically */
  [style*="border-left:4px solid var(--gold)"] {
    flex-direction: column !important;
    gap: 0.8rem !important;
    padding: 1.2rem !important;
    align-items: flex-start !important;
  }

  /* Feature mini-cards */
  [style*="minmax(280px"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Feature card padding */
  [style*="border-radius:var(--radius-sm);padding:1.8rem"] {
    padding: 1rem !important;
  }

  /* Article headings */
  .container > article h2[style] { font-size: 1.3rem !important; line-height: 1.35 !important; }
  .container > article h3[style] { font-size: 1.1rem !important; }
  .container > article h4[style] { font-size: 0.95rem !important; }
  .container > article p[style]  { font-size: 0.88rem !important; }

  /* Tip/callout boxes inside steps */
  [style*="border-left:3px solid"] {
    padding: 0.7rem !important;
  }
}

/* ====================================================
   CARDS DIFERENCIADOS POR PLANO — VIP & PREMIUM
   ==================================================== */

/* ——— CARD PREMIUM ——— */
.premium-card {
  border: 2px solid transparent !important;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, #ffd700, #c9a84c, #ffd700) border-box !important;
  box-shadow: 0 0 18px rgba(255,215,0,.22) !important;
  animation: premiumPulse 2.5s ease-in-out infinite;
  position: relative;
}

.premium-card::before {
  content: '👑 PREMIUM';
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ffd700, #c9a84c);
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  z-index: 10;
  letter-spacing: .4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
  pointer-events: none;
}

.premium-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 36px rgba(255,215,0,.3) !important;
}

@keyframes premiumPulse {
  0%,100% { filter: drop-shadow(0 0 4px rgba(255,215,0,.2)); }
  50%      { filter: drop-shadow(0 0 10px rgba(255,215,0,.45)); }
}

/* ——— CARD VIP ——— */
.vip-card {
  border: 2px solid var(--gold) !important;
  box-shadow: 0 0 12px rgba(201,168,76,.18) !important;
  position: relative;
  overflow: hidden;
}

.vip-card::before {
  content: '⭐ VIP';
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: #000;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  z-index: 10;
  pointer-events: none;
}

.vip-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  animation: vipShine 2.8s linear infinite;
  pointer-events: none;
  transform: translateX(-200%);
}

.vip-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 24px rgba(201,168,76,.28) !important;
}

@keyframes vipShine {
  0%   { transform: translateX(-200%); }
  100% { transform: translateX(400%); }
}

/* ——— Mobile ——— */
@media (max-width: 600px) {
  .premium-card::before,
  .vip-card::before {
    font-size: 0.55rem;
    padding: 0.18rem 0.5rem;
    top: 7px;
    right: 7px;
  }
}
