@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;700&display=swap');

html {
    box-sizing: border-box;
    min-height: 100%;
    /*por si el color fondo se ve cortado*/
    font-size: 0.55em;
    /*REM*/
}

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


/* GLOBALES */


body {
    background-color: #f7f7f7;
    font-family: 'Figtree', sans-serif;
}

.wrapper {
    background-color: #f7f7f7;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

h3 {
    font-size: 2.5rem;
    font-weight: 400;
}

img {
    max-width: 100%;
}

.contenedor {
    width: 95%;
    margin: 0 auto;
}

@media (min-width: 480px) {
    .contenedor {
        width: 95%;
    }
}

@media (min-width: 768px) {
    .contenedor {
        width: 90%;
    }
}

@media (min-width: 992px) {
    .contenedor {
        max-width: 120rem;
    }
}


/*BOTONES*/

.button {
    border-radius: 0.5em;
    padding: 1rem 2rem;
    border: none;
    display: block;
}

@media (min-width: 768px) {
    .button {
        border: solid 0.5px #ffffff;
        padding: 1.2rem 2rem;
    }
}

.button:hover {
    cursor: pointer;
}

.primary {
    color: #ffffff;
    background-color: #b94e8f;
    border: none;
}

.secundary {
    background-color: rgba(14, 44, 64, 1);
    border: none;
}

.button-more {
    border: solid 0.5px #afafaf;
    color: #646464;
    font-size: 1.6rem;
    border-radius: 0.5em;
    padding: 1.5rem 2.5rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5rem;
    background-color: #ffffff;
    font-weight: 400;
    margin-bottom: 1.5rem;
}


/*BARRA DE NAVEGACION*/

.contenido-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 200ms linear;
    z-index: 1;
}

@media (min-width: 468px) {
    .contenido-header {
        padding: 1.5rem 7.5rem;
    }
}

@media (max-width: 768px) {
    .contenido-header {
        background-color: rgba(52, 58, 64, 0.9)!important;
    }
}

.contenido-header a {
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
}

.contenido-header span {
    font-size: 2.5rem;
}


/*NAVEGACION*/

.navegacion {
    display: none;
    width: 100%;
    background-color: rgba(52, 58, 64, 0.9)
}

@media (min-width: 768px) {
    .navegacion {
        justify-content: flex-end;
        display: block !important;
        background: transparent;
        top: 0;
    }
}

.top-fixed {
    position: fixed;
    top: 6.1rem;
    right: 0;
    left: 0;
}

@media (min-width: 768px) {
    .top-fixed {
        position: relative;
        text-align: right;
        top: 0rem;
    }
}

.navegacion a {
    font-size: 1.8rem;
    color: #ffffff;
    text-decoration: none;
    padding: 1.5rem;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.navegacion a:hover {
    color: #f3f3f3;
}

@media (min-width: 768px) {
    .navegacion a {
        margin: 0;
        padding: 1rem 2rem;
        /*sin esto no tomaba efecto el a*/
        transition: background-color .3s ease;
        width: auto;
    }
}


/*MOBILE MENU*/

.icon-mobile {
    color: #ffffff;
    font-size: 2.7rem;
    display: block;
}

@media (min-width: 768px) {
    .icon-mobile {
        display: none;
    }
}

.icon-mobile:hover {
    cursor: pointer;
}


/*NAVEGACION PAGINAS INTERNAS*/

.nav-interna {
    background-color: rgba(14, 44, 64, 0.9)!important;
}


/*FOOTER*/

#footer {
    background-color: #f0f0f0;
    margin-bottom: 0;
}

.icon {
    height: 20rem;
    color: #646464;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 5rem;
}

.icon a {
    color: #646464;
    font-size: 2rem;
    text-decoration: none;
    margin-right: 1.5rem;
}

.icon p {
    font-size: 1.75rem;
}


/*MODAL*/

.modal-content-login {
    background-color: #ffffff;
    padding: 2rem;
    position: relative;
    margin: 10% auto;
    color: #646464;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #313131;
    font-weight: 400;
    width: 75%;
}

@media (min-width: 768px) {
    .modal-content-login {
        width: 35%;
    }
}

.modal-content-login h4 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    /*margin-top: 1rem;*/
}

.modal-content-login a {
    color: #646464;
}

.modal-content-login .campo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.campo input {
    flex: 1;
    /*toman todo el espacio disponible*/
    border: 1px solid #e1e1e1;
    background-color: #f0f0f0;
    padding: 1rem;
    font-size: 1.5rem;
    border-radius: 5px;
}

.log {
    flex: 1;
    font-size: 1.5rem;
    padding: 1rem 2rem;
}

.log-forgot{
    background-color: #363e4d;
}

.close {
    display: flex;
    justify-content: flex-end;
    font-size: 1.5rem;
    border-radius: 5px;
}

.log-in {
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 1s;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#log-in:target {
    opacity: 1;
    pointer-events: auto;
}

.signup-section {
    color: #b94e8f;
    font-size: 1.3rem;
    /*margin-top: 5rem;*/
    padding: 1rem 0;
}


/*Ventana oops*/

.swal2-container {
    zoom: 1.5;
}


/*LOADER*/

.loader {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.95;
    z-index: 9999999;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loaderText {
    color: #495057;
    font-size: 16px;
    text-align: center;
    opacity: 1;
}

.loaderImg {
    width: 140px;
}


/*CTA*/

.site-cta {
    background-color: #0e2c40;
    text-align: center;
    color: #ffffff;
    margin-top: 5rem;
    height: 25rem;
    padding: 5rem 0;
}

.site-cta a {
    color: white !important;
    border: none !important;
    background-color: #b94e8f !important;
}

.site-cta p {
    font-size: 1.7rem;
}

.forgot-title{
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e1e1;
}

ul {
    line-height: 1.5;
    font-size: 14px;
}