:root 
{
    --blanco: #ffffff;  
    --principal: #a4a4a4;
    --secundario: #1194be;
    --nav: #519EE0;
    --negro: #000;
    --botones: #316B77; 
    --principal2: #527181;

}
body
{
    font-family: parkinsans;    
}
/*Scroll Snap*/
.servicios,
.NavegacionPrincipal,
.formulario
{
    scroll-snap-align: center;
    scroll-snap-stop: always;
}
html
{
    font-size: 62.5%;
    box-sizing: border-box;
    scroll-snap-type: y mandatory;
}
*, *:before, *:after 
{
    box-sizing: inherit;
}

body
{
    background-image: linear-gradient(to bottom, rgb(62, 151, 235) 20%, #ffffff 90%);
    font-size: 16mpx;
}
h1 {
    font-size: 3.8rem;
}
h2 {
    font-size: 2.8rem;
}
h3 {
    font-size: 1.8rem;
}
h1,h2,h3{
    text-align: center;
}
.NavegacionPrincipal
{
    color: var(--blanco);
    display: flex;
    flex-direction: column;
}
@media (min-width: 480px)
{
    .NavegacionPrincipal
    {
    flex-direction: row;
    justify-content: space-evenly;
    }
}
.NavegacionPrincipal a
{
    display: block;
    text-align: center;
    padding: 1rem;
    color: var(--blanco);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
}
.NavegacionPrincipal a:hover
{
    background-color: var(--nav);
    color: var(--negro);
}
.contenedor
{
    max-width: 120rem;
    margin: 0 auto 0 auto;
}
.boton
{
   background-color: var(--botones);
   text-decoration: none;
   color: blanchedalmond;
   padding: 1rem 3rem;
   border-radius: 5.8%;
   margin-top: 2rem;
   font-size: 1rem;
   width: 90%;
   text-transform: uppercase;
   font-weight: bold;
   text-align: center;
   border: none;
}
@media (min-width: 480px)
{
    .boton
    {
        width: auto;
    }
}
.boton:hover
{
    cursor: pointer;
}
.contenido-hero a:hover
{
    background-color: var(--nav);
    color: var(--negro); 
}
/**Utilidades**/
.w-sm-100
{
    width: 100%;
}
@media (min-width: 480px)
{
    .w-sm-100
    {
        width: auto;
    }
}
.flex
{
    display: flex;
}
.alinear-derecha
{
    justify-content: flex-end;
}



.nav-bg
{
    background-color: var(--secundario);
}

/**imagen*/
.Hero
{
    background-image: url(../img/Fondo.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 450px;
    position: relative;
    margin-bottom: 2rem;
}
.contenido-hero
{
    position: absolute;
    background-color: rgb( 0 0 0 / 15%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contenido-hero h2,
.contenido-hero p 
{
    color: var(--blanco);
}
.ubicacion
{
    display: flex;
    align-items: flex-end;
}
/* Hola */
.sombra
{
    -webkit-box-shadow: -8px 10px 14px 0px rgba(0,0,0,0.79);
    -moz-box-shadow: -8px 10px 14px 0px rgba(0,0,0,0.79);
    box-shadow: -8px 10px 14px 0px rgba(0,0,0,0.79);
    background-image: linear-gradient(to bottom, rgb(162, 204, 243) 10%, #ffffff 80%);
    padding: 2rem;
}

@media (min-width: 480px)
{
    .servicios
        {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 2rem;
        }
}
.servicio
{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.servicio h3 
{
    color: var(--negro);
    font-weight: normal;
}
.servicio p{
    line-height: 2;
}

.servicio .iconos
{
    background-color: var(--principal2);
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

/** Contacto **/

.formulario
{
    background-color: #a4a4a4;
    width: min( 60rem, 100%);
    margin: 0 auto;
    border-radius: .9%;
    padding: 2rem;

}

.formulario fieldset
{
    border: none;
}
.formulario legend
{
    text-align: center;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700%;
    margin-bottom: 2rem;
    color: var(--principal2)
}

/*Campos de formulario*/
@media (min-width: 480px){
.contenedor-campos
    {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: auto auto 20rem;
        column-gap: 1rem;

    }    
}
.campos:nth-child(3)
{
    grid-column: 1 / 3 ;
}
.campos:nth-child(4)
{
    grid-column: 1 / 3 ;
} 

.campos
{
    margin-bottom: 1rem;

}
.campos label
{
    color: var(--blanco);
    font-weight: bold;
    margin-bottom: .5rem;
    display: block;
}
.input-text
{
    background-color: #c6ecf0;
    width: 100%;
    border: none;
    padding: 1.5rem;
    border-radius: .6rem;
}
.campos textarea
{
    height: 20rem;
}
.Cierre
{
    text-align: center;
}
