@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    /* outline: 0.5px solid white; */
}

:root {
    --color-letras: rgba(0, 0, 0, 0.781);

    --color-1-negro: #202324;
    --color-2-gris: #808283;
    --color-2-gris-disf: #80828379;
    --color-3: #6f5e57;
    --color-4: #997858;
    --color-5: #ab958d;
    --color-6-gris-claro: #acb1b4;
    --color-6-gris-claro-disf: #acb1b47c;
    --color-7: #c0ab95;

}

body {
    /* font-family: "PT Sans", sans-serif; */
    font-family: "Rubik", sans-serif;
    color: var(--color-letras);

}

/********************
-------NAVBAR--------
*********************/

.barra {
    min-height: 75px;
    z-index: 2;
    font-family: "Rubik", sans-serif;
}

.barra-logo {
    display: flex;
}

.barra-letras-logo {
    margin: 5px 0 0 10px;
}

.barra-imagen-logo {
    line-height: 75px;
}

.nombre {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 8px 0 5px 0;
}

.datos {
    font-size: 12px;
    margin: 0;
   
}

.item {
    padding: 0 8px;
}

.nav-link {
    color: var(--color-letras);
}

.nav-link:hover {
    font-size: 18px;
    color: var(--color-letras);
}

.dropdown-item {
    font-size: 16px;
    color: var(--color-letras);
    font-family: "Rubik", sans-serif;
}

.dropdown-item:hover {
    font-size: 18px;
    color: var(--color-letras);
}

/* =========================
====== PORTADA ======
    ======================== */

.background {
    width: 100%;
    max-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--color-letras);
}

.portada {
    background-image: url("../img/software-administrativo-venewin-1.jpeg");
    padding: 0.1px;
    font-family: "Rubik", sans-serif;
}

.portada-1 {
    max-width: 70%;
    height: 80px;
    margin: 50vh auto;
    text-align: center;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.6);
}

.portada .portada-titulo {
    font-size: 2.125rem;
    line-height: 80px;
}

.quienes-somos {
    min-height: 100vh;
    max-height: auto;
    width: 100%;
    background-image: url("../img/software-administrativo-venewin-6.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    font-family: "Rubik", sans-serif;
}

.quienes-blanco {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}

.quienes-somos .quienes-somos-h3 {
    font-size: 2rem;
    padding-top: 35px;
    padding-bottom: 25px;
}

.quienes-somos .quienes-somos-titulo {
    font-size: 1.5rem;
    font-style: italic;
    padding: 20px 5% 20px 10%;
    text-align: right;
}

.quienes-somos .quienes-somos-contenido {
    font-size: 1.25rem;
    padding-right: 20%;
    padding: 20px 20% 20px 10px;
}

/* =============================
    ==== SISTEMAS Y SERVICIOS ===
    ============================*/

.sistemas {
    /* background-color:rgb(68, 68, 68); */
    background-color: var(--color-2-gris-disf);
    height: auto;
}

.sistemas-titulo {
    padding-top: 100px;
    padding-bottom: 15px;
}

.sistemas-cards {
    padding-bottom: 35px;
}

.sistema-card-1,
.sistema-card-2 {
    background-color: rgba(255, 255, 255, 0.8);
    width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.6);
    display: flex;
    margin: 50px auto;
}

.card-1-img {
    max-width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.card-2-img {
    max-width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}


.card-cont {
    padding: 0;
    width: 60%;
    height: auto;
    text-align: center;
}

.card-cont-t {
    padding: 0;
    margin: 0 auto;
    width: 95%;
}

.card-cont-t1 {
    font-size: 1.7rem;
    font-style: bold;
    margin-top: 20px;
}

.card-cont-t2 {
    font-size: 1.2rem;
}

.card-cont-t3 {
    font-size: 0.9rem;
    margin: 15px auto;
    text-align: justify;
}

.card-cont-t4 {
    font-size: 1rem;
    padding: 5px 40px;
    text-align: justify;
}

.card-cont-precio {
    color: #1590b9;
    font-size: 1.5rem;
    font-style: bold;

}

.sistema-card-boton {
    margin: 15px auto;
}

.subcard {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    overflow: hidden;

}

.subcard-item {
    width: 45%;
    border-radius: 10px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.subcard-item-title {
    font-weight: bold;
}

.subcard-item-content {
    text-align: justify;
    font-size: 0.8rem;
    padding: 10px;
}


/* =============================
    ======== CONTACTANOS =======
    ============================*/

.contactanos {
    background-image: url("../img/software-administrativo-venewin-4.jpeg");
    padding-top: 100px;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.form {
    background: rgba(255, 255, 255, 0.8);
    width: 70%;
    margin: 30px auto;
    padding: 25px 20px 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    font-family: "Rubik", sans-serif;
}

.input {
    outline: none;
    width: 70%;
    padding: 8px 5px;
    display: block;
    margin: 0 auto 10px auto;
    border: 0.1px solid rgba(128, 128, 128, 0.7);
    border-radius: 5px;
    box-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.6);
}

.input,
.form__submit,
.form__name {
    font-family: "PT Sans", sans-serif;
    color: #626464ea;
}

.form__title {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 2rem;
}

.form__message {
    max-width: 70%;
    min-width: 70%;
    min-height: auto;
    max-height: 150px;
    margin: 0 auto 20px auto;
}

.form__submit {
    display: block;
    width: 35%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

/* =========================
=== NUESTROS CLIENTES ===
    ======================== */

.referencias {
    min-height: 50vh;
    max-height: auto;
    width: 100%;
    background-image: url("../img/software-administrativo-venewin-7.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Rubik", sans-serif;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 30px;
}

.referencias-blanco {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px 0;
}

.referencia-title {
    font-size: 1.75rem;
    font-weight: bold;
    padding-top: 25px;
    padding-bottom: 20px;
}

.referencia-card {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    overflow: hidden;
}

.referencia-cliente {
    width: 13%;
    height: 80px;
    box-shadow: 0 0 5px #023446b7;
    padding: 10px 10px;
    background: white;
    border-radius: 10px;
    margin: 15px auto;
}

.referencia-cliente:nth-of-type(even) {
    background-color: rgba(128, 128, 128, 0.6);
}

.cliente-nombre {
    font-size: 0.7rem;
    height: auto;
    text-justify: center;
    align-content: center;
    justify-content: center;
}

.cliente-contacto {
    font-size: 0.7rem;
    position: relative;
}

.cliente-numero {
    font-size: 0.6rem;
    position: relative;
}

/* =========================
    =========Footer=========
    ======================== */

.pie {
    height: auto;
    color: white;
    background-color: var(--color-1-negro);
    display: flex;
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
    font-family: "PT Sans", sans-serif;
}

.pie-venewin {
    width: 100%;
}


.pie-logo {
    margin: 14px 0 0 0;
}

.pie-nombre {
    width: 50%;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 5px 15px;
    text-align: left;
}

.pie-datos {
    width: 50%;
    font-size: 14px;
    margin: 5px 15px;
    text-align: left;
}

.pie-autor {
    width: 100%;
    font-size: 14px;
    margin: 30px 0 0 15px;
    text-align: right;
}

/* Responsive 1220px*/
@media screen and (max-width: 1220px) {
    .quienes-somos .quienes-somos-h3 {
        font-size: 1.7rem;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .quienes-somos .quienes-somos-titulo {
        font-size: 1.5rem;
        padding: 10px 5% 10px 5%;
    }

    .quienes-somos .quienes-somos-contenido {
        font-size: 1.25rem;
        padding: 5px 5% 5px 0;
    }

    .form {
        width: 80%;
        margin: 20px auto;
        padding: 20px 20px 30px;
    }

    .form__title {
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

    .input {
        outline: none;
        width: 80%;
        padding: 5px 5px;
    }

    .form__message {
        min-width: 80%;
        max-width: 80%;
        min-height: auto;
        max-height: 150px;
        margin: 0 auto 20px auto;
    }

}

/* Responsive 992 px*/
@media screen and (max-width: 992px) {
    .navbar-toggler-icon {
        color: var(--color-letras);
    }

    .portada .portada-titulo {
        font-size: 1.5rem;
        line-height: 80px;
    }

    .quienes-somos .quienes-somos-h3 {
        font-size: 1.5rem;
    }

    .quienes-somos .quienes-somos-titulo {
        font-size: 1.2rem;
    }

    .quienes-somos .quienes-somos-contenido {
        font-size: 1.05rem;
    }

    .card-1-img,
    .card-2-img {
        max-width: 30%;

    }

    .card-cont {
        width: 90%;
    }

    .referencia-cliente {
        width: 18%;
        height: 90px;
    }

    .cliente-nombre {
        font-size: 0.7rem;
    }

    .cliente-numero {
        font-size: 0.45rem;
    }

    .pie-datos {
        width: 60%;
    
    }
    .pie-nombre {
        width: 60%;
    }


}

/* Responsive 768 px*/
@media screen and (max-width: 768px) {
    .portada .portada-titulo {
        font-size: 1.5rem;
    }

    .quienes-somos .quienes-somos-h3 {
        font-size: 2rem;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .quienes-somos .quienes-somos-titulo {
        font-size: 1.25rem;
        font-style: italic;
        padding: 0 5%;
        text-align: center;
    }

    .quienes-somos .quienes-somos-contenido {
        font-size: 1rem;
        padding: 0 20px 5px 20px;
        line-height: 1.5;
        text-align: justify;
    }

    .card-cont-t1 {
        font-size: 1.4rem;
    }

    .card-cont-t2 {
        font-size: 1.0rem;
    }

    .card-cont-t3 {
        font-size: 0.8rem;
    }

    .card-cont-t4 {
        font-size: 0.9rem;
    }

    .card-cont-precio {
        font-size: 1.3rem;
    }

    .pie-datos {
        width: 80%;
    
    }
    .pie-nombre {
        width: 80%;
    }

}

/* Responsive 600px*/
@media screen and (max-width: 600px) {
    .portada-1 {
        height: 100px;
    }

    .portada .portada-titulo {
        font-size: 1.7rem;
        padding-top: 25px;
        line-height: 35px;
    }

    .quienes-somos .quienes-somos-h3 {
        font-size: 1.5rem;
        padding-top: 5px 0;
    }

    .quienes-somos .quienes-somos-titulo {
        font-size: 1.1rem;
    }

    .quienes-somos .quienes-somos-contenido {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .card-1-img,
    .card-2-img {
        display: none;
    }

    .card-cont {
        width: 90%;
        margin: 0 auto;
    }

    .card-cont-t {
        padding: 0;
        margin: 0 auto;
        width: 95%;
    }
    .card-cont-t1 {
        margin-top: 30px;
        font-size: 1.7rem;
    }

    .card-cont-t2 {
        font-size: 1.2rem;
    }

    .card-cont-t3 {
        font-size: 0.9rem;
    }

    .card-cont-t4 {
        font-size: 1rem;
        padding: 0;
    }
    .subcard-item {
        width: 90%;
    }

    .referencia-cliente {
        width: 30%;
        height: 75px;
        padding: 5.5px;
    }

    .cliente-nombre {
        font-size: 0.7rem;
    }

    .cliente-contacto {
        font-size: 0.6rem;
    }

    .cliente-numero {
        font-size: 0.5rem;
    }

    .referencia-cliente:nth-of-type(even) {
        display: none;
    }

    .form {
        width: 90%;
    }

    .input {
        width: 90%;
    }

    .form__message {
        min-width: 90%;
        max-width: 90%;
    }

    .pie-nombre {
        font-size: 18px;
    }
    
    .pie-datos {
        font-size: 12px;
    }
    .pie-autor {
        font-size: 12px;
    }
    

}

/* Responsive 490 px*/
@media screen and (max-width: 490px) {
    .portada .portada-titulo {
        font-size: 1.3rem;
    }

    .referencia-cliente {
        width: 45%;
        height: 75px;
        padding: 5.5px;
    }

    .cliente-nombre {
        padding-top: 8px;
    }

    .card-cont-t1 {
        font-size: 1.4rem;
    }

    .card-cont-t2 {
        font-size: 1.0rem;
    }

    .card-cont-t3 {
        font-size: 0.8rem;
    }

    .card-cont-t4 {
        font-size: 0.9rem;
    }

    .card-cont-precio {
        font-size: 1.3rem;
    }

    
    .pie-nombre {
        font-size: 16px;
    }
    
    .pie-datos {
        font-size: 10px;
    }
    .pie-autor {
        font-size: 10px;
    }
}

/* Responsive 350px*/
@media screen and (max-width: 350px) {
    .portada .portada-titulo {
        padding-top: 15px;
        line-height: 25px;
    }
}