/* ===== VARIABLES ===== */
:root {
  --bg-color: #0f1013;
  --bg-lighter: #1b1c21;
  --primary-gold: #e2ba41;
  --primary-gold-hover: #c49e2a;
  --text-light: #f5f5f5;
  --text-muted: #a3a3a3;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  color: var(--text-light);
  background-color: var(--bg-color);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: var(--primary-gold);
  transition: var(--transition);
}

a:hover {
  color: var(--text-light);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-gold {
  color: var(--primary-gold);
}

.text-center {
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-gold:hover {
  background-color: var(--text-light);
  color: var(--bg-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(226, 186, 65, 0.2);
}

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

.btn-outline:hover {
  background-color: var(--primary-gold);
  color: var(--bg-color);
}

/* ===== HEADER & NAV ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(15, 16, 19, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  padding: 20px 0;
}

header.scrolled {
  padding: 12px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: 1px;
}

.logo span {
  color: var(--primary-gold);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.nav-links a:hover, 
.nav-links a.active {
  color: var(--primary-gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary-gold);
  font-size: 28px;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: 150px;
  padding-bottom: 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(to bottom, rgba(15,16,19,1) 0%, rgba(27,28,33,1) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, rgba(226, 186, 65, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(226, 186, 65, 0.1);
  color: var(--primary-gold);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(226, 186, 65, 0.2);
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 5px;
}

.stat-text {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 0;
  background-color: var(--bg-lighter);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-color);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255,255,255,0.02);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 186, 65, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.feature-icon {
  font-size: 40px;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-muted);
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 100px 0;
}

.content-wrapper {
  background-color: var(--bg-lighter);
  padding: 60px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255,255,255,0.05);
}

.content-wrapper h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--text-light);
}

.content-wrapper h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-gold);
}

.content-wrapper p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 17px;
}

.content-wrapper ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.content-wrapper li {
  color: var(--text-muted);
  margin-bottom: 10px;
  position: relative;
  font-size: 17px;
}

.content-wrapper li::before {
  content: '✓';
  color: var(--primary-gold);
  position: absolute;
  left: -20px;
  font-weight: bold;
}

/* ===== REGIONS SECTION ===== */
.regions {
  padding: 80px 0;
  background-color: var(--bg-lighter);
  border-top: 1px solid rgba(255,255,255,0.02);
}

.regions-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.region-tag {
  padding: 10px 20px;
  background-color: var(--bg-color);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 30px;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}

.region-tag:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  background-color: rgba(226, 186, 65, 0.05);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-gold-hover) 0%, var(--primary-gold) 100%);
  color: var(--bg-color);
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--bg-color);
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 500;
  color: rgba(15, 16, 19, 0.8);
}

.cta-section .btn {
  background-color: var(--bg-color);
  color: var(--primary-gold);
  font-size: 18px;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-section .btn:hover {
  background-color: var(--text-light);
  color: var(--bg-color);
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
  background-color: #0a0a0c;
  padding: 80px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-about p {
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 25px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-weight: 500;
}

.footer-contact-info a:hover {
  color: var(--primary-gold);
}

.footer-contact-info i {
  color: var(--primary-gold);
  font-size: 20px;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--text-light);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  color: white;
}

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

/* ===== ERROR PAGE ===== */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content h1 {
  font-size: 120px;
  font-weight: 900;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 20px;
}

.error-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.error-content p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero h1 { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-lighter);
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(255,255,255,0.05);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hero {
    padding-top: 120px;
  }
  
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 18px; }
  
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .stat-item {
    width: 40%;
  }
  
  .content-wrapper {
    padding: 30px 20px;
  }
  
  .cta-section h2 { font-size: 28px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { text-align: center; }
  .footer-contact-info { align-items: center; }
  .footer-about, .logo { text-align: center; }
}
