@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

// fuente
$ff1: 'Montserrat', sans-serif;
$ff2: 'Plus Jakarta Sans', sans-serif;

$blanco: #ffffff;
$rojo: #ea0029;
$bordo: #30000a; 
$gris: #666666;
$gris_claro: #aaaaaa;
$negro: #000000;

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    // degrade 0deg del blanco al gris_claro desde el 50% al 100%
    background: linear-gradient(180deg, $blanco 80%, $gris_claro 100%);
    background-position: center;
    background-repeat: no-repeat;
    color: $negro;
    font-size: 14px;
    font-weight: 400;
    font-family: $ff1;
    overflow-x: hidden;
}

.fw-300{
    font-weight: 300!important;
}

.fw-400{
    font-weight: 400!important;
}

.fw-500{
    font-weight: 500!important;
}

.fw-600{
    font-weight: 600!important;
}

.fw-700{
    font-weight: 700!important;
}

.fw-900{
    font-weight: 900!important;
}

.br-20{
    border-radius: 20px!important;
}

.fs-xl{
    font-size: 3.2rem!important;

    @media (max-width: 768px){
        font-size: 2.6rem!important; 
    }
}

.fs-md{
    font-size: 2.6rem!important; 

    @media (max-width: 768px){
        font-size: 2rem!important; 
    }
}

.fc-gris{
    color: $gris!important;
}

.fc-gris_claro{
    color: $gris_claro!important;
}

.fc-rojo{
    color: $rojo!important;
}

.btn-danger{
    background-color: $rojo;
    color: $blanco;
    font-family: $ff2;
}

header{
    padding: 10px 80px;
    background-color: $blanco;
    font-family: $ff2;
    font-weight: 500;

    // en movil el padding es 10px 30px
    @media (max-width: 768px){
        padding: 10px 30px;
    }

    .img-logo{
        width: 100px;
    }

    .navbar{
        a{
            color: $gris_claro;
            text-decoration: none;

            &:hover{
                color: $rojo;
                text-decoration: none;
            }
        }
    }

}

.px-6{
    padding-left: 6rem!important;
    padding-right: 6rem!important;

    @media (max-width: 768px){
        padding-left: 30px!important;
        padding-right: 30px!important;
    }

}

#cabezal{
    background-color: $blanco;
    position: relative;
    height: 95vh;
    padding: 40px 0px;

    .bg-cabezal{
        position: absolute;
        top: 10px;
        left: 60px;
        width: 100%;
        height: 540px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;

        // en movil no se muestra
        @media (max-width: 768px){
            display: none;
        }
    }   

    .logocabezal{
        width: 246px;
        object-fit: contain;
        object-position: center;
        margin-bottom: 40px;

        // media query para movil
        @media (max-width: 768px){
            width: 176px;
            display: none;
        }
    }
    
}

#escuchar{
    position: relative;
    padding: 80px 0px;

    .pattern-l{
        position: absolute;
        top: 180px;
        left: -18%;
        width: 600px;
        height: 600px;
        background-image: url('./img/pattern.svg');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;

        // en movil no se muestra
        @media (max-width: 768px){
            display: none;
        }
    }

    .pattern-r{
        position: absolute;
        top: 0;
        right: -18%;
        width: 600px;
        height: 600px;
        background-image: url('./img/pattern.svg');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;

        // en movil no se muestra
        @media (max-width: 768px){
            display: none;
        }
    }
}

#callToAction{
    position: relative;
    display: flex;
    padding: 80px 0px;
    background-image: url('./img/background-2.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    color: $blanco;
    text-align: center;
}

#comofunciona{
    display: flex;
    padding: 80px 0px;
    min-height: 75vh;

    .card{
        background-color: transparent!important;
        border: none;
        height: 325px;

        .card-footer {
            background-color: transparent!important;
            border-top: none!important;
        }
    }
}

#registrarme{
    position: relative;
    display: flex;
    height: 680px;
    
    &::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('./img/background-register.png');
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .pattern-t{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('./img/pattern.svg');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
}


footer{
    padding: 50px 0px;
    background-color: $bordo;

    hr{
        border-top: 1px solid $blanco;
    }

    #navfooter{
        a{
            color: $blanco;
            text-decoration: none;

            &:hover{
                color: $gris_claro;
                text-decoration: none;
            }
        }
    }
}


.modal-header {
    padding: 0.5rem 1rem;
    border-bottom: none!important;
}