@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Orbitron:wght@400;700&display=swap');

:root {
  --primary: #FFC107;
  /* Amarillo marca GeoGo */
  --primary-glow: rgba(255, 193, 7, 0.4);
  --bg-deep: #020617;
  /* Even darker for cinematic feel */
  --bg-card: rgba(15, 39, 65, 0.4);
  /* More transparent glass */
  --text-main: #ffffff;
  --text-dim: #94a3b8;
  --border-glass: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(to bottom, rgba(2, 6, 23, 0.3), rgba(2, 6, 23, 0.8)),
    url('https://images.unsplash.com/photo-1549401053-57a530eb73f0?q=80&w=2070&auto=format&fit=crop');
  /* Vibrant Yellow Taxi */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent, var(--bg-deep) 80%);
  pointer-events: none;
}

.hero {
  text-align: center;
  z-index: 10;
  animation: fadeInDown 1.5s ease-out;
}

.hero h1 {
  font-size: clamp(3.5rem, 12vw, 7rem);
  margin-bottom: 0.5rem;
  letter-spacing: 5px;
  /* Reduced for better neon look */
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px var(--primary-glow));
  font-weight: 800;
}

.taxi-icon {
  font-size: 5rem;
  color: var(--primary);
  filter: drop-shadow(0 0 20px var(--primary-glow));
  margin-bottom: 20px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: #0F2741;
  /* Contrast with yellow */
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--primary);
}

/* Sections */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

/* Footer & Contact */
footer {
  padding: 50px 0;
  border-top: 1px solid var(--border-glass);
  background: #000;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.legal-footer {
  font-size: 0.6rem;
  color: #1e293b;
  /* Very close to background */
  margin-top: 60px;
  text-align: center;
  transition: color 0.5s;
}

.legal-footer:hover {
  color: #64748b;
}

.legal-footer p {
  margin: 5px 0;
}

/* Utilities */
.glow-text {
  text-shadow: 0 0 10px var(--primary-glow);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}