
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  
}
.card {
    display: flex;
    background-color: rgba(17, 25, 40, 0.3);
    
    backdrop-filter: blur(16px) saturate(180%);
    border-radius: 12px;
    padding: 20px;
    width: 80%;
    max-width: 1000px;
    max-height: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Sombra más visible pero aún sutil */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
  }
  

  .image-container {
    width: 700px; /* Establece el ancho de la imagen */
    height: 300px; /* Establece la altura de la imagen */
    margin-right: 20px;
    overflow: hidden; /* Evita desbordes */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Sombra más visible */
    border-radius: 12px; /* Bordes redondeados */
  }
  
  
  
  .image-container img {
    
    width: 100%;
    height: 100%; /* Esto hace que la imagen ocupe todo el espacio del contenedor */
    object-fit: contain; /* Esto mantiene la proporción de la imagen, recortando el exceso si es necesario */
    border-radius: 12px; /* Redondea las esquinas de la imagen */
  }
  

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
}



p {
  color: #fff;
  
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.tag {
  background-color: #a8dcff;
  color: #000000;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.button-wrapper {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.btn {
  padding: 12px 24px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  border-radius: 24px;
  cursor: pointer;
  border: none;
  font-weight: bold;
  color: black;
}

.outline {
  background: transparent;
  color: rgba(0, 212, 255, 0.9);
  border: 2px solid rgba(0, 212, 255, 0.6);
  transition: all 0.3s ease;
}

.outline:hover {
  transform: scale(1.125);
  color: #fff;
  border-color: #fff;
}

.fill {
/*   background: rgba(0, 212, 255, 0.9); */
  color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 212, 255, 0.6);
  filter: drop-shadow(0);
  font-weight: bold;
  transition: all 0.3s ease;
}

.fill:hover {
  transform: scale(1.125);
  border-color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.125));
}



  /*Ajuste responsivo para dispositivos moviles 900px*/
  /*Ajuste responsivo para dispositivos moviles 900px*/
  /*Ajuste responsivo para dispositivos moviles 900px*/

    @media only screen and (max-width: 900px) {

      h1{
        font-size: 1.5rem;
   
      }
      .card-container {
        display: flex;
        
        justify-content: center;
        align-items: center;
        padding: 10px;
        
      }
    


      .card {
          display: flex;
          flex-direction: column; /* Cambia la dirección a columna para móviles */
          background-color: rgba(17, 25, 40, 0.25);
          backdrop-filter: blur(16px) saturate(180%);
          border-radius: 12px;
          padding: 20px;
          width: 80%;
          max-width: 400px;
          max-height: 1300px;
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Sombra más visible pero aún sutil */
          justify-content: center; /* Centra horizontalmente */
          align-items: center; /* Centra verticalmente */
        }
        
      
        .image-container {
          margin: auto;
          
          width: 360px; /* Establece el ancho de la imagen */
          height: 200px; /* Establece la altura de la imagen */
          margin-right: 20px;
          overflow: hidden; /* Evita desbordes */
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Sombra más visible */
          border-radius: 12px; /* Bordes redondeados */
        }
        
        
        
        .image-container img {
          
          width: 100%;
          height: 100%; /* Esto hace que la imagen ocupe todo el espacio del contenedor */
          object-fit: cover; /* Esto mantiene la proporción de la imagen, recortando el exceso si es necesario */
          border-radius: 12px; /* Redondea las esquinas de la imagen */
        }
        
      
      .content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
      }
      
      
      
      p {
        color: #fff;
        
      }
      
      .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        justify-content: center;
        align-items: center;
      }
      
      .tag {
        background-color: #a8dcff;
        color: #000000;
        font-size: 12px;
        padding: 5px 10px;
        border-radius: 20px;
        font-weight: 600;
         
      }
      
      .button-wrapper {
        margin-top: 20px;
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;

      }
      
      .btn {
        
        padding: 10px 10px;
        font-size: 0.8rem;
        letter-spacing: 2px;
        border-radius: 24px;
        cursor: pointer;
        border: none;
        font-weight: bold;
        color: black;
      }
      
      .outline {
        background: transparent;
        color: rgba(0, 212, 255, 0.9);
        border: 2px solid rgba(0, 212, 255, 0.6);
        transition: all 0.3s ease;
      }
      
      .outline:hover {
        transform: scale(1.125);
        color: #fff;
        border-color: #fff;
      }
      
      .fill {
      /*   background: rgba(0, 212, 255, 0.9); */
        color: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(0, 212, 255, 0.6);
        filter: drop-shadow(0);
        font-weight: bold;
        transition: all 0.3s ease;
      }
      
      .fill:hover {
        transform: scale(1.125);
        border-color: rgba(255, 255, 255, 0.9);
        filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.125));
      }
      

    }





    /*Ajuste responsivo para dispositivos moviles 430px*/
  /*Ajuste responsivo para dispositivos moviles 430px*/
  /*Ajuste responsivo para dispositivos moviles 430px*/

  @media only screen and (max-width: 430px) {

    h1{
      font-size: 1.5rem;
 
    }
    .card-container {
      display: flex;
      
      justify-content: center;
      align-items: center;
      padding: 10px;
      
    }
  


    .card {
        display: flex;
        flex-direction: column; /* Cambia la dirección a columna para móviles */
        background-color: rgba(17, 25, 40, 0.25);
        backdrop-filter: blur(16px) saturate(180%);
        border-radius: 12px;
        padding: 20px;
        width: 85%;
        max-width: 400px; /* Ancho de la tarjeta */
        max-height: 1300px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Sombra más visible pero aún sutil */
        justify-content: center; /* Centra horizontalmente */
        align-items: center; /* Centra verticalmente */
      }
      
    
      .image-container {
        margin: auto;
        
        width: 320px; /* Establece el ancho de la imagen */
        height: 200px; /* Establece la altura de la imagen */
        margin-right: 20px;
        overflow: hidden; /* Evita desbordes */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Sombra más visible */
        border-radius: 12px; /* Bordes redondeados */
      }
      
      
      
      .image-container img {
        
        width: 100%;
        height: 100%; /* Esto hace que la imagen ocupe todo el espacio del contenedor */
        object-fit: contain; /* Esto mantiene la proporción de la imagen, recortando el exceso si es necesario */
        border-radius: 12px; /* Redondea las esquinas de la imagen */
      }
      
    
    .content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
    }
    
    
    
    p {
      color: #fff;
      
    }
    
    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
      justify-content: center;
      align-items: center;
    }
    
    .tag {
      background-color: #a8dcff;
      color: #000000;
      font-size: 12px;
      padding: 5px 10px;
      border-radius: 20px;
      font-weight: 600;
       
    }
    
    .button-wrapper {
      margin-top: 20px;
      display: flex;
      gap: 10px;
      justify-content: center;
      align-items: center;

    }
    
    .btn {
      
      padding: 10px 10px;
      font-size: 0.8rem;
      letter-spacing: 2px;
      border-radius: 24px;
      cursor: pointer;
      border: none;
      font-weight: bold;
      color: black;
    }
    
    .outline {
      background: transparent;
      color: rgba(0, 212, 255, 0.9);
      border: 2px solid rgba(0, 212, 255, 0.6);
      transition: all 0.3s ease;
    }
    
    .outline:hover {
      transform: scale(1.125);
      color: #fff;
      border-color: #fff;
    }
    
    .fill {
    /*   background: rgba(0, 212, 255, 0.9); */
      color: rgba(255, 255, 255, 0.95);
      border: 2px solid rgba(0, 212, 255, 0.6);
      filter: drop-shadow(0);
      font-weight: bold;
      transition: all 0.3s ease;
    }
    
    .fill:hover {
      transform: scale(1.125);
      border-color: rgba(255, 255, 255, 0.9);
      filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.125));
    }
    

  }