/* ==========================================================================
   ANALLY BIG BOOBS - PREMIUM ADULT DESIGN SYSTEM & STYLES
   ========================================================================== */

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

:root {
  /* Color Palette */
  --bg-dark: #07040a;
  --bg-surface: #0f0914;
  --bg-card: rgba(22, 13, 29, 0.65);
  --bg-card-hover: rgba(36, 18, 48, 0.8);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-glow: rgba(255, 0, 85, 0.4);
  
  --primary-pink: #ff0055;
  --primary-glow: #ff2a6d;
  --accent-gold: #ffd700;
  --accent-purple: #8a2be2;
  --accent-cyan: #00f2fe;
  
  --text-main: #ffffff;
  --text-muted: #b8b0c6;
  --text-dim: #79718a;
  
  /* Layout & Utility */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-neon: 0 0 30px rgba(255, 0, 85, 0.5);
  --shadow-gold: 0 0 25px rgba(255, 215, 0, 0.35);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Glow Effects */
.ambient-glow-1 {
  position: fixed;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 85, 0.18) 0%, rgba(138, 43, 226, 0.1) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: fixed;
  bottom: -10%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 0, 85, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Background Image Vignette / Fade nos cantos */
.section-with-bg {
  position: relative;
  overflow: hidden;
}

.bg-image-fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  filter: brightness(0.65) contrast(1.15);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 20%, rgba(0,0,0,0.4) 55%, transparent 80%);
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 20%, rgba(0,0,0,0.4) 55%, transparent 80%);
}

/* Typography Utilities */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #ff6b9d 50%, var(--primary-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fff2a3 0%, var(--accent-gold) 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
}

/* Header & Top Bar */
.site-header {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(7, 4, 10, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.brand-logo .highlight {
  color: var(--primary-pink);
  text-shadow: 0 0 12px rgba(255, 0, 85, 0.6);
}

/* Language Switcher */
.lang-switch-box {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.lang-btn img {
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.lang-btn:hover, .lang-btn.active {
  color: #ffffff;
  background: rgba(255, 0, 85, 0.35);
  box-shadow: 0 0 8px rgba(255, 0, 85, 0.4);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 0, 85, 0.12);
  border: 1px solid rgba(255, 0, 85, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff4d88;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* HERO SECTION */
.hero-section {
  padding: 2.5rem 0 2rem;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background: linear-gradient(90deg, rgba(255,0,85,0.2), rgba(138,43,226,0.2));
  border: 1px solid rgba(255,0,85,0.4);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff85ad;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.2);
}

.main-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.subheadline-box {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem auto 2rem;
  max-width: 680px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.subheadline-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: left;
}

.hero-highlights-list li {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-highlights-list li strong {
  color: #fff;
}

/* Call To Action Buttons */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 540px;
  padding: 1.25rem 2rem;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff0055 0%, #d60045 50%, #990033 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 0 30px rgba(255, 0, 85, 0.6), 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: rotate(30deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  20% { transform: translateX(100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

.btn-primary-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 45px rgba(255, 0, 85, 0.8), 0 12px 35px rgba(0, 0, 0, 0.7);
  border-color: #ffffff;
}

.btn-primary-cta:active {
  transform: translateY(1px) scale(0.99);
}

.btn-glow-gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #000;
  box-shadow: var(--shadow-gold);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-glow-gold:hover {
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

/* Urgent Offer Banner */
.urgency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #ff99bb;
  margin-top: 0.8rem;
  font-weight: 600;
}

/* FEATURED VIDEO PLAYER SECTION */
.video-feature-section {
  padding: 2rem 0;
}

.section-title-box {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-pink);
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  text-transform: uppercase;
}

/* Custom Video Teaser Card */
/* Custom Video Teaser Card - Formato Story (9:16) */
.video-teaser-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 580px;
  max-height: 75vh;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(255, 0, 85, 0.5);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 0, 85, 0.35);
  aspect-ratio: 9 / 16;
}

.video-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: var(--transition);
}

.video-teaser-card:hover .video-poster-img {
  filter: brightness(1);
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 35%, rgba(0,0,0,0.85) 100%);
  z-index: 5;
}

.video-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-4k {
  background: linear-gradient(90deg, #ff0055, #8a2be2);
  color: #fff;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 1px;
}

.video-duration {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.video-center-trigger {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.play-btn-circle {
  width: 76px;
  height: 76px;
  background: rgba(255, 0, 85, 0.85);
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  padding-left: 5px;
  box-shadow: 0 0 35px rgba(255, 0, 85, 0.8);
  transition: var(--transition);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255, 0, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0); }
}

.video-teaser-card:hover .play-btn-circle {
  transform: scale(1.15);
  background: var(--primary-pink);
}

.teaser-play-label {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-bottom-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fake-progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.fake-progress-fill {
  width: 35%;
  height: 100%;
  background: var(--primary-pink);
  box-shadow: 0 0 10px var(--primary-pink);
}

/* TEASER GALLERY SECTION (MOBILE FIRST: 2 COLUNAS EM SMARTPHONES) */
.gallery-section {
  padding: 2rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.photo-teaser-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  cursor: pointer;
}

@media (min-width: 640px) {
  .photo-teaser-card {
    height: 380px;
  }
}

.photo-teaser-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-glow);
  box-shadow: 0 15px 35px rgba(255, 0, 85, 0.25);
}

.photo-teaser-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Hover and active interactions for explicit photos */
.photo-teaser-card:hover .photo-teaser-img {
  filter: brightness(1.05);
  transform: scale(1.03);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 4, 10, 0.4) 0%, transparent 40%, rgba(7, 4, 10, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  pointer-events: none;
}

.photo-tag {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  color: #ff99bb;
  text-transform: uppercase;
}

.photo-lock-center {
  align-self: center;
  text-align: center;
  pointer-events: auto;
}

.lock-icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(255, 0, 85, 0.8);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.6);
}

.peek-btn-text {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* SUBSCRIPTION / VIP ACCESS SECTION */
.subscription-section {
  padding: 3rem 0;
}

.vip-card-main {
  background: linear-gradient(145deg, rgba(30, 12, 40, 0.9) 0%, rgba(15, 6, 20, 0.95) 100%);
  border: 2px solid var(--primary-pink);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 0, 85, 0.25), 0 20px 50px rgba(0, 0, 0, 0.9);
}

.vip-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-pink), var(--accent-gold), transparent);
}

.single-message-heading {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  font-weight: 900;
}

.vip-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  text-align: left;
}

.vip-feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.vip-feature-icon {
  color: var(--primary-pink);
  font-size: 1.3rem;
  margin-top: 2px;
}

.vip-feature-text h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.vip-feature-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-display-box {
  margin: 2rem 0 1.5rem;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.current-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.taxa-unica-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* PACKS SECTION */
.packs-section {
  padding: 2.5rem 0;
}

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

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pack-card:hover {
  border-color: rgba(255, 0, 85, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.pack-card.popular-pack {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(160deg, rgba(35, 22, 10, 0.7) 0%, rgba(15, 9, 20, 0.9) 100%);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.2rem 0.8rem;
  border-bottom-left-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pack-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pack-details {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pack-details li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pack-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.pack-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.btn-pack {
  width: 100%;
  padding: 0.8rem;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
}

/* PRIVATE CALLS SECTION */
.private-calls-section {
  padding: 2.5rem 0 4rem;
}

.private-call-box {
  background: linear-gradient(135deg, rgba(20, 10, 30, 0.8) 0%, rgba(10, 5, 15, 0.9) 100%);
  border: 1px solid rgba(138, 43, 226, 0.4);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: 0 0 35px rgba(138, 43, 226, 0.2);
}

.call-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.call-option-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.call-option-card:hover, .call-option-card.selected {
  border-color: var(--accent-purple);
  background: rgba(138, 43, 226, 0.15);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.duration-tag {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.call-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold);
}

/* MODALS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 2, 6, 0.92);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--primary-pink);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 50px rgba(255, 0, 85, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.pix-qr-frame {
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius-md);
  display: inline-block;
  margin: 1.25rem 0;
}

.pix-qr-frame img {
  width: 180px;
  height: 180px;
  display: block;
}

.pix-code-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
  word-break: break-all;
  margin-bottom: 1rem;
}

.btn-copy-pix {
  width: 100%;
  padding: 0.9rem;
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

/* REAL-TIME TOAST NOTIFICATIONS */
.toast-container {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.sub-toast {
  background: rgba(15, 9, 20, 0.95);
  border: 1px solid var(--primary-pink);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8), 0 0 15px rgba(255, 0, 85, 0.3);
  backdrop-filter: blur(10px);
  animation: slideIn 0.4s ease forwards;
  max-width: 320px;
}

@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.9rem;
}

.toast-text {
  font-size: 0.8rem;
  color: #fff;
}

.toast-text span {
  color: var(--text-muted);
  display: block;
  font-size: 0.7rem;
}

/* STICKY FOOTER BAR FOR MOBILE */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 4, 10, 0.95);
  border-top: 1px solid rgba(255, 0, 85, 0.4);
  padding: 0.75rem 1rem;
  z-index: 400;
  backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
  .toast-container {
    bottom: 90px;
    left: 10px;
  }
  body {
    padding-bottom: 70px;
  }
}

/* FOOTER */
.site-footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 85px;
  right: 20px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50px;
  padding: 0.6rem 1.1rem 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
  transform: scale(1.06);
  background: #20ba5a;
  color: #ffffff;
}

.whatsapp-float i {
  font-size: 1.6rem;
}
