body {
    font-family: 'inter', sans-serif !important;
}
h1 {
    font-family: 'inter', sans-serif;
    font-weight: 600;
}
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: dimgrey;
}
.logo-cabezal{
    width: 50%;
    height: auto;
}
.navbar {
    z-index: 1000;
}
.barra-destacado{
    height: 30px;
    width: auto;
}
.fondo-degradado{
    background: rgb(181,10,4);
    background: linear-gradient(180deg, rgba(181,10,4,1) 31%, rgba(255,8,69,1) 100%);
}
.fondo-degradado-gris{
    background: rgb(43,43,43);
    background: linear-gradient(180deg, rgba(43,43,43,1) 31%, rgba(142,142,142,1) 100%);
}
.imagen-fondo{
    background: url(/img/programador-oscuro.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.imagen-fondo-servicios{
    background: url(/img/task-tablero.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 30px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  @media (prefers-reduced-motion: reduce) {
    .form-control {
      transition: none;
    }
  }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0;
  }
  .form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057;
  }
  .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #fbc2b3;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(244, 98, 58, 0.25);
  }
  .form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
  }
  .form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
  }
  .form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
  }
  .form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
  }
  .form-control::placeholder {
    color: #6c757d;
    opacity: 1;
  }
  .form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
  }
.linea-vertical{
    height: 100px;
    width: auto;
    margin-bottom: 30px;
}
.btn-gradient {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
    background-color: transparent;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-gradient:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    padding: 2px; /* Grosor del borde */
    background: linear-gradient(45deg, #ff416c, #ffa72b); /* Degradado del borde */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    transition: background 2s ease-in-out;
}

.btn-gradient:hover:before {
    background: linear-gradient(45deg, #ffa72b, #ff4b2b); /* Mantén el degradado al hacer hover */
}
.btn-gradient:hover {
    color: white; /* Cambia el color del texto al hacer hover */
}
.footer-degus{
    background-color: #222222;
}
.marco{
    background-color: rgba(22, 22, 22, 0.25);
}