*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  width: 100%;
  overflow-x: hidden; 
}

body {
  background-image: url("../recursos/SERCOM WEB PROVISIONAL_Mesa de trabajo 1-02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: grid;
  place-items: center;
  position: relative;
  color: #fff;
}


.texto {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: 4px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
  padding-top: 300px;
  animation: respirar 2s ease-in-out infinite;
  white-space: nowrap;
  margin: 0;
}

.wink {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-left: 10px;
  opacity: 0.9;
}

@keyframes respirar {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}


.contacto {
  position: absolute;
  bottom: 40px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;

  max-width: 100%;
  padding: 0 16px;

  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
  font-size: 22px; 
}

.item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
  max-width: 100%;
}

.item span {
  white-space: nowrap; 
}


.icono {
  width: 32px;
  height: 32px;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .texto {
    padding-top: 220px;
    white-space: normal; 
    padding-left: 16px;
    padding-right: 16px;
  }

  .contacto {
    bottom: 24px;
    flex-direction: column;
    gap: 14px;
    font-size: 20px;
    padding: 0 12px;
  }

  .icono {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 380px) {
  .contacto {
    font-size: 18px;
  }

  .icono {
    width: 28px;
    height: 28px;
  }
}
