@keyframes subtle-rotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(2deg);
  }
}




body {
  background: #000;
  margin: 0;
  min-height: 100vh;
  overflow-y: hidden; /* permite scroll en Y */
  display: flex;
  justify-content: center;
}

.wrapper {
  width: 390px;
  min-height: 100%;
  background-color: #000;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.fondo-redes{
    width: 100%;
    height: fit-content;
    min-height: 100vh;
    display: flex;
    position: absolute;
    align-items: center;
    z-index: 1;
    justify-content: space-between;
    
}

.cont-figura {
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  overflow: visible;
}

.figura {
  height: 120%;
  width: 150%;
  object-fit: fill;
  margin-left: -100px;
}

.texto {
  width: 35%;
  height: 100%;
  color: rgba(176, 176, 176, 0.387);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 10rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: -1;
}

.texto span {
  writing-mode: vertical-lr;
}

.titulo {
  color: white;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1;
  margin-top: -40px;
}

.saludo {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 2.4rem;
}
.link {
  font-size: 1.6rem;
  font-family: "Roboto";
  font-weight: 300;
}
.presentacion {
  font-size: 1.1rem;
  font-family: "Roboto";
  font-weight: 120;
}
.invitacion {
  margin: 0 auto;
  width: 60%;
  color: white;
  font-weight: bold;
  font-family: "Roboto";
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
}

/*DISEÑO DE LA TARJETA*/

.contenedor-tarjetas {
  width: 95%;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 auto;
  margin-top: 30px;
  flex: 1;
}
.tarjeta {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.423);
  display: flex;
  justify-content: center;
  border-radius: 15px;
  transition: transform .2s ease-in;
}
.iconos {
  width: 70px;
  height: 70px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
background: radial-gradient(
  circle at center,
  #3fbfea 10%,     /* Azul base contrastante */
  #ff4e87 45%,     /* Rosa vibrante */
  #FF9437 80%      /* Naranja cálido que resalta */
);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2); /* opcional */
  
}
.iconos img {
  width: 100%;
  height: 100%;
  
}
a{
    text-decoration: none;
}
a:hover{

}

a:visited {
    color: white;

}
.tarjeta:hover{
    transform: scale(0.9);
}
.nombre {
  width: 100%;
  color: white;
  font-family: "Montserrat";
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  
}
