@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
:root {
    --amarillo: #fdd300;
    --oscuro: #333333;
    --gris: #999999;
    --blanco: #ffffff;
    --negro: #000000;
    /******* mas colores *************/
    --agua: #00BCD4;
    --azul: #0097c6;
    --verde: #008339;
    --verde-2: #3eca7b;
    --naranja: #ff9900;
    --rojo: rgb(255, 59, 59);
    --magenta: #E91E63;
    --bronce: #fb683b;
    --azul-tecnicos: #f0f6ff;
    --negro-sombra: rgba(0, 0, 0, .4);
    --rounded: .7rem;
    --verde-claro: #ecffec;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 2.5rem;
    background-color: var(--verde-claro);
}

header {
    background: #ecffec url(../img/header_desk.svg) no-repeat top center;
    background-size: cover;
    display: block;
    height: 350px;
    width: 100%;
    padding: 2rem 10rem;
}

a {
    text-decoration: none;
    color: var(--verde);
}

a:hover {
    color: var(--verde-2);
}

.header-content {
    max-width: 60%;
    padding-left: 3rem;
}

.head-logo {
    max-width: 250px;
    padding-top: 0;
}

.wafixed {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    display: block;
    background-color: var(--blanco);
    max-width: 330px;
    padding: 0 2rem 0 0;
    font-size: 1.5rem;
    line-height: 1.7rem;
}

.wap-logo {
    width: 30px;
}

@media (max-width: 768px) {
    header {
        background: #ecffec url(../img/header_mobile.svg) no-repeat top center;
        background-size: contain;
        padding: .5rem 0;
    }
    .header-content {
        display: flex;
        flex-shrink: initial;
        max-width: 95%;
        padding-left: 1rem;
    }
    .head-logo {
        align-self: center;
        width: 48%;
        height: auto;
        padding-top: .5rem;
    }
    .header-content h2 {
        font-size: 1.5rem;
        align-self: center;
        line-height: 1.7rem;
        width: 50%;
    }
    .wafixed {
        max-width: 95%;
        font-size: 1.3rem;
        line-height: 1.4rem;
        margin: 0 auto;
        padding: .5rem 1rem .7rem 1rem;
    }
}

img {
    max-width: 100%;
}

.icon-size-1 {
    width: 150px;
}

.icon-size-2 {
    width: 120px;
}

h1 {
    font-size: 4rem;
    line-height: 4.2rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

.contenedor {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    padding: 2rem 8rem;
}

.card-white {
    background: var(--blanco);
    border-radius: var(--rounded);
}

.card-login {
    background: #f8f8f8;
    border-radius: var(--rounded);
    width: 450px;
}

@media (max-width: 768px) {
    .card-login {
        width: 90%;
    }
}

.card-yellow {
    border-radius: var(--rounded);
    background: #ffcc00;
    background: -moz-linear-gradient(45deg, #ffcc00 1%, #ffcc33 101%);
    background: -webkit-linear-gradient(45deg, #ffcc00 1%, #ffcc33 101%);
    background: linear-gradient(45deg, #ffcc00 1%, #ffcc33 101%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffcc00', endColorstr='#ffcc33', GradientType=1);
}

.card-red {
    border-radius: var(--rounded);
    background: #f56986;
    background: -moz-linear-gradient(45deg, #f56986 0%, #ff87a0 101%);
    background: -webkit-linear-gradient(45deg, #f56986 0%, #ff87a0 101%);
    background: linear-gradient(45deg, #f56986 0%, #ff87a0 101%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f56986', endColorstr='#ff87a0', GradientType=1);
}

.card-azul-1 {
    border-radius: var(--rounded);
    background: #00d0dd;
    background: -moz-linear-gradient(45deg, #00d0dd 1%, #00fcff 101%);
    background: -webkit-linear-gradient(45deg, #00d0dd 1%, #00fcff 101%);
    background: linear-gradient(45deg, #00d0dd 1%, #00fcff 101%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00d0dd', endColorstr='#00fcff', GradientType=1);
}

.card-azul-2 {
    border-radius: var(--rounded);
    background: #00a8ff;
    background: -moz-linear-gradient(45deg, #00a8ff 0%, #4cd3ff 101%);
    background: -webkit-linear-gradient(45deg, #00a8ff 0%, #4cd3ff 101%);
    background: linear-gradient(45deg, #00a8ff 0%, #4cd3ff 101%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a8ff', endColorstr='#4cd3ff', GradientType=1);
}

.col-2 {
    padding: 1rem;
}

.col-3 {
    padding: 1rem;
}

@media (max-width: 480px) {
    .contenedor {
        width: 100%;
        margin: 0 auto;
        padding: 1rem 1rem;
        margin-bottom: 1rem;
    }
    .col-2 {
        margin-bottom: 1.5rem;
    }
}

@media(min-width:480px) {
    .una-col {
        display: block;
        justify-content: center;
        align-items: center;
    }
    .dos-col {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .col-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-basis: calc(50% - 2rem);
        padding: 1rem;
    }
    .col-4 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 0 0 30%;
        padding: 1rem;
    }
    .col-8 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 0 0 70%;
        padding: 1rem;
    }
    .tres-col {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .col-3 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-basis: calc(33% - 1rem);
        padding: 1rem;
    }
}

ul {
    list-style: none;
    margin-left: 0;
    padding-left: 1.2em;
    list-style-image: url(../img/check.svg);
}

li {
    margin-bottom: 1rem;
}

.btn {
    text-decoration: none;
    display: block;
    text-align: center;
    background-color: var(--azul);
    border-radius: 3rem;
    color: var(--blanco);
    padding: 12px 15px 12px 15px;
    margin: 2rem auto;
    width: 90%;
    box-shadow: 0 0 7px var(--negro-sombra);
}

.btn:hover {
    color: var(--blanco)!important;
    box-shadow: 0 15px 20px rgba(0, 151, 198, .4)!important;
}

.btn-ver-mas {
    font-size: 1.8rem;
    text-decoration: none;
    display: block;
    text-align: center;
    background: #4ed4b2;
    background: -moz-linear-gradient(top, #4ed4b2 0%, #65cc66 100%);
    background: -webkit-linear-gradient(top, #4ed4b2 0%, #65cc66 100%);
    background: linear-gradient(to bottom, #4ed4b2 0%, #65cc66 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4ed4b2', endColorstr='#65cc66', GradientType=0);
    color: var(--blanco)!important;
    padding: 20px 18px 20px 18px;
    margin: 2rem auto;
    width: 85%;
    box-shadow: 0 0 7px var(--negro-sombra);
}

.white-grad {
    bottom: 0;
    background: -moz-linear-gradient(top, rgba(255, 242, 242, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 242, 242, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 242, 242, 0) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff2f2', endColorstr='#00ffffff', GradientType=0);
    position: absolute;
    width: 100%;
    height: 600px;
}

/*  utilidades ******/

/*backs*/

.back-white {
    background-color: var(--blanco)!important;
}

.back-login {
    background-color: var(--azul-tecnicos)!important;
}

/* colors */

.color-blanco {
    color: var(--blanco)!important;
}

.color-oscuro {
    color: var(--oscuro)!important;
}

.color-verde {
    color: var(--verde)!important;
}

.color-azul {
    color: var(--azul)!important;
}

.color-naranja {
    color: var(--naranja)!important;
}

/* borders */

.borde-naranja {
    border: solid 1px var(--naranja)!important;
    background-color: var(--blanco);
}

.borde-verde {
    border: solid 1px var(--verde)!important;
}

.borde-redondo {
    border-radius: var(--rounded);
}

.borde-redondo-lg {
    border-radius: 100px;
}

/* text align */

.texto-alinear-l {
    text-align: left!important;
}

.texto-alinear-r {
    text-align: right!important;
}

.centrar-texto {
    text-align: center!important;
}

/* paddings  */

.padding {
    padding: 1.5rem!important;
}

.padding-0 {
    padding: 0!important;
}

.padding-v {
    padding-top: 2rem!important;
    padding-bottom: 2rem!important;
}

.padding-l {
    padding-left: 1.5rem;
}

.padding-r {
    padding-right: 1.5rem;
}

.padding-h {
    padding-left: 1.5rem!important;
    padding-right: 1.5rem!important;
}

.padding-t {
    padding-top: 2rem!important;
}

.padding-b {
    padding-bottom: 2rem!important;
}

/* margins  */

.margin-v {
    margin-top: 2rem!important;
    margin-bottom: 2rem!important;
}

.margin-bottom {
    margin-bottom: 2.5rem!important;
}

.no-margin {
    margin: 0!important;
}

.margin-footer {
    margin-bottom: 1rem!important;
}

.margin-auto {
    margin: auto!important;
}

.margin-0 {
    margin: 0 auto!important;
}

/* shadows */

.shadow {
    box-shadow: 0 0 15px var(--negro-sombra)!important;
}

.text-shadow {
    text-shadow: 0 1px 7px var(--negro-sombra);
}

/* text styles */

.text-bold {
    font-weight: 700!important;
}

.text-400 {
    font-weight: 400!important;
}

.font-medium {
    font-size: 2rem!important;
}

/* sizes */

.height-210 {
    min-height: 210px!important;
}

.height-540 {
    min-height: 540px!important;
}

.max-width-60 {
    max-width: 60%!important;
}

/* positions */

.p-relative {
    position: relative!important;
}

.p-fixed {
    position: fixed!important;
}

.centrar-texto-movil {
    text-align: inherit!important;
}

@media (max-width: 768px) {
    .padding-l {
        padding-left: .8rem!important;
    }
    .padding-v {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important;
    }
    .margin-footer {
        margin-bottom: 6rem!important;
    }
}

@media(max-width:480px) {
    .logo-mv {
        display: none;
    }
    .margin-bottom {
        margin-bottom: .5rem!important;
    }
    .max-width-60 {
        max-width: 90%!important;
    }
    .centrar-texto-movil {
        text-align: center!important;
    }
}

/* animation  */

.heartbeat {
    -webkit-animation: heartbeat 1s ease-in-out infinite both;
    animation: heartbeat 1s ease-in-out infinite both
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.slide-in-bottom {
    -webkit-animation: slide-in-bottom .8s cubic-bezier(.25, .46, .45, .94) both;
    animation: slide-in-bottom .8s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}