@font-face {
    font-family: 'titulos';
    src: url(../css/fonts/Stencilia-A.ttf) format('truetype');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'cuerpo-r';
    src: url(../css/fonts/Montserrat-Regular.ttf) format('truetype');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'cuerpo-l';
    src: url(../css/fonts/Montserrat-Light.ttf) format('truetype');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'cuerpo-b';
    src: url(../css/fonts/Montserrat-Bold.ttf) format('truetype');
    font-style: normal;
    font-weight: normal;
}
img{
    width: 100%;
}
.decor{
    max-width: 600px;
    width: 100%;
    display: block;
    margin: auto;
}
body{
    background: url(../img/bg.png) top;
    background-size: 100%;
    background-repeat: repeat;
    font-family: 'cuerpo-l';
}
h1, h2, h3, h4, h5, h6{
    font-family: 'titulos';
    color: #0d3b6b;
}
h2{
    font-size: 75px;
}
h3{
    font-size: 56px;
}
h4{
    font-size: 65px;
}
h5{
    font-size: 46px;
}
h6{
    font-size: 43px;
}
p{
    font-size: 33px;
    text-align: justify;
    margin-bottom: 50px;
}
b{
    font-family: 'cuerpo-b';
}
.row{
    display: flex;
}
.align-items-center{
    align-items: center;
}
.justify-content-between{
    justify-content: space-between;
}
.d-flex{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
}
.d-flex-alt{
    display: flex;
}
@media (max-width:991px) {
    .decor{
        max-width: 400px;
    }
    h2{
        font-size: 45px;
    }
    h3{
        font-size: 36px;
    }
    h4{
        font-size: 43px;
    }
    h5{
        font-size: 30px;
    }
    h6{
        font-size: 24px;
    }
    p{
        font-size: 23px;
        text-align: justify;
        margin-bottom: 40px;
    }
}
@media (max-width:767px){
    .container{
        /*max-width: 350px;*/
    }
    .decor{
        max-width: 200px;
    }
    h2{
        font-size: 23px;
    }
    h3{
        font-size: 15.5px;
    }
    h4{
        font-size: 16px;
    }
    h5{
        font-size: 12px;
    }
    h6{
        font-size: 14px;
    }
    p{
        font-size: 13px;
        text-align: justify;
        margin-bottom: 20px;
    }
    .d-flex{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 0px;
    }
}

/* header */
#header .title{
    background: #ff195c;
    padding: 30px;
    border-bottom: 20px #1c2e92 solid;
}
#header .content-description{
    padding: 80px 0;
}
#header .content-description-text h3{
    margin-bottom: 50px;
}
@media (max-width:991px){
    #header .title{
        padding: 15px;
        border-bottom: 15px #1c2e92 solid;
    }
    #header .content-description{
        padding: 30px 0;
    }
    #header .content-description-text h3{
        margin-bottom: 30px;
    } 
}
@media (max-width:767px){
    #header .title{
        padding: 10px;
        border-bottom: 10px #1c2e92 solid;
    }
    #header .content-description{
        padding: 10px 0;
    }
    #header .content-description-text h3{
        margin-bottom: 0px;
    } 
}

/* contact */
#contact{
    z-index: 1;
}
#contact .card-block{
    padding-bottom: 60px;
}
#contact .form{
    max-width: 850px;
    width: 100%;
    display: block;
    margin: auto;
    padding-top: 50px;
}
#contact .form-group{
    margin-bottom: 35px;
}
#contact .form-group select{
    background: #c8d1fc;
    width: 100%;
    border-style: none;
    font-size: 35px;
    height: 75px;
    text-indent: 16px;
    color: #000;
}
#contact .form-group input{
    background: #c8d1fc;
    width: 100%;
    border-style: none;
    font-size: 35px;
    height: 75px;
    text-indent: 20px;
    color: #000;
}
#contact .form-group input::placeholder{
    color: #000;
    opacity: 1;
}
#contact .form-group-check{
    margin-bottom: 35px;
}
#contact .form-group-check input{
    height: 20px;
    width: 25px;
    margin-right: 7px;
}
#contact .form-group-check label{
    font-size: 28px;
}
#contact .form-group-check label a{
    text-decoration: none;
    color: #000;
}
#contact .btn-send{
    display: flex;
    justify-content: center;
}
#contact .btn-send .btn{
    background: #ffff00;
    border-style: none;
    border-radius: 0;
    font-family: 'titulos';
    font-size: 45px;
    padding: 5px 60px;
    box-shadow: 3px 3px 5px 5px rgba(0, 0, 0, 0.7);
    color: #223198;
}
@media (max-width:991px){
    #contact .card-block{
        padding-bottom: 20px;
    }
    #contact .form{
        max-width: 600px;
        padding-top: 30px;
    }
    #contact .form-group{
        margin-bottom: 30px;
    }
    #contact .form-group select{
        background: #c8d1fc;
        width: 100%;
        border-style: none;
        font-size: 25px;
        height: 65px;
        text-indent: 16px;
        color: #000;
    }
    #contact .form-group input{
        background: #c8d1fc;
        width: 100%;
        border-style: none;
        font-size: 25px;
        height: 65px;
        text-indent: 20px;
        color: #000;
    }
    #contact .form-group-check{
        margin-bottom: 30px;
    }
    #contact .form-group-check input{
        height: 19px;
        width: 19px;
        margin-right: 7px;
    }
    #contact .form-group-check label{
        font-size: 20px;
    }
    #contact .btn-send .btn{
        background: #ffff00;
        border-style: none;
        border-radius: 0;
        font-family: 'titulos';
        font-size: 35px;
        padding: 5px 60px;
        box-shadow: 3px 3px 5px 5px rgba(0, 0, 0, 0.7);
        color: #223198;
    }
}
@media (max-width:767px){
    #contact{
        padding-bottom: 100px;
        background-position: 0 98%;
    }
    #contact .card-block{
        padding-bottom: 10px;
    }
    #contact .form{
        max-width: 280px;
        padding-top: 10px;
    }
    #contact .form-group{
        margin-bottom: 15px;
    }
    #contact .form-group select{
        background: #c8d1fc;
        width: 100%;
        border-style: none;
        font-size: 15px;
        height: 40px;
        text-indent: 16px;
        color: #000;
    }
    #contact .form-group input{
        background: #c8d1fc;
        width: 100%;
        border-style: none;
        font-size: 15px;
        height: 40px;
        text-indent: 20px;
        color: #000;
    }
    #contact .form-group-check{
        margin-bottom: 15px;
    }
    #contact .form-group-check input{
        height: 12px;
        width: 12px;
        margin-right: 7px;
    }
    #contact .form-group-check label{
        font-size: 10px;
    }
    #contact .btn-send .btn{
        background: #ffff00;
        border-style: none;
        border-radius: 0;
        font-family: 'titulos';
        font-size: 18px;
        padding: 5px 30px;
        box-shadow: 3px 3px 5px 5px rgba(0, 0, 0, 0.7);
        color: #223198;
    }
}

/* decoration */
#decoration{
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    margin-top: -100px;
    align-items: flex-end;
}
#decoration .lat{
    opacity: .4;
    max-width: 700px;
}
#decoration .center{
    max-width: 500px;
    width: 100%;
}

/* tarot */
#tarot{
    background: url(../img/bg-eltarot.png) center;
    padding: 0 0 50px 0;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    z-index: 0;
}
#tarot::before {
    content: "";
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #fff);
    position: absolute;
    bottom: 0;
    top: 0px;
    left: 0;
    right: 0;
    z-index: -1;
}
#tarot .title h2{
    color: #000;
}
#tarot .title .second-line{
    margin-top: 40px;
}
#tarot .img-tarot img{
    max-width: 500px;
    float: right;
}
#tarot .content-text{
    margin-top: 70px;
}
#tarot .final-content-text h5, #tarot .final-content-text h6 {
    color: #000;
}
#tarot .final-content-text h6{
    margin-bottom: 40px;
}
@media (max-width:991px){
    #tarot .img-tarot img{
        max-width: 300px;
        float: right;
    }
    #tarot .title .second-line{
        margin-top: 20px;
    }
    #tarot .content-text{
        margin-top: 30px;
    }
    #tarot .final-content-text h6{
        margin-bottom: 20px;
    }
}
@media (max-width:767px){
    #tarot{
        padding: 0 0 20px 0;
    }
    #tarot .img-tarot img{
        max-width: 120px;
        float: right;
    }
    #tarot .title .second-line{
        margin-top: 10px;
    }
    #tarot .content-text{
        margin-top: 20px;
    }
    #tarot .final-content-text h6{
        margin-bottom: 10px;
    }
}

/* decor-alt */
#decor-alt{
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0), #fff);
}

/* vida */
#vida{
    background: url(../img/bg-tarot-vida.png) center;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    z-index: 0;
}
#vida::before {
    content: "";
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #fff);
    position: absolute;
    bottom: 0;
    top: 0px;
    left: 0;
    right: 0;
    z-index: -1;
}
#vida .title h4{
    color: #000;
    margin-bottom: 30px;
}
#vida .title-al{
    padding-bottom: 50px;
}
#vida .title-al h5{
    color: #000;
    margin-bottom: 50px;
}
@media (max-width:991px){
    #vida .title-al{
        padding-bottom: 20px;
    }
    #vida .title-al h5{
        color: #000;
        margin-bottom: 30px;
    }
}
@media (max-width:767px){
    #vida .title-al{
        padding-bottom: 20px;
    }
    #vida .title-al h5{
        color: #000;
        margin-bottom: 10px;
    }
}

/* call-to-action */
#call-to-action{
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #fff);
    padding: 50px 0;
}
#call-to-action h5{
    color: #000;
}
#call-to-action .btn-principal{
    display: flex;
    justify-content: center;
    margin: 60px 0;
}
#call-to-action .btn-principal .btn{
    background: #ffff00;
    border-style: none;
    border-radius: 0;
    font-family: 'titulos';
    font-size: 45px;
    padding: 5px 40px;
    box-shadow: 3px 3px 5px 5px rgba(0, 0, 0, 0.7);
    color: #000;
}
#call-to-action .btn-second{
    display: flex;
    justify-content: center;
}
#call-to-action .btn-second .btn{
    background: #ff195c;
    border-style: none;
    border-radius: 0;
    font-family: 'cuerpo-b';
    font-size: 65px;
    padding: 0px 20px;
    box-shadow: 3px 3px 5px 5px rgba(0, 0, 0, 0.7);
    color: #000;
}
#call-to-action .btn-second .btn img{
    max-width: 70px;
    margin-top: -10px;
}
#call-to-action .second-line{
    margin-top: 50px;
}
#call-to-action .alert{
    font-size: 30px;
    margin-top: -5px;
}
@media (max-width:991px){
    #call-to-action{
        padding: 30px 0;
    }
    #call-to-action .btn-principal{
        display: flex;
        justify-content: center;
        margin: 30px 0;
    }
    #call-to-action .btn-principal .btn{
        background: #ffff00;
        border-style: none;
        border-radius: 0;
        font-family: 'titulos';
        font-size: 35px;
        padding: 5px 40px;
        box-shadow: 3px 3px 5px 5px rgba(0, 0, 0, 0.7);
        color: #000;
    }
    #call-to-action .btn-second{
        display: flex;
        justify-content: center;
    }
    #call-to-action .btn-second .btn{
        background: #ff195c;
        border-style: none;
        border-radius: 0;
        font-family: 'cuerpo-b';
        font-size: 45px;
        padding: 0px 20px;
        box-shadow: 3px 3px 5px 5px rgba(0, 0, 0, 0.7);
        color: #000;
    }
    #call-to-action .btn-second .btn img{
        max-width: 40px;
        margin-top: -10px;
    }
    #call-to-action .second-line{
        margin-top: 30px;
    }
    #call-to-action .alert{
        font-size: 20px;
        margin-top: -5px;
    }
}
@media (max-width:767px){
    #call-to-action{
        padding: 10px 0;
    }
    #call-to-action .btn-principal{
        display: flex;
        justify-content: center;
        margin: 15px 0;
    }
    #call-to-action .btn-principal .btn{
        background: #ffff00;
        border-style: none;
        border-radius: 0;
        font-family: 'titulos';
        font-size: 15px;
        padding: 5px 40px;
        box-shadow: 2px 2px 3px 3px rgba(0, 0, 0, 0.7);
        color: #000;
    }
    #call-to-action .btn-second{
        display: flex;
        justify-content: center;
    }
    #call-to-action .btn-second .btn{
        background: #ff195c;
        border-style: none;
        border-radius: 0;
        font-family: 'cuerpo-b';
        font-size: 20px;
        padding: 0px 10px;
        box-shadow: 3px 3px 5px 5px rgba(0, 0, 0, 0.7);
        color: #000;
    }
    #call-to-action .btn-second .btn img{
        max-width: 20px;
        margin-top: -5px;
    }
    #call-to-action .second-line{
        margin-top: 10px;
    }
    #call-to-action .alert{
        font-size: 8px;
        margin-top: -10px;
    }
}

/* footer */
#footer p{
    font-size: 13px;
}
@media (max-width:991px){
    #footer p{
        font-size: 9px;
    }
}
@media (max-width:767px){
    #footer p{
        font-size: 7px;
    }
}

#popup-rgpd p {
    font-size: 12px;
}



.oculto {
    display: none;
}
.popup-806 {
    position: fixed;
    width: 100%;
    top: 136px;
    z-index: 10;
    left: 0;
}
.caja-806 {
    background: #f3f3f3;
    width: 940px;
    margin: 0 auto;
    border: 2px solid #1c2e92;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.75);
    font-family: 'Open Sans', sans-serif;
    border-radius: 8px;
    height: 374px;
    color: white;
}
.titulo-806 {
    padding: 10px 10px;
    border-bottom: 1px solid #1c2e92;
    background: #1c2e92;
    color: white;
    position: relative;
}
.cerrar-806 {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 27px;
    padding: 0px 10px;
    padding-bottom: 2px;
    background: #F44336;
    cursor: pointer;
    border-top-right-radius: 7px;
    color: white;
}
.cuerpo-806 {
    padding: 10px 10px;
    padding-bottom: 4px;
    overflow-y: auto;
    height: 313px;
}
.burbuja-806 {
    background: #e3e3e3;
    padding: 6px;
    border-radius: 6px;
    margin-bottom: 6px;
    color: #000;
}
.btn-popup {
    background-color: #1c2e92;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    padding: 0px 12px;
    margin: 0 auto;
    text-align: center;
    font-weight: 900;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 2px 0px;
    cursor: pointer;
    border: 0;
}
.btn-popup2 {
    background-color: #1c2e92;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    padding: 0px 12px;
    margin: 0 auto;
    text-align: center;
    font-weight: 900;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 2px 0px;
    cursor: pointer;
    border: 0;
    margin-top: 16px;
}
.btn-disabled {
    background-color: #afafaf;
    cursor: default;
}
.btn-selected {
    background-color: #476f9f;
    cursor: default;
}

@media only screen and (min-width:640px) and (max-width:980px){
    .popup-806 {
        top: 186px;
    }
    .caja-806 {
        width: 600px;
    }
}

@media only screen and (min-width:360px) and (max-width:639px){
    .popup-806 {
        top: 240px;
    }
    .caja-806 {
        width: 99%;
    }
}

@media only screen and (min-width:1px) and (max-width:359px){
    .popup-806 {
        top: 240px;
    }
    .caja-806 {
        width: 99%;
    }
}

@media (max-width:767px){
    .btn-popup2 {
        font-size: 10px;
        margin-top: 10px;
    }
}

.overlay {
    display: flex; /* Ocultar por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9;
}
.popup {
    background-color: #e91e63;
    padding: 0px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.pp-cerrar {
    position: absolute;
    top: 15px;
    right: 15px;
}
#close-btn {
    font-size: 90px;
    line-height: 46px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}
@media (max-width:767px){
    #close-btn {
        font-size: 50px;
        line-height: 30px;
    }
}

.icono-messenger {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: none;
}
.img-messenger {
    width: 60px;
    cursor: pointer;
}