:root {
    --color-first: #e60000;
    /*--color-first: #C30921;*/
    --color-second: #006DC6;
    --color-third: #00CBFF;
    --color-enfasis:#F1A000;
    --color-sombras: #282D31;
    --color-border: #DFE0E0;
    --color-titulos: #282D31;
    --color-text: #53575A;
    --color-bg: #FAFDFF;
    --color-menu: #2A3B47;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
}


/* INICIO DE INDEX */


/* INICIO DE BOTÃ“N ARRIBA */

.ir-arriba {
    display: none;
    padding: 14px;
    background: var(--color-first);
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    right: 30px;
    border-radius: 100%;
    z-index: var(--z-modal);
}

.ir-arriba:hover{
    background: #b60000;
}


/* FIN DE BOTÃ“N ARRIBA */


/* INICIO DE BOTÓN WHATSAPP */

.api-ws {
    display: inline-block;
    padding: 12px;
    background: #4dc247;
    font-size: 32px;
    line-height: 32px;
    color: #fff;
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    left: 30px;
    border-radius: 100%;
    z-index: var(--z-modal);
}

.api-ws:hover {
    background: #38ad32;
    text-decoration: none;
    color: #fff;
}


/* FIN DE BOTÓN WHATSAPP */


/* ESTILOS MENÚ */

header {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1000;
    box-shadow: 0 0 3px var(--color-sombras);
}

.menu {
    width: 85%;
    /*max-width: 1000px;*/
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: 'Lato', sans-serif;
}

.menu .logo {
    display: inline-block;
    margin-right: 1em;
}

.menu .logo img {
    vertical-align: top;
    height: 60px;
    padding: 4px;
}

.menu .btn-menu {
    display: none;
    color: var(--color-first);
    text-decoration: none;
    /* font-size: 1em; */
}


/*.menu .logo:hover {
    background: #00aced;
}*/

.menu .enlaces {
    display: inline-block;
    text-align: right;
}

.menu .enlaces a {
    color: var(--color-text);
    display: inline-block;
    padding: 2em;
    text-align: center;
    /* font-family: 'Open Sans', sans-serif; */
    font-size: 1em;
    /* text-transform: uppercase; */
    /* font-weight: bold; */
    text-decoration: none;
    transition: all .1s ease;
}


/* .menu .enlaces i {
    margin-right: 5px;
} */

.menu .enlaces a:hover {
    color: var(--color-first);
    /* font-weight: bold; */
    text-decoration: none;
    /* font-weight: bold; */
}


/*Efectos del Menú*/

.headroom {
    transition: transform .3s ease;
}

.headroom--pinned {
    transform: translateY(0%);
}

.headroom--unpinned {
    transform: translateY(-100%);
}


/* MediaQueries*/

@media screen and (max-width: 1023px) {
    header {
        background: var(--color-first);
    }
    header .menu {
        flex-direction: column;
    }
    header .menu .logo {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: .4em;
    }
    header .menu .logo .btn-menu {
        display: inline-block;
        /* color: #fff; */
        color: #fff;
        font-size: 30px;
        margin-top: 20px;
    }
    header .menu .enlaces {
        width: 100%;
        display: flex;
        flex-direction: column;
        /* flex-wrap: wrap;
        justify-content: space-between; */
    }
    .menu .enlaces a {
                color: #fff;
            }
    .menu .enlaces a:hover {
                color: var(--color-third);
                text-decoration: none;
            }
}


/* FIN DE MENÚ */


/* INICIO DE BANNER */

.main-banner {
    background: linear-gradient(to right, #000, #000);
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%); */
    top: 88px;
    height: 90vh;
    position: relative;
}


@media screen and (max-width: 1023px) {
    .main-banner {
        height: 90vh;
        top: 77px;
    }
}

.main-banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: .15;
}

.main-banner-data {
    position: relative;
    text-align: left;
    top: 150px;
    /* text-shadow: 0 4px 6px #000; */
}


.main-banner-titulo {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 2.5em;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
}

.titulo-index {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 2.5em;
    margin-bottom: 0;
    margin-top: 6em;
    text-align: center;
}

.parrafo-index {
    font-family: 'Lato', sans-serif;
    font-size: 1.2em;
    text-transform: none;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    margin-top: 4px
}


.main-banner-parrafo {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    text-transform: none;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    margin-top: 4px
}


.main-banner-boton {
    display: block;
    border: none;
    /* border: 1px solid #fff; */
    padding: .7em 6em .7em 2em;
    color: #fff;
    background: var(--color-first);
    border-radius: 4px;
    margin-bottom: 15px;
    transition: all .4s ease-in-out;
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    font-weight: bold;
    
}

.main-banner-boton:hover {
    text-decoration: none;
    background-color: var(--color-second);
    color: #fff;
    /* border: 1px solid var(--color-second); */
}



@media screen and (max-width: 1023px) {
    .main-banner-boton {
        display: none;
    }
}
/* FIN DE BANNER *

/* INICIO DE TÍTULOS */

.to-center {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

.titulo{
    font-family: 'Lato', "sans-serif";
    font-size: 1.8em;
    font-weight: 700;
    /* line-height: 1.3; */
    color: var(--color-first);
    margin-top: 0;
    margin-bottom: 1em;
    display: block;
    text-transform: uppercase;
    text-align: left;
}

.subtitulo {
    font-family: 'Lato', "sans-serif";
    font-size: 1.4em;
    font-weight: 400;
    /* line-height: 1.3; */
    color: #000;
    margin-top: 0;
    margin-bottom: .025em;
    display: block;
    text-align: left;
    text-transform: uppercase;
}


/* FIN DE TÍTULOS */

/* Inicio de Cuerpo */

/* .linea{
    border: solid 1.2px var(--color-first);
    width: 80px;
    text-align: left;
} */
.parrafo {
    font-family: 'Nunito', sans-serif;
    font-size: 1em;
    color: var(--color-text);
    text-align: justify;
}

.boton{
    border: none;
    /* border: 1px solid var(--color-first); */
    padding: .6em .8em;
    background-color: var(--color-first);
    color: #fff;
    border-radius: 2px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    transition: all .4s ease-in-out;
}
.boton:hover{
    text-decoration: none;
    background-color: var(--color-second);
    color: #fff;
    /* border: 1px solid #fff; */
}

.trabajo-web{
    background: var(--color-first);
    /* background-image: url(../img/job-web.jpg);
    top: 40px;
    right: 40px;
    object-fit: cover;
    background-repeat: no-repeat; */
}
.pasos{
    width: 100%;
    padding: 3em 1em;
}
.fondo{
    width: 100%;
    padding-top: 50%;
    box-sizing: border-box;

}

/* @media screen and (max-width: 1023px) {
    .fondo{
        width: 100%;
        box-sizing: border-box;
    
    }
} */

.titulo-2{
    font-family: 'Lato', "sans-serif";
    font-size: 1.7em;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
    margin-bottom: 1em;
    display: block;
    text-transform: uppercase;
    text-align: left;
}

.subtitulo-2{
    font-family: 'Lato', "sans-serif";
    font-size: 1.4em;
    font-weight: 400;
    color: #fff;
    margin-top: 0;
    margin-bottom: .025em;
    display: block;
    text-align: left;
    text-transform: uppercase;
}
.lista-web{
    list-style-image: url(../img/lista.png);
    margin-left: 5px;
    font-family: 'Nunito', sans-serif;
    font-size: 1em;
    color: #fff;
    list-style-type: none;
}

.parrafo-web {
    font-family: 'Nunito', sans-serif;
    font-size: 1em;
    color: #fff;
    text-align: justify;
}

.titulo-3{
    font-family: 'Lato', "sans-serif";
    font-size: 1.8em;
    font-weight: 700;
    /* line-height: 1.3; */
    color: var(--color-first);
    margin-top: 0;
    margin-bottom: 1em;
    display: block;
    text-transform: uppercase;
    text-align: center;
}

.subtitulo-3 {
    font-family: 'Lato', "sans-serif";
    font-size: 1.4em;
    font-weight: 400;
    /* line-height: 1.3; */
    color: #000;
    margin-top: 0;
    margin-bottom: .025em;
    display: block;
    text-align: center;
    text-transform: uppercase;
}

/* INICIO DE CARDS */

@media screen and (max-width:1200px) {
    .container {
        padding: 1em;
    }
}

.cards-grid {
    display: grid;
    grid-gap: 2em;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.card {
    background: #fff;
    border-radius: .25rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 2px -3px var(--color-text);
}

.card-img img {
    max-width: 100%;
    height: auto;
    border-radius: .25rem .25rem 0 0;
}

.card-content {
    padding: 1rem;
}

.card-title {
    font-family: 'Lato', "sans-serif";
    font-weight: 700;
    font-size: 1.1em;
    line-height: 1.3;
    color: #000;
    margin-top: -.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-first);
    padding-bottom: .25rem;
}

.card-title:hover {
    text-decoration: underline;
    color: #000;
}

.card-description{
    font-family: 'Nunito', sans-serif;
    font-size: 1em;
    color: var(--color-text);
    text-align: justify;
}


/* FIN DE CARDS */



.lema {
    color:var(--color-sombras);
    text-align: center;
    font-family: 'Lobster', cursive;
}


/* Inicio de Contactos */
.contactos{
    background-color: #000;
    position: relative;
    padding-top: 2em;
    padding-bottom: 2em;
    
}

.fondo-contactos {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: .2;
}

.titulo-4{
    font-family: 'Lato', "sans-serif";
    font-size: 1.7em;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
    margin-bottom: 1em;
    display: block;
    text-transform: uppercase;
    text-align: center;
}

.subtitulo-4{
    font-family: 'Lato', "sans-serif";
    font-size: 1.4em;
    font-weight: 400;
    color: #fff;
    margin-top: 0;
    margin-bottom: .025em;
    display: block;
    text-align: center;
    text-transform: uppercase;
}



form {
    /*width:450px;*/
    background: transparent;
    max-width: 1000px;
    padding: 30px 20px;
    box-sizing: border-box;
    margin-top: 20px;
    box-shadow: 0px 0px 3px grey;
    border-radius: 4px;
    margin: auto;
}

input,
textarea, select {
    font-family: 'Nunito', sans-serif;
    font-size: 1em;
    color: #fff;
    width: 100%;
    padding: 8px;
    margin-bottom: 1.8em;
    border: none;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
}

select{
    color: var(--color-text);
}

textarea {
    min-height: 180px;
    max-height: 300px;
    max-width: 100%;
}

/* #boton{
    width: 50%;
    margin: auto;
} */

#boton:hover {
    cursor: pointer;
    background: var(--color-first);
    transition: all .4s ease-in-out;
}

/* Fin de contactos */



/* FIN DEL CUERPO */

/* INICIO DE FOOTER*/

/* footer {
    background: #000;
    color: #fff;
    padding: 50px 0;
} */

.iconos-pie {
    font-size: 30px;
    margin: 0px 15px;
    color: var(--color-border);
}

.iconos-pie:hover {
    color: var(--color-first);
    cursor: pointer;
}

.pie {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1em;
    color: var(--color-border);
}

.pie:hover {
    color: var(--color-first);
    cursor: pointer;
}

.info {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: .8em;
    color: var(--color-border);
}

.info:hover {
    color: var(--color-first);
    cursor: pointer;
}

.social-footer a{
    border: 1px solid #fff;
    border-radius: 2px;
    font-size: 16px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    margin-right: 5px;
    display:inline-block;
	color: 	#fff;
	background:#000;
	padding: 6px 11px;
    text-decoration:none;
    box-sizing: border-box;
    margin-top: 6px;

}

.social-footer .face:hover{
    background:#3B5998;
    box-shadow: 0 0 8px #fff;
    transition: all .4s ease-in-out;
}

.social-footer .twitter:hover{
    background:#00aced;
    box-shadow: 0 0 8px #fff;
    transition: all .4s ease-in-out;
}

.social-footer .instagram:hover{
    background:#bc2a8d;
    box-shadow: 0 0 8px #fff;
    transition: all .4s ease-in-out;
}

.social-footer .linkedin:hover{
    background:#0e76a8;
    box-shadow: 0 0 8px #fff;
    transition: all .4s ease-in-out;
}

/* FIN DE FOOTER */


/* INICIO DE DERECHOS */

.derechos {
    background: #191919;
    color: #fff;
    padding: 6px 0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: .8em;
    color: var(--color-border);
}

.creditos {
    text-align: right;
}

.devlab {
    text-decoration: none;
    color: var(--color-first);
    font-size: 1.2em;
}

.devlab:hover {
    color: var(--color-border);
}


/* FIN DE DERECHOS */




