/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0e0e0e;
  color: white;
  overflow-x: hidden;
}

/* Header */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-icon {
  height: 50px;
}

.nav-links a {
  margin: 0 1rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.login-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}

/* Hero */
.hero {
  padding-top: 120px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  flex-wrap: wrap;
}

.text-section {
  flex: 1;
  min-width: 300px;
}

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

.highlight {
  color: #00e0b8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.primary {
  background-color: #00e0b8;
  color: black;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.construction-box {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  width: fit-content;
}

/* Imagen de la derecha */
.image-section {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
}

/* Footer */
.footer-logo {
  margin-top: 4rem;
  text-align: center;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  margin: 0 1rem;
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}

/* Fondo decorativo */
.background-layers::before,
.background-layers::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  z-index: -1;
  opacity: 0.5;
}

.background-layers::before {
  top: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #00e0b8 0%, transparent 70%);
}

.background-layers::after {
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #007d6b 0%, transparent 70%);
}
