.bloque {
  max-width: 300px;
  width: 100%;        
  border-radius: 12px;
  padding: 5px 25px 5px 25px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; /* Asegura que el padding no afecte el tamaño total */
margin-left: 10px;
}
      /* cs Cards */

   .cs-card {
            position: relative;
            background: linear-gradient(135deg, rgba(10, 10, 20, 0.9), rgba(20, 15, 25, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
  width: 32%;        
    display: inline-block;
        }

        .cs-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #00f0ff, #ff0066);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .cs-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 40%, rgba(0, 240, 255, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .cs-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 240, 255, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 240, 255, 0.1);
        }

        .cs-card:hover::before {
            transform: scaleX(1);
        }

        .cs-card:hover::after {
            opacity: 1;
        }
  .cs-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #fff;
            position: relative;
            z-index: 2;
        }
 .cs-role {
            font-size: 0.9rem;
            color: #00f0ff;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }
.cs-desc {
            color: #888;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

         .cs-movie {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            padding: 0.3rem 0.8rem;
            background: rgba(255, 0, 102, 0.2);
            border: 1px solid #ff0066;
            color: #ff0066;
            z-index: 2;
        }
@media (max-width:992px){
    .cs-card{
  margin-top: 1em;
    flex:0 0 100%;
    width:100%;
    margin-left: 0;
    }
}
.input_field {
  position: relative;
  height: auto;
  margin-top: 5px;
  width: 200px;
}
.input_field input,
.button button {
  height: 100%;
  width: auto;
  outline: none;
  border: none;
  border-radius: 8px;
}
.input_field input {
  padding: 0 15px;
  border: 3px solid #2471a3;
}
.capt_input input:focus {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.button button {
  background: #2471a3;
  color: #fff;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
}
.button button:active {
  transform: scale(0.99);
}
.button.disabled {
  opacity: 0.6;
  pointer-events: none;
}
/*Título*/
.download {
  box-sizing: border-box;
  padding: 10px;
  border: none;
  font: normal 18px / normal "Warnes", Helvetica, sans-serif;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  white-space: pre;
  text-shadow: 0 0 10px rgb(24, 23, 24, 1), 0 0 20px rgba(24, 23, 24, 1),
    0 0 30px rgba(24, 23, 24, 1), 0 0 40px #727272, 0 0 70px #727272,
    0 0 80px #4e4e4e, 0 0 100px #2b2b2b;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  width: 100%;

}
/* Estilo para el título cuando se le hace hover */
.download:hover {
  text-shadow: 0 0 10px rgb(73, 73, 73), 0 0 20px rgb(56, 56, 56),
    0 0 30px rgb(48, 48, 48), 0 0 40px #5c5c5c, 0 0 70px #000000,
    0 0 80px #000000, 0 0 100px #000000;
}
.download a{
  color: #fff;
}