/* CSS Variables for easy customization */
: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;
}

/* Ensure full-height and flex layout so hero fills viewport */
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Reset & Base */
* {
  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;
}
/* Common button style */
.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 */
/* Added min-height so it always covers viewport minus header */
.hero {
  margin-top: 80px;
  padding: 120px 0 60px;
  text-align: center;
  background: url('https://cargos.site-oficial-com-desconto.com/assets/images/patternbg.webp') center center/cover;
  position: relative;
  min-height: calc(100vh/2); /* Adjusted to account for header height */
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  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);
}

/* VIP Call-to-Action Section */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-fire);
  text-align: center;
  min-height: calc(40vh);
}

.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;
}
/* Make the button more prominent */
.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;
}


/* 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%); }
}


#loadingIndicator {
  position: relative; /* or absolute, if needed */
  z-index: 3000; /* Already set */
  color: white;
}

/* Skeleton Loader Base */
.skeleton {
  background-color: #2a2a2e; /* A slightly lighter shade than your card-bg */
  margin-bottom: 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

/* Skeleton Animation */
.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(100%);
  }
}

/* Specific Skeleton for Plan Buttons */
.skeleton-plan {
  height: 40px; /* Adjust this height to simulate your button height */
  /* Optional: set width to a percentage if you want variation or fixed width */
  width: 100%;
}

#pixCode {
  background: #333;
  padding: 10px;
  white-space: pre-wrap;   /* Wrap lines and preserve formatting */
  word-break: break-all;    /* Break long words if needed */
  user-select: text;        /* Allow text to be selectable */
}

