/* ── CSS Variables ── */
:root {
  --primary-color: #ff4d4d;
  --secondary-color: #ff8533;
  --bg-color: #121212;
  --text-color: #f5f5f5;
  --card-bg: #1e1e1e;
  --card-hover: #2a2a2e;
  --accent-color: #ff6b6b;
  --gradient-fire: linear-gradient(45deg, #ff4d4d, #ff8533);
  --font-family: 'Montserrat', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  user-select: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ── */
header {
  background: var(--gradient-fire);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-selector select {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.btn {
  padding: 8px 15px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.login-btn {
  background-color: var(--bg-color);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: #222;
  transform: translateY(-2px);
}

.vip-btn {
  background-color: transparent;
}

/* ── Hero Section ── */
.hero {
  margin-top: 80px;
  padding: 120px 0 60px;
  text-align: center;
  background: url('https://gatafoguenta.com/assets/images/aboutme.webp') center center/cover;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-fire);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.6);
}

.cta-button2 {
  display: inline-block;
  background: var(--gradient-fire);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
  transition: all 0.3s ease;
}

.cta-button2:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.6);
}

/* ── About Section ── */
.about {
  padding: 80px 0;
  background-color: rgba(30, 30, 30, 0.8);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  display: block;
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-fire);
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.about-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.feature-item {
  background-color: var(--card-bg);
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: var(--card-hover);
  transform: translateY(-3px);
}

.feature-item i {
  color: var(--primary-color);
  margin-right: 8px;
}

/* ── Most Watched Section ── */
.mais-vistos {
  padding: 20px 0;
  background-color: var(--bg-color);
  text-align: center;
}

.mais-vistos h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 10px;
}

.mais-vistos h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-fire);
}

/* ── Testimonials Section ── */
.testimonials,
.previews {
  padding: 80px 0;
  background-color: var(--bg-color);
  text-align: center;
}

.testimonials h2,
.previews h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.testimonials h2::after,
.previews h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-fire);
}

.testimonial-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .testimonial-grid,
  .preview-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
  }

  .testimonial-grid .testimonial-card,
  .preview-grid .preview-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
}

.testimonial-card,
.preview-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover,
.preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-card img,
.preview-card img {
  width: 100%;
  display: block;
}

/* ── FAQ Section ── */
.faq {
  padding: 80px 0;
  background-color: rgba(30, 30, 30, 0.8);
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.faq h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-fire);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card-bg);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--card-hover);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 800px;
}

/* ── VIP Call-to-Action Section ── */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-fire);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.cta-section .cta-button {
  background-color: white;
  color: white;
  border: 2px solid white;
  padding: 18px 35px;
}

.cta-section .cta-button:hover {
  background-color: var(--bg-color);
  color: white;
}

/* ── Footer ── */
footer {
  background-color: #0a0a0a;
  padding: 50px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  text-align: center;
}

.footer-logo img {
  height: 50px;
  cursor: pointer;
}

.footer-links {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-links h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-fire);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

/* ── Social Links ── */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #1e1e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-fire);
  transform: translateY(-3px);
}

.social-links img {
  width: 50%;
  display: block;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #888;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .hero h1 { font-size: 2rem; }
  .hero p  { font-size: 1rem; }

  .about-container { flex-direction: column; }
  .feature-list    { grid-template-columns: 1fr; }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ── Terms / Privacy pages ── */
main.container {
  margin-top: 100px !important;
  padding: 20px !important;
}

main.container h1,
main.container h2,
main.container h3,
main.container p {
  margin-bottom: 20px !important;
  line-height: 1.6 !important;
}

main.container > div {
  margin-bottom: 40px !important;
}

/* ── Plan Loading Indicator ── */
#loadingIndicator {
  position: relative;
  z-index: 3000;
  color: white;
}

.skeleton {
  background-color: #2a2a2e;
  margin-bottom: 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% { transform: translateX(200%); }
}

.skeleton-plan {
  height: 40px;
  width: 100%;
}

/* ── Pix Code ── */
#pixCode {
  background: #333;
  padding: 10px;
  white-space: pre-wrap;
  word-break: break-all;
  user-select: text;
}

/* ── VIP User Counters ── */
.vip-user-counters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 0;
  color: #fff;
  background: linear-gradient(135deg, #333, #1d1d1d);
}

.vip-user-counters span {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.online {
  background-color: #4CAF50;
  box-shadow: 0 0 8px #4CAF50;
}

.status-dot.offline {
  background-color: #9e9e9e;
}

.counter-text,
.members-text {
  font-size: 14px;
  font-weight: 500;
}

.counter-text  { color: #d4d4d4; }
.members-text  { color: #9e9e9e; }

/* ── Stripe badge icon ── */
.icon {
  display: inline-block;
  vertical-align: middle;
}

.icon.small {
  width: auto;
  height: 1.5rem;
}

.fa-arrow-left::before {
  font-family: "Font Awesome 6 Free";
}