body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0f1a;
  color: white;
}

/* CONTENEDOR */
.container {
  width: 90%;
  margin: auto;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(11,15,26,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
  height: 120px;
}

/* MENU */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  color: white;
  text-decoration: none;
}

.menu a:hover {
  color: #00c2ff;
}

/* BOTONES */
.btn {
  background: #00c2ff;
  padding: 10px 20px;
  border-radius: 6px;
  color: black;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00c2ff, #0077ff);
  padding: 15px 30px;
  border-radius: 8px;
  color: black;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 194, 255, 0.4);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  overflow: hidden;
  background: radial-gradient(circle at center, #0b0f1a, #05080f);
}

.hero-content {
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
}

.hero p {
  font-size: 20px;
  opacity: 0.8;
}

/* MAPA */
.background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.mapa {
  position: absolute;
  width: 120%;
  opacity: 0.08;
  top: 0;
  left: -10%;
}

/* SERVICIOS */
.services {
  padding: 100px 0;
  text-align: center;
}

.subtitle {
  opacity: 0.7;
  max-width: 700px;
  margin: 10px auto 40px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: rgba(18, 24, 43, 0.8);
  padding: 30px;
  border-radius: 12px;
  width: 260px;
  text-align: left;
}

.card ul {
  margin-top: 15px;
  padding-left: 20px;
}

.card li {
  margin-bottom: 8px;
  font-size: 14px;
  opacity: 0.8;
}

/* STATS */
.stats {
  padding: 100px 0;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat h3 {
  color: #00c2ff;
  font-size: 40px;
}

/* CONTACTO */
.contact {
  padding: 100px 0;
  text-align: center;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 999;
}

.whatsapp img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

/* ANIMACIONES */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* TAGLINE CENTRAL */
.tagline {
  flex: 1;
  text-align: center;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  font-weight: 300;
}
}