@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Montserrat;
    /*border: 1px solid red;*/
}
body{
    background-color: #a834eb;
}

header{
    text-align: center;
    background-color: #7c23b0;
    padding: 3%;
    height: auto;
    box-shadow: 2px 2px 5px rgba(0, 0, 5, 0.9);
}

header h1, h3{
    color: #fbd119;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* Sombra */
}

header .titulo{
    font-size: 40px;
    margin-bottom: 2%;
}
header h3{
    font-size: 20px;
}
main{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}
.mari{
    width: 50%;
    height: auto;
    margin-top: 2%;
    margin-left: 2%;
    
}
.mari iframe{
    width: 100%;
    height: 60vh;
}
.tiktok{
    width: 50%;
    height: auto;

}
.tiktok .info{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;

}
.tiktok .info img{
    width: 35%;
}

.publi .tooltip-container{
    margin-top: 3%;
    margin-left: 40%;
}
.tiktok .info p{
    font-size: 12px;
}
.tiktok h3{
    padding: 2.5%;
    text-align: center;
    margin-bottom: 5%;
}
.tiktok img{
    width: 35%;
    margin-top: 5%;
}
.tiktok button{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10%;

}
.tiktok a{
    text-decoration: none;
}
/* BOTON DE ACCION */
/* From Uiverse.io by cssbuttons-io */ 
button {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    touch-action: manipulation;
}
.shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}
.edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
    to left,
    #fbd119,
    hsl(62, 97%, 15%) 8%,
    hsl(62, 97%, 15%) 92%,
    hsl(55, 86%, 48%) 100%
    );
}   .front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: Inter, Montserrat;
    color: black;
    background: #fbd119;
    will-change: transform;
    transform: translateY(-4px);
    transition: transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

button:hover {
    filter: brightness(110%);
}

button:hover .front {
    transform: translateY(-6px);
    transition: transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

button:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

button:hover .shadow {
    transform: translateY(4px);
    transition: transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

button:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

button:focus:not(:focus-visible) {
    outline: none;
}
/* INSTAGRAM */
/* From Uiverse.io by vinodjangid07 */ 
.tooltip-container {
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 17px;
    border-radius: 10px;
    width: 15%;
}

.tooltip-container .tooltip img{
    width: 100%;
    border-radius: 8px;
}
.tooltip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    border-radius: 15px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
      inset -5px -5px 15px rgba(255, 255, 255, 0.1),
      5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  }
  
  .profile {
    background: #2a2b2f;
    border-radius: 10px 15px;
    padding: 10px;
    border: 1px solid #52382f;
  }
  
  .tooltip-container:hover .tooltip {
    top: -150px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .icon {
    text-decoration: none;
    color: #fff;
    display: block;
    position: relative;
  }
  .layer {
    width: 55px;
    height: 55px;
    transition: transform 0.3s;
  }
  .icon:hover .layer {
    transform: rotate(-35deg) skew(20deg);
  }
  .layer span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 15px;
    transition: all 0.3s;
  }
  
  .layer span,
  .text {
    color: #000;
    border-color: #cc2366;
  }
  
  .icon:hover.layer span {
    box-shadow: -1px 1px 3px #e6683c;
  }
  .icon .text {
    position: absolute;
    left: 50%;
    bottom: -5px;
    opacity: 0;
    font-weight: 500;
    transform: translateX(-50%);
    transition: bottom 0.3s ease, opacity 0.3s ease;
  }
  .icon:hover .text {
    bottom: -35px;
    opacity: 1;
  }
  
  .icon:hover .layer span:nth-child(1) {
    opacity: 0.2;
  }
  .icon:hover .layer span:nth-child(2) {
    opacity: 0.4;
    transform: translate(5px, -5px);
  }
  .icon:hover .layer span:nth-child(3) {
    opacity: 0.6;
    transform: translate(10px, -10px);
  }
  .icon:hover .layer span:nth-child(4) {
    opacity: 0.8;
    transform: translate(15px, -15px);
  }
  .icon:hover .layer span:nth-child(5) {
    opacity: 1;
    transform: translate(20px, -20px);
  }
  
  .instagramSVG {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: -webkit-linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    background: linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  }
  .user {
    display: flex;
    gap: 10px;
  }
  .img {
    width: 50px;
    height: 50px;
    font-size: 25px;
    font-weight: 700;
    border: 1px solid #e6683c;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }
  .name {
    font-size: 17px;
    font-weight: 700;
    color: #e6683c;
  }
  .details {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #fff;
  }
  .about {
    color: #ccc;
    padding-top: 5px;
  }
  

/* INSTRUCCIONES */
.instrucciones {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2%;
    text-align: center; /* Centrar texto */
}

.instrucciones ol {
    padding: 0; /* Eliminar padding de la lista */
}

.instrucciones ol li {
    font-size: 17px;
    color: #fff;
    margin-left: 15px;
    margin-bottom: 2px; /* Espaciado entre elementos */
    padding: 1%;
}

.instrucciones ol li a {
    text-decoration: none;
    color: #fbd119;
}

.card {
    width: 40%;
    height: 30vh; /* Cambiar a auto para adaptarse al contenido */
    display: flex;
    flex-direction: column; /* Cambiar a columna para apilar elementos */
    align-items: center; /* Centrar horizontalmente */
    justify-content: center; /* Centrar verticalmente */
    gap: 10px;
    padding: 20px; /* Aumentar padding para más espacio interno */
    border-radius: 10px;
    border: none;
    color: white;
    position: relative;
    cursor: pointer;
    font-weight: 900;
    transition-duration: .2s;
    background: #7c23b0;
    margin: 3%;
}
.card:before, .card:after {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    border-radius: 10px;
    background: linear-gradient(45deg, #7c23b0, #7c23b0, #7c23b0,#7c23b0, #7c23b0, #fbd119, 
    #0000ff, #fbd119,#fbd119);
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    animation: steam 20s linear infinite;
}
@keyframes steam {
    0% {
    background-position: 0 0;
    }

    50% {
    background-position: 400% 0;
    }

    100% {
    background-position: 0 0;
    }
}
.card:after {
    filter: blur(100px);
}
.adicion {
    width: 100%; /* Ajustar el ancho al 100% */
}

.adicion ul {
    list-style: none;
    padding: 0; /* Eliminar padding de la lista */
}
.adicion h2{
    color: #fbd119;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* Sombra */
}
.adicion ul li {
    font-size: 17px;
    margin-bottom: 15px; /* Espaciado entre elementos */
}
/* REDES SOCIALES */
.redes-s{
  text-align: center;
  color: #f09433;
  font-size: 40px;
  padding: 2%;
}
.redes{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5%;
}
.red {
  width: 70%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 25px 25px;
  gap: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
  border-radius: 12px;
  background-color: #7c23b0; /* Fondo sólido para el interior */
  border: 5px solid transparent; /* Borde transparente para el contorno */
  border-image: linear-gradient(
    90deg,
    #7c23b0,
    #d62976,
    #25f4ee,
    #1877f2,
    green,
    #7c23b0
  ); /* Degradado en el borde */
  border-image-slice: 1;
  animation: steam-border 5s infinite; /* Aplicar animación al borde */
}


/* for all social containers*/
.socialContainer {
  width: 68px;
  height: 68px;
  border-radius: 5px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
}
/* Tiktok*/
.containerTwo:hover {
  background-color: #25f4ee;
  transition-duration: 0.3s;
}
/* Facebook*/
.containerThree:hover {
  background-color: #1877f2;
  transition-duration: 0.3s;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: green;
  transition-duration: 0.3s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 25px;
}
.largeIcon {
  width: 27px; /* Ancho específico solo para el icono de TikTok */
}
.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* CTA */
.cta{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3%;
}
.cta a{
  text-decoration: none;
  
}
.cta .bn{
  width: 50%;
}
.cta strong{
  font-size: 30px;
}
/* Estilos generales para pantallas pequeñas (teléfonos) */
@media (min-width: 340px) and (max-width: 768px) {
  /* Ajustes generales para el cuerpo y elementos principales */
  /* Encabezado */
  header {
      padding: 5%;
  }
  header .titulo {
      font-size: 24px;
  }
  header h3 {
      font-size: 16px;
  }

  /* Contenedor principal */
  main {
    width: 100%;
      flex-direction: column;
  }
  
  /* Ajustes para el video y la sección TikTok en pantalla pequeña */
  .mari, .tiktok {
      width: 90%;
      margin: 0 auto;
      margin-top: 4%;
  }
  .mari iframe, .tiktok .img {
      width: 100%;
      height: auto;
  }
  .tiktok img{
      display:block;
    width: 30%;
    height: auto;
  }
  
  /* Botón de acción */
  .cta .bn {
      width: 80%;
  }
  .cta strong{
    font-size: 18px;
  }

  .tooltip-container{
    width: 24%;
  }

.publi{
  width: 70%;
  margin-right: 2%;
}
.publi button{
  width: 80%;
}

  /* Tarjetas de instrucciones */
  .instrucciones {
      flex-direction: column;
  }
  .card {
      width: 90%;
      height: auto;
      margin-bottom: 15px;
  }

  /* Redes sociales */
  .redes {
      flex-direction: column;
      gap: 10px;
  }
  .redes-s{
    font-size: 25px;
  }
  .red {
      width: 90%;
      height: auto;
      padding: 15px;
  }
  .socialContainer {
      width: 50px;
      height: 50px;
  }
  .socialSvg {
      width: 20px;
  }
}

/* Estilos para pantallas medianas (tabletas) */
@media (min-width: 768px) and (max-width: 1024px) {
  header .titulo {
      font-size: 32px;
  }
  header h3 {
      font-size: 18px;
  }

  /* Ajuste de los videos */
  .mari, .tiktok {
      width: 80%;
      margin: 0 auto;
  }

  /* Tarjetas de instrucciones */
  .instrucciones {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-around;
  }
  .card {
      width: 45%;
      height: auto;
  }

  /* Redes sociales */
  .redes {
      width: 100%;
  }
  .red {
      width: 90%;
  }
}

/* Estilos para pantallas grandes (desktops) */
@media (min-width: 1024px) {
  /* Ajuste de contenedor principal */
  main {
      flex-direction: row;
      gap: 20px;
      padding: 2%;
  }

  /* Tarjetas de instrucciones */
  .instrucciones {
      flex-direction: row;
      justify-content: center;
      gap: 20px;
  }
  .card {
      width: 35%;
      height: auto;
  }

  /* Redes sociales */
  .red {
      width: 70%;
      padding: 25px;
  }
  .socialContainer {
      width: 68px;
      height: 68px;
  }
  .socialSvg {
    width: 25px;
  }
}





