/*LANDING PAGE*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --rc-primary-color: #666AA3;
    --rc-secondary-color: #AE72AE;
    --rc-secondary-color-light: #E7D4E7;
}

* {
    box-sizing: border-box;
    -webkit-user-drag: none;
    position: relative;
    font-family: 'Montserrat', sans-serif !important;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

#close-menu {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    display: none;
}

p {
    color: #6668ae;
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 300;
    margin-top: 0;
}

.min-height {
    min-height: 100%;
}

.main-p {
    color: inherit;
    font-size: 1.25rem;
    font-weight: 300;
    margin-top: 0;
}

.topnavbar ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 10px 0;
}

    .topnavbar ul li {
        list-style: none;
        flex: 0 0 33.333333%;
        align-items: center;
        display: flex;
    }


a {
    text-decoration: none;
    color: inherit;
}

img, svg {
    /* img { */
    max-width: fit-content;
    height: auto;
    object-fit: contain;
}

label {
    font-size: 10px;
    display: inline;
    vertical-align: top;
}

body {
    padding: 0;
    margin: 0;
    color: var(--rc-primary-color);
}

main {
    /*    max-width: 1400px;
*/ background: white;
    padding: 0;
    margin: 0 auto;
    position: relative;
}

    main section {
        position: relative;
        width: 100%;
        background-color: white;
        background-repeat: no-repeat;
        overflow: hidden;
    }

.btn {
    padding: 0.25rem 1.25rem;
    border-radius: 0.875rem;
    font-size: 1.1rem;
    border: none;
    font-weight: 500;
    text-align: center;
}

.fullpageLanding::before {
    content: "";
    background-image: url('/Statics/Img/FondosPantalla/fondo-fotos-distorsionado1920x1080.jpg');
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.3;
    background-repeat: repeat;
}

.fullpageLanding {
    align-items: start;
    padding-top: 10%;
    padding-bottom: 2rem;
    justify-content: center;
}


.background-banner2::before {
    content: "";
    background-image: url(/Content/LandingPage/slider-bg.png);
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.9;
    background-repeat: repeat;
}


.btn.btn-primary {
    background-color: var(--rc-primary-color);
    color: white;
    font-size: 1.1rem;
}

.btn.btn-secondary {
    background-color: var(--rc-secondary-color);
    color: white;
}

.bg-primary-color {
    color: white;
    background: var(--rc-primary-color);
}

.bg-secondary-color {
    color: white;
    background: var(--rc-secondary-color);
}

.bg-secondary-color-light {
    color: var(--rc-primary-color);
    background: var(--rc-secondary-color-light);
}

.bg-white {
    background: white !important;
}

.text-primary-color {
    color: var(--rc-primary-color);
}

.text-secondary-color {
    color: var(--rc-secondary-color);
}

.border-left-purple {
    border-left: 1px solid #6668ae;
}

.border-left-white {
    border-left: 1px solid white;
}

.text-highlight {
    border-left: 2px solid var(--rc-primary-color);
    padding-left: 2rem;
    font-weight: 300;
    font-size: 2.25rem;
    line-height: 2.5rem;
}

    .text-highlight strong {
        color: var(--rc-secondary-color);
        font-weight: 800;
    }

.text-container {
    width: 100%;
    padding: 1rem 2rem;
    color: white;
}

.text-box {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.border-circle {
    display: block;
    border: none;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 100%;
    width: fit-content;
}

    .border-circle:before {
        content: '';
        border-radius: 100%;
        background-color: inherit;
        width: 1.75em;
        height: 1.75em;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: -1;
    }

.separator-left-primary::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--rc-primary-color);
    height: 80%;
    left: 2px;
    top: 2rem;
    transform: translateY(0%);
}

#lineBorder {
    width: 50%;
    margin: 20px auto;
    border: 1.5px solid #6668ae;
}

header {
    display: flex;
    flex-direction: column;
    width: 100%;
}

    header .text-container.social {
        padding: 0.5rem 2rem;
        background: var(--rc-secondary-color);
    }

    header .text-container.nav {
        padding: 0.25rem 2rem;
        background: var(--rc-primary-color);
    }

    header .nav .text-box {
        justify-content: space-between;
    }

    header .nav nav {
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        justify-content: space-around;
    }

        header .nav nav a {
            font-size: 1.2rem;
            color: white;
            padding: 1rem;
            white-space: nowrap;
        }

    header .social .text-box {
        justify-content: flex-end;
    }

    header .title {
        font-size: 1rem;
        font-weight: 700;
        margin: 0 2rem;
    }

    header img.icon {
        padding: 0 0.25rem;
        height: 1rem;
    }

    header img.logo {
        height: 3rem;
    }

/*SECCIONES*/
#banner {
    background-color: white;
    border-bottom: 10px solid var(--rc-primary-color);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

    #banner .img-mvl {
        margin-top: 2rem;
        max-width: 40%;
        width: 100%;
        flex-grow: 0;
        flex-shrink: 1;
        align-self: flex-end;
    }

    #banner .box-round {
        position: relative;
        max-width: 50%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        flex-grow: 1;
        background-color: white;
        border-top-left-radius: 50%;
        border-bottom-left-radius: 50%;
        padding: 1rem 2.5rem 5rem 5rem;
        aspect-ratio: 1;
        transform: translateY(7.5%);
    }

        #banner .box-round > * {
            max-width: 100%;
        }

        #banner .box-round div > img {
            width: 100%;
            max-width: 70%;
            margin-left: calc(2rem + 4px);
            margin-bottom: 2rem;
        }

    #banner .img-addon-left-centered {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(-60%, -50%);
        max-width: 25%;
    }

.columns-section {
    display: flex;
    flex-direction: column;
}

    .columns-section > div {
        display: flex;
        flex-direction: row;
    }

        .columns-section > div > div {
            display: flex;
            flex-direction: column;
            flex: 1;
            flex-grow: 1;
            padding: 2rem;
            align-items: center;
        }

#intro {
    padding: 2rem 0.5rem;
}

    #intro > img {
        max-width: 460px;
        width: 100%;
    }

    #intro > div > div > button {
        font-size: 2.5rem;
    }

#app p {
    color: var(--rc-secondary-color);
    font-weight: 400;
    font-size: 4rem;
    text-align: center;
    padding: 0;
    margin-bottom: 1rem;
}

    #app p strong {
        font-size: 3rem;
        font-weight: 800;
    }

#usuario > div.hide-mobile > div {
    position: relative;
}

    #usuario > div.hide-mobile > div > div {
        aspect-ratio: 1.25;
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        justify-content: center;
    }

        #usuario > div.hide-mobile > div > div > img {
            width: 100%;
            object-fit: cover;
        }

        #usuario > div.hide-mobile > div > div > p {
            max-width: 75%;
            margin-left: 10%;
            margin-right: auto;
        }

.centered-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.overlapping-next {
    margin-bottom: -26% !important;
    z-index: 1;
}

.menores {
    background-image: url('../Content/LandingPage/bg-cruz-recoletas.png');
    background-size: auto 80%;
    background-position: right bottom;
    background-repeat: no-repeat;
}

#asunto span {
    color: grey;
}

#asunto option {
    color: grey;
    border-color: var(--rc-primary-color);
}



@media (min-width:767px) and (max-width: 1024px) {
    header .nav nav a {
        font-size: .875rem;
        white-space: nowrap;
    }

    header img.logo {
        height: 2rem;
    }

    .btn {
        font-size: 1rem;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        font-size: .75rem;
    }
}


@media (max-width: 767px) {

    input[type="color"],
    input[type="date"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="email"],
    input[type="month"],
    input[type="number"],
    input[type="password"],
    input[type="search"],
    input[type="tel"],
    input[type="text"],
    input[type="time"],
    input[type="url"],
    input[type="week"],
    select:focus, textarea, select,
    #asunto span {
        font-size: 12px;
    }


    .text-container.nav {
        padding: 0.25rem !important;
    }

        .text-container.nav .logo {
            width: 100%;
            max-width: 160px;
            height: auto !important;
        }

        .text-container.nav a.btn {
            font-size: 14px;
        }

    .hide-mobile {
        display: none !important;
    }

    nav {
        display: none;
        /* height: 0px; */
        opacity: 1;
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        /* z-index: -1; */
        transition: all 0.5s ease-in-out;
        flex-direction: column !important;
        padding: 3rem;
        justify-content: flex-start !important;
        background-color: var(--rc-primary-color);
    }

        nav a {
            font-size: 3rem;
            padding-bottom: 1rem;
        }

        nav.show {
            display: block;
            opacity: 1;
            height: 100vh;
            z-index: 99;
        }

    #close-menu {
        display: block;
    }

    .text-highlight {
        border-left: 2px solid var(--rc-primary-color);
        padding-left: 1rem;
        font-weight: 300;
        font-size: 3rem;
        line-height: 3rem;
    }

    p, .main-p {
        color: inherit;
        font-size: 1rem;
        font-weight: 300;
        margin-top: 0;
    }



    .separator-banner img {
        height: 5.5rem !important;
        object-fit: cover !important;
    }

    .btn {
        padding: 0.25rem 0.5rem;
        border-radius: 0.875rem;
        font-size: 1.25rem;
        border: none;
        font-weight: 500;
        text-align: center;
    }

    .menores {
        background-size: 25% auto;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 12px;
    }

    .show-mobile {
        display: none !important;
    }
}

@media (min-width: 1400px) {
    html {
        font-size: 14px;
    }
}
