/**********************************************************************************
*****   Variables *****************************************************************
**********************************************************************************/
:root {
    --color1: rgb(219, 144, 0.5);
    --color2: rgba(23, 180, 83, 0.877);
    --color3: rgba(11, 194, 211, 0.623);
    --fondo: #F2F2F2;
    --titulos: 33px;
    --subtitulos: 20px;
    --margenes: 20px;
    --espacios: 10px;
    --espacios-contenido: 45px;
}

/**********************************************************************************
*****   General *******************************************************************
**********************************************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/**********************************************************************************
*****   Body **********************************************************************
**********************************************************************************/
body {
    font-family: 'Quattrocento Sans', sans-serif;
}

/**********************************************************************************
*****   Header ********************************************************************
**********************************************************************************/
header {
    height: 100px;
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 1;
    background: #FFFFFF;
}

nav {
    height: 100px;
    width: 90%;
    max-width: 1100px;
    display: flex;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    height: 70px;
}

.logo img {
    width: 50%;
    height: 50%;
    height: inherit;
    vertical-align: top;
    object-fit: cover;
}

.icono {
    color: #000000;
    font-size: 24px;
    padding: 23.5px 20px;
    display: none;
}

.icono:hover {
    cursor: pointer;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    padding: 30px 25px;
}

/**********************************************************************************
*****   Contacto ******************************************************************
**********************************************************************************/
.contactar {
    width: 100%;
    height: 100%;
    margin-top: 100px;
    background-image: url(../img/jpg-teclado.jpg);
    background-size: 100vw 100vh;
    background-attachment: fixed;
}

.formulario {
    width: 45%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 20px 20px;
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.formulario h2 {
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    margin-top: 5px;
}

/*.frm_gpo-input					/*Desactivado porque no queda bien con relacion al menu
{
    position: relative;
}*/

.frm_input {
    width: 100%;
    font-size: 14px;
    font-family: 'Arvo', serif;
    background: #FFFFFF;
    border: 3px solid transparent;
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
    padding: 0px 40px 0px 10px;
    transition: 0.3s ease all;
    resize: none;
}

.frm_txtarea {
    max-width: 100%;
    min-width: 100%;
    max-height: 130px;
    min-height: 130px;
    font-size: 14px;
    font-family: 'Arvo', serif;
    background: #FFFFFF;
    border: 3px solid transparent;
    border-radius: 3px;
    height: 30px;
    line-height: 30px;
    padding: 0px 40px 0px 10px;
    transition: .3s ease all;
    resize: none;
}

.frm_input:focus,
.frm_txtarea:focus {
    border: 3px solid #D38714;
    outline: none;
    box-shadow: 3px 0px 30px rgba(163, 163, 163, 0.4);
}

.frm_input-error {
    font-size: 14px;
    font-family: 'Arvo', serif;
    margin-bottom: 0px;
    display: none;
}

.frm_input-error-activo {
    display: block;
}

.form_val-estado {
    /*position: absolute;*/
    /*linea original funciona activando las lineas de "frm_gpo-input"*/
    position: relative;
    right: 10px;
    bottom: 15px;
    /*z-index: 0;*/
    /*activar cuando se deje la linea original*/
    font-size: 16px;
    font-family: 'Arvo', serif;
    opacity: 0;
}

.frm_checkbox {
    margin-right: 10px;
}

.frm_label {
    font-size: 18px;
    font-family: 'Arvo', serif;
    background: #000000;
    color: #D38714;
    padding: 2px;
}

.form_mensaje {
    height: 45px;
    line-height: 45px;
    background: #F66060;
    padding: 0px 15px;
    border-radius: 3px;
    font-size: 16px;
    font-family: 'Arvo', serif;
    display: none;
}

.form_mensaje-activo {
    display: block;
}

.form_mensaje p {
    margin: 0;
}

.form_grupo-btn-enviar {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form_btn {
    height: 45px;
    line-height: 45px;
    width: 20%;
    background: #000000;
    color: #FFFFFF;
    font-weight: 500;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: .1s ease all;
    font-size: 14px;
    font-family: 'Arvo', serif;
    margin-bottom: 5%;
}

.form_btn:hover {
    box-shadow: 3px 0px 30px rgba(163, 163, 163, 1.9);
}

.form_mens-exito {
    font-size: 14px;
    font-family: 'Arvo', serif;
    color: #119200;
    background: #000000;
    padding: 5px;
    margin-top: 15px;
    display: none;
}

.form_mens-exito-activo {
    display: block;
}

.form_mensaje p {
    /*margin: 0;*/
    text-align: center;
}

.form_grupo-btn-enviar {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/**********************************************************************************
*****   Validacion ****************************************************************
**********************************************************************************/
.form_grupo-correcto .form_val-estado {
    color: #1ED12D;
    opacity: 1;
}

.form_grupo-incorrecto .form_label {
    color: #BB2929;
}

.form_grupo-incorrecto .form_val-estado {
    color: #BB2929;
    opacity: 1;
}

.form_grupo-incorrecto .frm_input {
    border: 3px solid #BB2929;
}

.after::after {
    content: '';
    display: block;
    margin: auto;
    margin-top: var(--espacios);
    width: 100px;
    height: 2px;
    background: var(--color1);
    margin-bottom: var(--espacios-contenido);
}

.localiza {
    height: auto;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.oficina {
    width: 40%;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.oficina h3 {
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 5px;
}

.googleMap1 {
    width: 85%;
    height: 500px;
    /*margin: auto;*/

}

.umapas {
    width: 100%;
    height: 98%;
}

/**********************************************************************************
*****   Footer ********************************************************************
**********************************************************************************/
.footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
}

.marca {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: auto;
    margin-bottom: var(--espacios);
}

.marca img {
    height: 100px;
    margin: var(--espacios);
}

.textobotonselec {
    font-size: 16px;
    color: #131A2C;
    font-weight: 900;
    margin: auto;
    text-decoration: none;
}

.marca h2 {
    margin: auto;
}

.iconos {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: auto;
    align-items: center;
}

.col_texto p {
    font-size: 20px;
    color: #131A2C;
    font-weight: 900;
    margin: auto;
    text-decoration: none;
}

/**********************************************************************************
***** responsive ******************************************************************
**********************************************************************************/
/*@media screen and (max-width: 640px) {
    .icono {
        display: block;
    }

    .menu {
        position: fixed;
        top: 100px;
        background: #4B6584;
        left: 0px;
        height: 100%;
        transition: 1s;
        width: 0px;
        overflow: hidden;
    }

    .menu a {
        display: inherit;
        background: #778CA3;
        border: 1px solid #FFFFFF;
        text-align: left;
    }
}*/