:root {
    --blanco: #ffffff;
    --oscuro: #212121;
    --primario: #ffC107;
    --secundario: #0076a5;
    --gris: #757575;
}

/*Globales*/
html {
    font-size: 62.5%;
    box-sizing: border-box;
    scroll-snap-type: y mandatory;
}

/*scroll snap*/
/*.servicios,
.navegacion-principal,
.formulario {
    scroll-snap-align: center;
    scroll-snap-stop: always;
}*/


*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-size: 16px;
    /*1rem ees igual a 10px*/
    font-family: 'Krub', sans-serif;
    background-image: linear-gradient(to top, #dfe9f3 0%, var(--blanco) 100%);
}

.sombra {
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.54);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.54);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.54);
    background-color: var(--blanco);
    padding: 2rem;
    border-radius: 1rem;
}

/*Tipografia*/
h1 {
    font-size: 3.8rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.8rem;
}

h1,
h2,
h3 {
    text-align: center;
}

.cabecera {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/*logo*/
.logo {

    /**para alinear vertical y horizontalmente**/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.logo img {
    height: 8rem;
}

/*titulo*/
.titulo span {
    font-size: 2rem;
}



.contenedor {
    max-width: 120rem;
    margin: 0 auto;
}

.boton {
    background-color: var(--secundario);
    color: var(--blanco);
    padding: 1rem 3rem;
    margin-top: 1rem;
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: .5rem;
    width: 90%;
    text-align: center;
    border: none;
}

@media (min-width: 768px) {
    .boton {
        width: auto;
    }
}

.boton:hover {
    cursor: pointer;
}

/*Utilidades*/
.w-sm-100 {
    width: 100%;
}

@media (min-width:768px) {
    .w-sm-100 {
        width: auto;
    }
}

.flex {
    display: flex;

}

.alinear-derecha {
    justify-content: flex-end;
}

/*Navegacion principal*/
.nav-bg {
    background-color: var(--secundario);
}

.navegacion-principal {

    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width:768px) {
    .navegacion-principal {
        flex-direction: row;
        justify-content: space-between;
    }
}

.navegacion-principal a {
    color: var(--blanco);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    padding: 1rem;
}

.navegacion-principal a:hover {
    background-color: var(--primario);
    color: var(--oscuro);
}

.hero {
    background-image: url(../img/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    position: relative;
    margin-bottom: 2rem;

}

.contenido-hero {
    position: absolute;
    background-color: rgba(0, 0, 0, .7);
    /**anterior**/
    background-color: rgb(0 0 0 /.7);
    width: 100%;
    height: 100%;

    /**para alinear vertical y horizontalmente**/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contenido-hero h1,
.contenido-hero p {
    color: var(--blanco);
}


/*servicios*/
@media (min-width:768px) {
    .servicios {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* grid-template-columns: repeat(4, 1fr);*/
        column-gap: 1rem;
    }
}

.servicio {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .servicio h3 {
    font-weight: normal;
} */

.servicio p {
    line-height: 2;
    font-weight: bold;
    text-align: center;

}

.servicio .iconos {
    height: 15rem;
    width: 15rem;
    background-color: var(--secundario);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.formulario {
    background-color: var(--gris);
    width: min(60rem, 100%);
    /*utiliza el valor mas pequenio*/
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
}

.formulario fieldset {
    border: none;
}

.formulario legend {
    text-align: center;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primario);
}

@media (min-width:768px) {
    .contenedor-campos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto 20rem auto;
        column-gap: 1rem;

    }

    .campo:nth-child(3),
    .campo:nth-child(4),
    .campo:nth-child(5),
    .campo:nth-child(6) {
        grid-column: 1 / 3;
    }
}


.campo {
    margin-bottom: 1rem;
}

.campo label {
    color: var(--blanco);
    font-weight: bold;
    margin-bottom: .5rem;
    display: block;
}

.campo textarea {
    height: 15rem;
}

.input-text {
    width: 100%;
    border: none;
    padding: 1.5rem;
    border-radius: .5rem;
}

.enviar .boton {
    width: 100%;
}

.footer {
    text-align: center;
}

/*op aritmetica*/
.nums {
    font-size: 20px;
    color: var(--blanco);
    font-weight: bold;
}

.captxt {
    width: 55px;
    font-size: 16px;
    color: var(--blanco);
    font-weight: bold;
    border: 0;
    text-align: center;
    background: none;
    border-radius: 0px;
    padding: 4px 1%;
}

.capinput {
    margin-left: 15px;
    border: none;
    padding: 1.5rem;
    border-radius: .5rem;
    width: 8rem;
}

.alert {
    padding-left: 1rem;
    margin-bottom: 2rem;
    background-color: var(--gris);
    color: var(--blanco);
    border: solid var(--primario);
    border-radius: .5rem;
}

/**PLANES HOSTING**/
/* Float four columns side by side */
.column {
    float: left;
    width: 25%;
    padding: 0 10px;
    border-radius: .5rem;
}

/* Remove extra left and right margins, due to padding */
.row {
    margin: 0 -5px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
        border-radius: .5rem;
    }
}

/* Style the counter cards */
.card {
    border-radius: .1rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    /*padding: 16px;*/
    padding-bottom: 16px;
    text-align: center;
    background-color: #f1f1f1;

}

.tituloPlan {
    margin: 0%;
    padding: 1.2rem;
    background-color: var(--secundario);
    border-top-right-radius: .5rem;
    border-top-left-radius: .5rem;
    color: var(--blanco);
}

.precioPlan {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: .5rem;
    background-color: var(--primario);
    color: var(--oscuro)
}

.caracteristicasPlan {
    padding-left: 0;

}

.caracteristicasPlan ul {
    justify-items: left;
    list-style-type: none;

    /* border: 1px dashed rgb(10, 10, 10);*/
}

.caracteristicasPlan ul li {

    line-height: 3rem;
    text-align: left !important;
    /* border: 1px dashed red;*/
    margin-left: -1.5em;

}

.iconList {
    color: var(--secundario);
}

/**SUB MENUS HEADER**/

.subnav {
    overflow: hidden;
  
    border-color: #212121;
}

.subnav .subnavbtn {
    color: var(--blanco);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    padding: 1rem;
}

/* .subnav .subnavbtn {
    background-color: var(--secundario);
    color: var(--blanco);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    padding: 1rem;
  } */

.subnav:hover .subnavbtn {
    background-color: var(--primario);
    color: var(--oscuro);
    outline: none;
}

.subnav-content {
    display: none;
    position: absolute;
    background-color: var(--secundario);
    width: 100%;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}





.subnav-content a {
    float: none;
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    align-content: center;
    /*para que se vea vertical el menu*/

}

@media (min-width:768px) {
    .subnav-content {
        width: auto;
        left:auto;
    }
    
}
.subnav-content a:hover {
    background-color: #eee;
    color: black;
}

.subnav:hover .subnav-content {
    display: block;
}

/**cards de desarrollo.php**/
/* Float four columns side by side */
.columnDesarrollo {
    float: left;
    width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
    border-radius: .5rem;
}

.caracteristicasDesarrollo {
    justify-items: left;
    list-style-type: none;
    line-height: 3rem;
    text-align: left !important;
    /* border: 1px dashed red;*/
    margin-left: 1rem;
    height: 17rem;
    /* border: 1px dashed rgb(10, 10, 10);*/
}
/* Responsive columns */
@media screen and (max-width: 600px) {
    .columnDesarrollo {
        width: 100%;
        display: block;
        margin-bottom: 20px;
        border-radius: .5rem;
        
    }
    .caracteristicasDesarrollo {
        height: unset;
    }
}

  /*******/
  .float-wa{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
}