:root {
  --bg-color: rgba(0, 0, 0, 0.884);
  --border-color: #ffffff;
  --button-color: #ffffff;
  --button-hover-color: #3d3b3c;
  --font-color: #3d3b3c;
  --font-hover-color: #ffffff;  
}
  
html {
  background-color: rgba(0, 0, 0, 0.884); 
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  width: 100%; 
  justify-content: center; 
  overflow-y: scroll;
  background-image: url("../img/fondosashua.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

h5, h4, h3, h2, h1 {
  color:var(--font-hover-color); 
  margin-bottom: 16px; 
  text-align: center;  
  display:block; 
  width:100%;}

  .container {
    margin: 0 auto;
    padding: 0 16px;    
  }

.container .profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;  
  overflow: hidden;
  position: relative;
  display: flex; /*agregamos display flex*/
  margin-left: auto; /* Empuja el elemento hacia el centro horizontalmente */
  margin-right: auto; /* Empuja el elemento hacia el centro horizontalmente */
  margin-top: 30px;
}

.container .profile-pic img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.container .content .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0px;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 30px; 
  
}

.container .content .video iframe {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
}




/* pantalla grande */
@media (orientation: landscape) {
  html { 
    display: flex; 
    flex-direction: row; 
  }
  .btn-link {
    position: relative;
    display: flex; 
    justify-content: center;
    background-color:rgba(0, 0, 0, 0.2); 
    color:#fff; 
    font-weight: 550; 
    line-height: 24px;
    width: 544px; 
    margin-top: 20px;
    border: 2px solid #CE55FF; 
    text-align: center;
    border-radius: 20px; 
    
  }
  .btn-link span{
    Position: absolute;
    top: -12px;
    left: 29px;
    background-color: #CE55FF;
    color: #fff;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .btn-link .icon {
    position: absolute;
    font-size: 25px;
    top: 19px;
    right: 32px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #CE55FF;
    cursor: pointer;
  }

  
  h3 {
    font-size: 40px;
    margin-bottom: 2px;
  }
  h4 {
    margin-bottom: 30px;
  }
  a {text-decoration: none!important;}

 .btn-link-comprar {
    position: relative;
    display: flex; 
    justify-content: center;
    background-color:#ec0404; 
    color:#fff; 
    font-weight: 550; 
    line-height: 24px;
    width: 244px;
    border: 2px solid #ffff; 
    text-align: center;
    border-radius: 20px; 
    margin-left: auto;
    margin-right: auto;
    
  }


}





  /* pantalla celular */
@media (orientation: portrait) {
  .btn-link {
    position: relative;
    display: flex; 
    justify-content: center;
    background-color:rgba(0, 0, 0, 0.2); 
    color:#fff; 
    font-weight: 550; 
    line-height: 24px; 
    border: 2px solid #CE55FF; 
    margin-top: 20px;
    text-align: center; 
    border-radius: 20px;
    
  }

  .btn-link span{
    Position: absolute;
    top: -18px;
    left: 13px;
    background-color: #CE55FF;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .btn-link .icon {
    position: absolute;
    font-size: 15px;
    top: 20px;
    right: 28px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #CE55FF;
  }

  a {
    text-decoration: none!important; 
    font-size: 15px; 
    text-align: center;}

  h1 {font-size: 4.0em;}
  h2 {font-size: 3.5em;}
  h3 {
    font-size: 30px;
    margin-bottom: 6px;
  }
  h4 {
    margin-bottom: 30px;
  }
  .container .profile-pic {
    width: 130px;
  height: 130px;
     }

     .btn-link-comprar {
      position: relative;
      display: flex; 
      justify-content: center;
      background-color:rgba(0, 0, 0, 0.2); 
      color:#fff; 
      font-weight: 550; 
      line-height: 24px;
      width: 244px;
      border: 2px solid #CE55FF; 
      text-align: center;
      border-radius: 20px; 
      margin-left: auto;
      margin-right: auto;
      
    }
}





/* Hover de botones */
.btn-link:hover {
  background-color:rgba(0, 0, 0, 0.2); 
  color:#CE55FF;
  border-color: #CE55FF;
}
.btn-link img{
  margin-right: 5px;
}
.btn-link:hover span{
  background-color:var(--button-color); 
  color:#CE55FF;
}

/* Animaciones */
@keyframes jump {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.jump {
  animation: jump 0.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.97);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.97);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.pulse {
  animation: pulse 1s ease-in-out infinite;
}




/* desplegable */
.content {
  display: none; /* ocultamos el contenido por defecto */
  
}

/* estilo del botón cuando está activo */
.btn-link.active {
  background-color:rgba(0, 0, 0, 0.2); 
  color:var(--font-hover-color);
  border-color: #CE55FF;
}

.btn-link.active span{
  background-color:#CE55FF; 
  color:var(--button-color);
}

/* estilo del contenido cuando está visible */
.content.visible {
  display: block;
}

.btn-link a p{
  color: #ec0404;
 }
 
 .btn-link:hover a p{
   color: var(--button-color);
  }
 
  .btn-link.active a p {
   color:var(--font-hover-color);
 }

 .btn-link-comprar:hover{
  
  background-color:#c50000; 
  color:#fff; 
  
  
}
