/* FUENTES */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,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');

body {
    background-color: #F2F2F2;
}

/* LOGO */
.img-logo {
    height: 50px;
}

.custom-nav {
    padding-top: 2rem !important;
}

.navbar-inside-custom {
    border-radius: 15px;
    background-color: rgb(78, 84, 88);
    padding-left: 5px;
    padding-right: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .navbar-inside-custom {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.9);
    }

}

.nav-item {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
}

.active {
    font-weight: bolder;
}

/* BOTONES */
.btn-login {
    background-color: #fff;
    color: #143E5C;
    width: 120px;
    height: 42px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    margin-right: 5px;
    transition: .4s ease-in-out;
}

.btn-login:hover {
    transition: .4s ease-in-out;
    background-color: #B5D0E1;
    color: #000;
}

.btn-demo {
    background-color: #143E5C;
    color: #E9E8ED;
    width: 130px;
    height: 42px;
    border-radius: 8px;
    border: none;
    transition: .4s ease-in-out;
}

.btn-demo:hover {
    background-color: #0D293D;
    transition: .4s ease-in-out;
}

.demo-btn {
    text-decoration: none !important;
}

.get-started {
    background-color: #143E5C;
    color: #E9E8ED;
    width: 140px;
    height: 45px;
    border-radius: 8px;
    border: none;
    margin-right: 5px;
    transition: .4s ease-in-out;
}

.get-started:hover {
    background-color: #0D293D;
    transition: .4s ease-in-out;
}

.get-demo {
    background-color: #E9E8ED;
    color: #143E5C;
    width: 140px;
    height: 45px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    transition: .4s ease-in-out;
}

.get-demo:hover {
    transition: .4s ease-in-out;
    background-color: #B5D0E1;
    color: #000;
}

/* MAIN */

.title {
    padding-top: 6rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.title-demo {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 45px;
}

.text-demo {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 18px;
    width: 65%;
    text-align: center;
    margin-top: 1rem;
}

/* CONTACT */
.contact-form-demo {
    padding: 2rem;
}

.contact-form {
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    padding: 1.8rem;
    background-color: rgb(244, 244, 244);
}

.padd-inside {
    padding: 2rem;
}

.form-input-contact {
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgb(228, 229, 229);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 15px;
    padding: 0.4rem;
    color: rgb(52, 56, 58);
    transition: .1s ease;
}

.form-input-contact:focus {
    border: 1px solid rgb(20, 62, 92);
    transition: .1s ease-in-out;
    outline: 1px solid rgb(20, 62, 92);
}

.label-custom {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 15px;
}

.label-mail-contact {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 15px;
    color: rgb(52, 56, 58);
}

.label-send-form {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 14px;
    color: rgb(52, 56, 58);
}

.terms {
    color: #3B82F6;
    font-weight: 600;
}

.send-data {
    border-radius: 25px;
    height: 45px;
    width: 100%;
    margin-left: 5px;
    margin-right: 5px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    border: none;
    background: #143E5C;
}

/* Oculta el checkbox nativo */
.form-check-input {
    opacity: 0;
    position: absolute;
}

/* Estilo base del checkbox personalizado */
.form-check-label {
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
}

/* Caja del checkbox */
.form-check-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 21px;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

/* Checkmark (invisible por defecto) */
.form-check-label::after {
    content: "✓";
    position: absolute;
    left: 5px;
    top: -1px;
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Estilo cuando está marcado */
.form-check-input:checked+.form-check-label::before {
    background-color: #143E5C;
    border-color: #143E5C;
}

.form-check-input:checked+.form-check-label::after {
    opacity: 1;
}

/* Estilo al hacer hover */
.form-check-input:hover+.form-check-label::before {
    border-color: #143E5C;
}

/* Estilo al estar deshabilitado */
.form-check-input:disabled+.form-check-label {
    opacity: 0.6;
    cursor: not-allowed;
}

.item-demo {
    display: flex;
    align-items: baseline;

}

.icon-demo {
    height: 33px;
    margin-right: 1.3rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.icon-demo>.bx {
    padding: .5rem;
}

.title-demo-side {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 20px;
}

.text-demo-side {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 15px;
}

.software-logos {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: row;
    padding-bottom: 1.3rem;
    padding-top: 1rem;
}

.divider {
    border-top: 1px solid #C4C6C7 !important;
    width: 95%;
    margin-bottom: 10px;
}

.solutions {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px !important;
    color: #6D7E8A;
    margin-bottom: 0;
    padding-bottom: 0;
    width: 250px;
}

.info-extra-cards-items {
    display: flex;
    align-items: baseline;
    justify-content: space-around;
    flex-direction: row;
    padding-bottom: 5rem;
}

.card {
    width: 250px;
    background-color: #F2F2F2;
    border: none;
    display: flex;
    align-items: center !important;
    justify-content: baseline;
}

.card-body {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text-info-extra {
    font-weight: 500;
    color: #3B82F6;
    cursor: pointer;
}

.title-extra {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
    height: 25px;
    text-align: center;
}

.text-extra {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #4E5458;
    letter-spacing: -0.5px;
    height: auto;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

.icon-demo-extra {
    height: 33px;
    width: 33px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    margin-bottom: 15px;
}

.icon-demo-extra>.bx {
    padding: .5rem;
}

.terms {
    text-decoration: none;
}

/* FOOTER */
.text-footer {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px !important;
    color: #6D7E8A;
}

.text-item-footer {
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px !important;
    color: #6D7E8A !important;
    margin-bottom: 0;
    padding-bottom: 0;
}

.title-footer {
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
}

.footer-final {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #6D7E8A !important;
    font-size: 13px;
}

footer {
    border-top: 1px solid #E4E5E5;
}

/* MEDIA QUERYS */
@media (max-width: 456px) {
    .software-logos {
        width: 100%;
    }
    .divider {
        width: 80%;
    }
}

@media (max-width: 576px) {

    .nav-footer {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 768px) {
    .text-footer {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .padd-inside {
        margin-bottom: 4rem !important;
    }

    .title-demo {
        font-size: 40px;
    }

    .title {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    .text-demo {
        font-size: 16px;
        width: 95%;
    }
}


@media (max-width: 992px) {
    .padd-inside {
        padding: 1rem;
    }
}


@media (max-width: 1200px) {
    .card {
        margin-bottom: 3rem;
    }

    .contact-form-demo {
        padding: 0;
    }
    .info-extra-cards-items {
        padding-bottom: 3rem;
    }
}


@media (max-width: 1400px) {

}