@font-face {
  font-family: 'Raleway';
  src: url('Raleway-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
  box-sizing: border-box;
  font-size: clamp(14px, 1.5vw, 18px);
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* Fondo con animación de gradiente tipo “olas” */
.gradient-background {
  background:
    linear-gradient(60deg, #f9f4e7, #fffdfb, #cfb47e),
    linear-gradient(-60deg, #cfb47e, #f9f4e7, #fffdfb);
  background-size: 200% 200%;
  background-blend-mode: overlay;
  animation: wave1 25s ease-in-out infinite,
             wave2 35s ease-in-out infinite;
}

@keyframes wave1 {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 50% 75%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50% 25%; }
  100% { background-position: 0% 50%; }
}

@keyframes wave2 {
  0%   { background-position: 100% 50%; }
  20%  { background-position: 75% 25%; }
  40%  { background-position: 50% 75%; }
  60%  { background-position: 25% 25%; }
  80%  { background-position: 0% 75%; }
  100% { background-position: 100% 50%; }
}

body {
  color: #2f2936;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Raleway', sans-serif;
  text-align: center;
}

.container h1 {
  margin: 0 0 1em;
  line-height: 1.5;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 2rem);
}

.logo {
  max-width: 80%;
  width: 25vw;
  height: 40vw;
}

/* Estilo para el enlace de contacto */
.contact {
  margin-top: 0.5em;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
}

/* CONTACTO FIJO AL PIE */
.contact {
  position: absolute;
  bottom: 60px;                /* distancia desde el pie */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: clamp(0.75rem, 1.2vw, 1rem);
}

.contact a {
  color: #2f2936;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.7);
  transition: border-color 0.3s ease;
}

.contact a:hover {
  border-color: gray;
}

/* Tamaño y estilo del icono */
.email-icon {
  width: 1.2em;
  height: auto;
  display: block;