* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: 'Inter', sans-serif;
  background: url("bg.png") center center / cover no-repeat;
  color: #e6e6e6;
}

.overlay {
  height: 100%;
  background: rgba(5, 8, 12, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  max-width: 1200px;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1.2s ease-out;
}

.texto-destacado {
    font-size: 1.4rem;
}	
	
/* .logo { */
  /* width: 800px; */
  /* margin-bottom: 2rem; */
  /* opacity: 0.95; */
/* } */

.logo {
  max-width: 100%;    
  height: auto;       
  width: 800px;       
  margin-bottom: 2rem;
  opacity: 0.95;
}

.manifesto {
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

/* .links { */
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* justify-content: center; */
  /* gap: 1.2rem 2rem; */
/* } */

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 1rem;    /* ✅ Reducido de 2rem a 1rem en móvil */
}

.links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  opacity: 0.8;
  transition: all 0.25s ease;
}

.links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 480px) {
  .links {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* ✅ Dos columnas iguales */
    gap: 0.8rem;
    max-width: 280px;               /* ✅ Controlas el ancho */
    margin: 0 auto;                 /* ✅ Centrado */
  }
  
  .links a {
    padding: 0.4rem;               /* ✅ Área táctil más grande */
  }
}