/* ===== Estilos base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #eaf2f7;
  overflow-x: hidden;
}

/* ===== Fondo tipo Traders LATAM ===== */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at top, #071a27 0%, #010a12 100%);
  animation: pulse-bg 10s infinite alternate;
  position: relative;
}

/* Efecto sutil de movimiento de luz */
@keyframes pulse-bg {
  0% {
    background: radial-gradient(circle at 30% 20%, #07243a 0%, #010a12 100%);
  }
  50% {
    background: radial-gradient(circle at 70% 80%, #03182a 0%, #010a12 100%);
  }
  100% {
    background: radial-gradient(circle at 50% 50%, #071a27 0%, #010a12 100%);
  }
}

/* ===== LOGO ===== */
.logo-container {
  margin-top: 30px;
  text-align: center;
}

.logo {
  font-size: 7rem;
  font-weight: 800;
  color: #00b3ff;
  text-shadow: 0 0 100px #00b3ff, 0 0 0.5px #00ff9f;
  letter-spacing: 8px;
}

.subtitulo {
  font-size: 1rem;
  color: #a8b8c5;
  letter-spacing: 2px;
}

/* ===== FRASE PRINCIPAL ===== */
.slogan {
  margin-top: 40px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #eaf2f7;
  text-shadow: 0 0 10px #00b3ff;
}

/* ===== BOTONES ===== */
.btn,
.btn-central {
  text-decoration: none;
  font-weight: 700;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.btn {
  background: linear-gradient(5deg, #00b3ff);
  padding: 5px 20px;
  color: #fff;
  font-size: 0.6rem;
  box-shadow: 0 0 10px #00b3ff, 0 0 3px #00ff9f;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #00ff9f, 0 0 10px #00b3ff;
}

.btn-central {
  background: linear-gradient(90deg, #00ff9f, #00b3ff);
  color: #fff;
  font-size: 2rem;
  padding: 10px 40px;
  margin-top: 10px;
  box-shadow: 0 0 25px #00b3ff, 0 0 10px #00ff9f;
}

.btn-central:hover {
  transform: scale(1.07);
}

/* ===== BOTONES SUPERIORES ===== */
.top-buttons {
  position: absolute;
  top: 20px;
  right: 10px;
  display: flex;
  flex-direction: row; /* <-- horizontal */
  gap: 6px; /* espacio entre botones */
}


/* ===== MENÚ INFERIOR ===== */
.menu {
  padding-bottom: 30px;
  font-size: 0.95rem;
}

.menu a {
  color: #a8b8c5;
  text-decoration: none;
  transition: 0.3s;
}

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

/* ===== Adaptación móvil ===== */
@media (max-width: 768px) {
  .logo { font-size: 2.5rem; }
  .slogan { font-size: 1.1rem; margin-top: 25px; }
  .btn-central { font-size: 1.1rem; padding: 14px 30px; }
  .top-buttons { top: 20px; right: 20px; gap: 8px; }
}
/* ===== IMAGEN LATERAL IZQUIERDA ===== */
.imagen-lateral {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 80px;
  margin-top: 40px;
}

.imagen-lateral img {
  width: 22vw;  /* proporcional al ancho de la pantalla */
  max-width: 320px;
  min-width: 200px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}
/* ===== IMAGEN LATERAL DERECHA ===== */
.imagen-lateral-derecha {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;  /* la alinea a la derecha */
  padding-right: 80px;
  margin-top: -240px;  /* sube la imagen para que quede a la misma altura */
}

.imagen-lateral-derecha img {
  width: 320px;       /* iguala el ancho exacto de la izquierda */
  height: 213px;      /* ajusta manualmente si no coincide la altura */
  object-fit: cover;  /* recorta si es necesario */
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}
