* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dorado: #c9a84c;
  --blanco: #f5f2ea;
  --fondo: #0a0a0a;
}

/* Imagen de fondo a pantalla completa con velo oscuro para legibilidad */
body {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background:
    linear-gradient(rgba(8, 12, 12, 0.65), rgba(8, 12, 12, 0.8)),
    url("../images/proximamente.webp") center / cover no-repeat;
  background-color: var(--fondo);
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blanco);
}

.contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  text-align: center;
}

.titulo {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.titulo::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  margin: 1.25rem auto 0;
  background: var(--dorado);
}

.whatsapp {
  display: inline-flex;
  transition: transform 0.25s ease;

  & img {
    width: 4rem;
    height: 4rem;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
  }

  &:hover {
    transform: scale(1.08);
  }

  &:active {
    transform: scale(0.97);
  }

  &:focus-visible {
    outline: 3px solid var(--dorado);
    outline-offset: 4px;
    border-radius: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp {
    transition: none;

    &:hover,
    &:active {
      transform: none;
    }
  }
}
