*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --azul: #00AEEF;
    --rojo: #ED1A3B;
    --gris: #2E3840;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

a {
    text-decoration: none;
    color: black;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
}

.container {
    margin: 0 auto;
    max-width: 1140px;
    min-width: 300px;
}

.button__red {
    background-color: var(--rojo);
    font-size: 25px;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: .5s ease;
}

.button__red:hover {
    background-color: #be1730;
    transition: .1s ease;
}

.button__blue {
    background-color: var(--azul);
    font-size: 25px;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
}

.text__red {
    color: var(--rojo);
}

.text__blue {
    color: var(--azul);
}

.hide {
    display: none !important;
}

.show {
    display: flex !important;
}

.w-100 {
    width: 100%;
}

/* ##### Navbar Responisve ##### */
.nav__responsive {
    padding: 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1;
    background-color: white;
}

.nav__responsive i {
    font-size: 20px;
    cursor: pointer;
}

.nav__responsive--menu {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 350px;
    width: 100%;
    background: rgba(46, 56, 64, 0.59);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(46, 56, 64, 0.3);
    margin-left: -20px;
    padding: 20px 0;
}

.nav__responsive--menu a {
    padding: 10px 0;
    color: white;
    font-size: 17px;
}

.nav__responsive img {
    height: 30px;
    width: auto;
}

@media screen and (max-width: 1023px) {
    .nav__responsive {
        display: flex;
    }
}

/* ##### Header ##### */

.hero {
    height: 100vh;
    width: 100%;
    background-image: url('resources/images/imgNewLanding/hero.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero__container {
    background-color: rgba(0, 0, 0, .6);
    height: 100%;
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 4fr 1fr;
    grid-template-areas: "nav nav nav nav"
                         "texto texto img img"
                         "smas smas smas smas";
}

@media screen and (max-width: 1023px) {
    .hero__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }
}

.navbar {
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-area: nav;
}

.navbar__logo {
    display: block;
    min-height: 20px;
    max-height: 45px;
}

.navbar__menu {
    display: flex;
    align-items: baseline;
}

.navbar__menu--item {
    color: white;
    margin-left: 20px;
    font-size: 17px;
}

.navbar__menu--button {
    color: white;
    margin-left: 20px;
    font-size: 17px;
    padding: 10px 15px;
    background-color: var(--azul);
    border-radius: 10px;
    transition: .5s ease;
}

.navbar__menu--button:hover {
    background-color: #0390c4;
    transition: .1s ease;
}

@media screen and (max-width: 1023px) {
    .navbar {
        display: none;
    }
}

.hero__texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    font-size: 40px;
    color: white;
    grid-area: texto;
}

.text__blue {
    color: var(--azul);
    font-weight: bold;
}

.hero__texto button {
    margin-top: 10px;
}

.blitz__texto {
    color: var(--rojo);
    font-size: 70px;  
    font-weight: bold;  
}

@media screen and (max-width: 1023px) {
    .hero__texto {
       padding: 0 15px;
       text-align: center;
    }

    .hero__texto button {
        margin-top: 20px;
        margin-left: 0 !important;
    }
}

.hero__more {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 300;
    grid-area: smas;
}

.hero__more p {
    margin-bottom: 5px;
}

.hero__image {
    grid-area: img;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image img {
    max-height: 250px;
    width: auto;
}

@media screen and (max-width: 1023px) {
    .hero__image {
        display: none;
    }
}

.button__registro__hero {
    margin: 0 auto;
}

/* ##### Marcas #####*/
.marcas {
    padding: 60px 0;
}

.marcas__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.marcas__container img {
    height: 55px;
    width: auto;
    filter: grayscale(100%);
    transition: .5s ease;
    margin: 10px;
}

.marcas__container img:first-of-type {
    height: 80px;
}

.marcas__container img:hover {
    filter: grayscale(0%);
    transition: .5s ease;
}

@media screen and (max-width: 1023px) {
    .marcas {
        width: 100%;
    }

    .marcas__container {
        flex-direction: column;
    }

    .marcas__container img {
        margin-bottom: 25px;
    }

    .marcas__container img:last-of-type {
        margin-bottom: 0;
    }
}

/* ##### HP ##### */

.hp {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-areas: "himg htextos";
    overflow: hidden;
}

.hp__container {
    grid-area: htextos;
    display: flex;
    align-items: center;
}

.hp__textos {
    background-color: #005195;
    width: 100%;
    padding: 50px 30px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    color: white;
}

.hp__textos p {
    font-size: 20px;
}

.hp__img {
    grid-area: himg;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hp__img img {
    height: 200px;
    width: auto;
}

@media screen and (max-width: 767px) {
    .hp {
        gap: 20px;
        grid-template-columns: 100%;
        grid-template-rows: 1fr 1fr;
        grid-template-areas: "himg" 
                             "htextos";
    }
}

/* ##### Descripción ##### */

.descripcion {
    padding: 80px 0;
    background-color: #F1F2F2;
}

.descripcion p {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    padding: 0 30px;
}

/* ##### Conoce Blitz ##### */

.conoce__blitz {
    padding: 70px 0;
}

.conoce__container {
    height: 100%;
    width: 100%;
    display: grid;
    justify-content: center;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 50px 1fr;
    grid-template-areas: "ctitulo ctitulo"
                         "youtube checks";
}

@media screen and (max-width: 767px) {
    .conoce__container {
        gap: 10px;
        grid-template-columns: 100%;
        grid-template-rows: 100px 1fr auto;
        grid-template-areas: "ctitulo"
                             "youtube"
                             "checks";
    }
}

.ctitulo {
    grid-area: ctitulo;
    text-align: center;
    font-size: 30px;
}

.cyoutube {
    grid-area: youtube;
}

@media screen and (max-width: 1023px) {
    .cyoutube {
        width: 100%;
        height: 300px;
    }
}

.conocer__listado {
    grid-area: checks;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .conocer__listado {
        padding: 15px;
    }
}

.lista__titulo {
    font-size: 27px;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .lista__titulo {
        text-align: center;
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .lista__titulo {
        margin-bottom: 0;
    }
}

.lista__titulo span {
    color: var(--rojo);
    font-weight: 500;
    font-size: 30px;
}

.lista__item {
    font-size: 25px;
    margin-bottom: 10px;
}

/* ##### Beneficios ##### */

.beneficios {
    background-color: #F1F2F2;
    display: grid;
    grid-template-columns: 55% 45%;
    grid-template-rows: 1fr;
    grid-template-areas: "binfo bimage";
}

@media screen and (max-width: 1023px) {
    .beneficios {
        grid-template-columns: 100%;
        grid-template-areas: "binfo";
    }
}

.beneficios__texto {
    grid-area: binfo;
    padding: 30px 50px;
}

.beneficios__titulo {
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 50px;
}

.beneficios__beneficios {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .beneficios__beneficios {
        justify-content: center;
    }
}

.beneficio {
    
    margin-bottom: 20px;
    width: 170px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .beneficio {
        width: 100%;
    }
}

.beneficio i {
    font-size: 35px;
    color: var(--azul);
    margin-bottom: 20px;
}

.beneficio p {
    text-align: center;
}

.beneficio__titulo {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 7px;
}

.beneficios__img {
    grid-area: bimage;
}

@media screen and (max-width: 1023px) {
    .beneficios__img {
        display: none;
    }
}

.img__cont {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.beneficios__img img {
    height: 100%;
} 

/* ##### Situacion ##### */
.situacion {
    padding: 80px 0;
    overflow: hidden;
}

.situacion__p1 {
    font-size: 25px;
    color: var(--azul);
    margin-bottom: 15px;
    font-weight: bold;
}

.situacion__p2 {
    font-size: 30px;
    margin-bottom: 15px;
    
}

.situacion__p2 span {
    color: red;
    font-weight: 500;
}

.situacion__p3 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 50px;
    margin-top: 100px;
    margin-left: 80px;
    text-align: center;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .situacion__p1,
    .situacion__p2 {
        margin: 0 20px;
    }
}


.situacion__p3 span {
    color: var(--rojo);
}

@media screen and (max-width: 767px) {
    .situacion__p1 {
        text-align: center;
    }

    .situacion__p2 {
        text-align: center;
    }

    .situacion__p3 {
        text-align: center;
        margin-left: 0;
    }
}

.situacion__beneficio--left {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.situacion__beneficio--left:last-of-type {
    margin-bottom: 0;
}

.situacion__beneficio--img {
    height: 400px;
    width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .situacion__beneficio--img {
        display: none;
    }
}

.situacion__beneficio--img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.situacion__beneficio--textol {
    margin-left: 50px;
    margin-right: 50px;
    font-size: 23px;
}

.situacion__beneficio--textor {
    margin-left: 50px;
    margin-right: 50px;
    font-size: 23px;
}

.situacion__beneficio--right {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 50px;
}

.bene__titulo {
    margin-bottom: 20px;
    color: var(--rojo);
    font-size: 30px;
    font-weight: 700;
}

.bene__titulo-a {
    margin-bottom: 20px;
    color: var(--azul);
    font-size: 30px;
    font-weight: 700;
}

/* ##### Tecnología y servicios*/
.servicio {
    background-image: url('resources/images/imgNewLanding/contact2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.servicio__container {
    padding: 80px 0;
     
    width: 100%;
    height: 100%;
}

.servico_textcont {
    margin-left: 50px;
    width: 50%;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, .6);

}

@media screen and (max-width: 767px) {
    .servico_textcont {
        width: 100%;
        margin-left: 0;
    }
}

.servicio__container h3 {
    font-size: 35px;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--gris);
    font-weight: bold;
    margin-bottom: 15px;
}

.servicio__container p {
    font-size: 30px;
}

/* ##### Contacto ##### */

.contacto {
    background-image: url('resources/images/imgNewLanding/contact.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 30px 100px;
    display: grid;
    gap: 200px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "cformulario clinks";
}

@media screen and (max-width: 1023px) {
    .contacto {
        padding: 30px;
        gap: 30px;
        grid-template-columns: 100%;
        grid-template-rows: repeat(2, auto);
        grid-template-areas: "cformulario"
                             "clinks";
    }
}

.form__cont {
    grid-area: cformulario;
    padding: 30px;
    background: rgba( 0, 0, 0, 0.8 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3px );
    -webkit-backdrop-filter: blur( 3px );
    border-radius: 10px;
    color: white;
}

.form__cont h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--blanco);
}

.form__section {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form__section label {
    margin-bottom: 5px;
    color: var(--blanco);
}

.form__section input {
    border-radius: 5px;
    border: none;
    padding: 5px 10px;
}

textarea {
    border-radius: 5px;
    border: none;
    padding: 5px;
    resize: vertical;
}

input[type=submit] {
    padding: 10px;
    background-color: #609966;
    color: white;
    border-radius: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #40513B;
}

.form__links {
    grid-area: clinks;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

@media screen and (max-width: 767px) {
    .form__links {
        padding: 0;
    }
}

.form__links--container {
    padding: 30px;
    background: rgba( 0, 0, 0, 0.8 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3px );
    -webkit-backdrop-filter: blur( 3px );
    border-radius: 10px;
    color: white;
}

.form__links h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--blanco);
}

.form__section--alt {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.form__section--alt label {
    margin-bottom: 5px;
    color: white;
}

.form__section--alt input {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border: none;
    padding: 5px 10px;
}

.form__section--alt button, .form__section--alt a {
    cursor: pointer;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: none;
    padding: 3px 0;
    background-color: #609966;
    color: var(--blanco);
    text-align: center;
}

.form__section--alt button:hover, .form__section--alt a:hover {
    background-color: #40513B;
}

input[type="text"]:disabled, input[type="email"]:disabled {
    background: white;
    color: black;
}

/* ##### Web Services ##### */

.webservices { 
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: "wtextos wimage";
}

@media screen and (max-width: 767px) {
    .webservices {
        grid-template-columns: 100%;
    }
}

.webservices__img {
    grid-area: wimage;
    overflow: hidden;
    height: 30.0rem;
}

@media screen and (max-width: 767px) {
    .webservices__img {
        display: none;
    }
}

.webservices__img > img {
    height: 100%;
    object-fit: cover;
}

.webservices__textos {
    background-image: url(https://img.freepik.com/vector-gratis/fondo-geometrico-abstracto-estructura-metalica_52683-59421.jpg?w=740&t=st=1678295897~exp=1678296497~hmac=e38ed8417ad891e037f5fd501dbaae116e0e01608688e8d0f04a3595e31cc276);
    padding: 3.0rem;
    grid-area: wtextos;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .webservices__textos {
        text-align: center;
    }
}

.wtexto {
    font-size: 17px;
    color: var(--rojo);
    font-weight: 500;
    margin-bottom: 15px;
}

.wtexto1 {
    font-size: 50px;
    color: var(--azul);
    font-weight: 700;
    margin-bottom: 15px;
}

.wtexto2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.wbutton {
    background-color: var(--rojo);
    color: white;
    border-radius: 15px;
    padding: 15px 20px;
    border: none;
    width: 150px;
}

.wbutton:hover {
	background-color: #d61a37;
	cursor: pointer;
}

@media screen and (max-width: 767px) {
    .wbutton {
        display: block;
        width: 100%;
    }
}

/* ##### Footer ##### */

.footer {
    background-color: var(--gris);
    padding: 70px 0 0 0;
}

.footer__container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 70px;
    grid-template-areas: "fdescripcion fmenu fsociales"
                         "copy         copy  copy";
}

@media screen and (max-width: 767px) {
    .footer__container {
        gap: 20px;
        grid-template-columns: 100%;
        grid-template-rows: repeat(4, auto);
        grid-template-areas: "fdescripcion"
                             "fmenu"
                             "fsociales"
                             "copy";
    }
}

.footer__desc {
    grid-area: fdescripcion;
    display: flex;
    flex-direction: column;
}

.footer__desc img {
    height: 130px;
    width: 130px;
    margin-bottom: 10PX;
}

.footer__desc p {
    color: white;
    font-weight: 100;
}

.footer__menu {
    grid-area: fmenu;
    display: flex;
    flex-direction: column;
    color: white;
}

.footer__menu p {
    text-align: center;
    font-size: 25px;
    margin-bottom: 30px;
    font-weight: bold;
}

.footer__menu--menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer__menu--menu a {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    transition: .5s ease;
}

.footer__menu--menu a:hover {
    color: var(--rojo);
    transition: .5s ease;
}

.footer__sociales {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__sociales p {
    color: white;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 30px;
}

.sociales a {
    color: white;
    font-size: 25px;
    margin-right: 15px;
    transition: 1s ease;
}   

.sociales a:last-of-type {
    margin-right: 0;
}

.sociales a:nth-child(1):hover {
    color: #1877F2;
    transition: .5s ease;
}

.sociales a:nth-child(2):hover {
    color: #0A66C2;
    transition: .5s ease;
}

.footer__copy {
    grid-area: copy;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__copy p {
    text-align: center;
    color: white;
}

@media screen and (max-width: 767px) {
    .footer__desc {
        padding: 15px;
        align-items: center;
        text-align: center;
    }

    .footer__copy {
        padding: 20px 0;
    }
}

/* ##### Callbacks ##### */

.callback {
    background: rgba(255, 255, 255, 0.33);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.1px);
    -webkit-backdrop-filter: blur(6.1px);
    border: 1px solid rgba(255, 255, 255, 0.2);

    position: fixed;
    z-index: 9;
    width: auto;
    right: 0;
    bottom: 0;
    display: flex;
    margin-bottom: 20px;
    margin-right: 20px;
    padding: 10px;
    font-size: 18px;
}

.callback i {
    color: green;
    margin-right: 10px;
}

/* ##### Modals ##### */

/* Modal usuario */
.modal__hero {
    background-image: url('https://images.unsplash.com/photo-1556155092-490a1ba16284?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80');
    background-position: 0% 75%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
}

.modal__hero--container {
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(255,255,255,0) 32%); 
    height: 100%;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: end;
}

.modal__title {
    font-size: 24px;
    color: white;
}

.card__form {
    background-color: none !important;
}

.card__question {
    margin-bottom: 10px;
}

.q_yn label {
    margin-right: 15px;
}

.q_yn label:last-of-type {
    margin-right: 0;
}

.no_distribuidor {
    margin-top: 10px;
}

.no_distribuidor > input {
    margin-left: 5px;
}

@media screen and (max-width: 767px) {
    .no_distribuidor > input {
        margin-left: 0px;
        margin-top: 5px;
    }
}

/* Formulario de registro */

.modal__section--registro {
    padding: 20px;
}

.form__registro {
    margin-top: 5px;
}

.form__registro--label {
    margin-bottom: 10px;
    font-size: 17px;
}

.form__sect {
    margin: 20px 0;
}

.form__sect select, .form__inp {
    padding: 5px 10px;
    border: .5px solid grey;
    background-color: white;
    border-radius: 10px;
}

.form__sect--inputs {
    display: flex;
    flex-wrap: wrap;
}

.form__sect--inputs input:nth-child(1) {
    flex-grow: 3;
}

.form__sect--inputs input:nth-child(2) {
    margin: 0 5px;
    width: 112px;
}

@media screen and (max-width: 767px) {
    .form__sect--inputs {
        display: flex;
        flex-direction: column;
    }

    .form__sect--inputs input:nth-child(2) {
        margin: 5px 0;
        width: 100%;
    }
}

.card__botones {
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "vacio botones bcerrar";
}

.card__botones--proceso {
    grid-area: botones;
    display: flex;
}

.card__botones--proceso button {
    grid-area: bcerrar;
    background-color: var(--azul);
    font-size: 17px;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: .5s ease;
}

.card__botones--proceso button:hover {
    background-color: #0390c4;
}

.card__botones--proceso button:nth-child(2){
    margin: 0 5px;
}

.card__botones--cerrar {
    grid-area: bcerrar;
    background-color: var(--rojo);
    font-size: 17px;
    padding: 7px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: .5s ease;
    
    margin-left: auto;
}

.card__botones--cerrar:hover {
    background-color: #be1730;
}

/* Sección de contratos */
.modal__section--contratos,
.modal__section--dominio {
    padding: 20px;
}

.contratos__botones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contratos__botones button {
    background-color: var(--azul);
    font-size: 17px;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: .5s ease;
}

.contratos__botones button:hover {
    background-color: #0390c4;
}

.contratos__contratos {
    height: 500px;
    margin: 20px 0;
    border-radius: 10px;
}

.contratos__check {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contratos__check input {
    margin-right: 5px;
    height: 15px;
    width: 15px;
}

.contratos__inputs,
.dominio__inputs {
    margin-top: 20px;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inusuario,
.inclaveo {
    padding: 5px 10px; 
    border-radius: 10px;  
    border: 1px solid grey;

}

.dominio__title > h3 {
    text-align: center;
}

.dominio__video {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button__continuar {
    background-color: var(--azul);
    font-size: 17px;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: .5s ease;
}

.button__continuar:hover {
    background-color: #0390c4;
}

.button__finalizar {
    background-color: #7AA874;
    font-size: 17px;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: .5s ease;
    margin: 20px auto;
    width: 200px;
}

.button__finalizar:hover {
    background-color: #63995c;
}

.button__fin {
    display: flex;
    justify-content: center;
}

.manual__descarga {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.manual__descarga button {
    background-color: #688a6a;
    font-size: 17px;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: .5s ease;
    margin: 20px auto;
    width: 400px;
}

.manual__descarga button:hover {
    background-color: #405f42;
}

.card__progress {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card__botones progress {
    width: 400px;
}

.contratos__title {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
