:root {
  --orange: #f46902;
  --text-light: #fefefe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;

  background-image: url('fondo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: var(--text-light);
  font-family: system-ui, sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Logo animado */
.logo-wrapper {
  animation: pinBounce 5s ease-in-out infinite;
  margin-bottom: 1.2rem;
}

@keyframes pinBounce {
  0%   { transform: translateY(0); }
  4%   { transform: translateY(-16px); }
  8%   { transform: translateY(0); }
  12%  { transform: translateY(-9px); }
  16%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}

.logo {
  width: 220px;
  max-width: 60vw;
  height: auto;
}

/* Título */
.brand {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--orange);
  text-shadow: 0 2px 0 #b44a00, 0 4px 10px rgba(0,0,0,0.8);
}

.subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d0d0d0;
}

/* Botones */
.links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;

  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);

  color: var(--text-light);
  backdrop-filter: blur(4px);

  transition: 0.2s ease;
}

.links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

/* Íconos */
.icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
