/* style.css - Premium Dark & Gold Theme for Autada GoldPro */

:root {
  --bg-dark: #0f1115;
  --bg-card: rgba(25, 28, 36, 0.7);
  --gold-primary: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --gold-hover: #f1c40f;
  --text-main: #f8f9fa;
  --text-muted: #a0aec0;
  --border-light: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.05), transparent 25%),
                    radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.04), transparent 25%);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(15, 17, 21, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
   posición: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gold-text {
  color: var(--gold-primary);
  text-shadow: 0 0 15px var(--gold-glow);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  margin-top: 60px;
  background: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #0f1115 10%, rgba(15, 17, 21, 0.8) 50%, rgba(15, 17, 21, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 1.5rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), #b38b1d);
  color: #000;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(212, 175, 55, 0.3);
}

.btn-telegram {
  background: #2AABEE;
  color: white;
  border: none;
  box-shadow: 0 10px 20px rgba(42, 171, 238, 0.2);
}

.btn-telegram:hover {
  background: #229ED9;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(42, 171, 238, 0.3);
}

/* Base Sections */
.section {
  padding: 6rem 5%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  border-radius: 16px;
  transition: 0.4s ease;
}

.feature-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: -webkit-linear-gradient(var(--gold-primary), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

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

/* Steps / Workflow */
.workflow-box {
  background: rgba(25, 28, 36, 0.5);
  border-left: 4px solid var(--gold-primary);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 0 12px 12px 0;
}

.workflow-box h3 {
  color: var(--gold-primary);
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 5%;
  border-top: 1px solid var(--border-light);
  margin-top: 4rem;
}

.footer-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

/* Content Pages */
.page-header {
  padding: 8rem 5% 4rem;
  background: linear-gradient(to bottom, rgba(212,175,55,0.05), transparent);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.content-wrapper h2 {
  color: var(--gold-primary);
  margin: 2rem 0 1rem;
}

.content-wrapper p, .content-wrapper li {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.content-wrapper ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .btn-group { flex-direction: column; }
  .nav-links { display: none; }
}
