/* ===== RESET Y CONFIGURACIÓN BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY - Centrado y fondo oscuro ===== */
body {
  font-family: "Poppins", sans-serif;
  background-color: #121212; /* Negro carbón */
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px 20px 20px; /* Reducido padding superior */
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.container {
  text-align: center;
  max-width: 500px;
  width: 100%;
}

/* ===== LOGO ===== */
.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  border: 3px solid #20930b; /* Borde verde neón */
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

/* ===== NOMBRE DE MARCA ===== */
.brand-name {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff; /* Verde neón */
  text-shadow: 0 0 10px rgba(38, 255, 0, 0.5);
}

/* ===== SUBTÍTULO O DESCRIPCIÓN ===== */
.brand-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: #b0b0b0;
  margin-bottom: 40px;
}

/* ===== CONTENEDOR DE ENLACES ===== */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== BOTONES DE ENLACE ===== */
/* ===== BOTONES DE ENLACE MODIFICADOS ===== */
.link-button {
  display: flex;
  align-items: center;
  justify-content: center; /* Centra el texto */
  padding: 18px 20px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 400;
  border: 2px solid #1c800b;
  border-radius: 20px; /* Bordes más redondeados como la foto */
  background-color: #111111; /* Fondo oscuro sólido */
  transition: all 0.3s ease;
  position: relative; /* Necesario para posicionar el icono */
  min-height: 70px;
}

/* Estilo para los iconos pegados a la izquierda */
.link-button i {
  position: absolute;
  left: 15px; /* Ajusta qué tan pegado al margen izquierdo quieres el logo */
  font-size: 1.8rem; /* Tamaño más grande para el logo */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Efecto hover */
.link-button:hover {
  background-color: rgba(57, 255, 20, 0.1);
  box-shadow: 0 0 25px rgba(44, 206, 15, 0.4);
  transform: translateY(-2px);
}

/* Botón prioritario WhatsApp */
.link-button.primary {
  border-color: #176909;
}

/* Ajuste opcional para centrar bien el texto si el logo es muy grande */
.link-button span {
  width: 100%;
  text-align: center;
}

/* ===== EFECTO HOVER EN BOTONES ===== */
.link-button:hover {
  background-color: rgba(57, 255, 20, 0.1);
  box-shadow: 0 0 25px rgba(38, 178, 13, 0.6);
  transform: translateY(-3px);
  border-color: #90ee90; /* Verde más suave */
}

/* ===== BOTÓN PRIORITARIO (WhatsApp) ===== */
.link-button.primary {
  border-color: #186e09;
  animation: pulse 2s infinite;
}

.link-button.primary:hover {
  background-color: rgba(57, 255, 20, 0.15);
}

/* ===== ANIMACIÓN DE PULSO PARA WHATSAPP ===== */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(36, 167, 12, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(57, 255, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}

/* ===== RESPONSIVE - Ajustes para móviles ===== */
@media (max-width: 480px) {
  .brand-name {
    font-size: 2rem;
  }
  .container {
    margin-top: 5px;
  }
  body {
    padding-top: 0px; /* Casi pegado al borde superior en celulares */
  }

  .link-button {
    font-size: 1rem;
    padding: 16px 25px;
  }

  .logo {
    width: 100px;
    height: 100px;
  }
}
