



/*FUENTES*/




@font-face {
    font-family: Principal;
    src: url(./fonts//PALSCRI.TTF);
}

@font-face {
    font-family: Secundaria;
    src: url(./fonts/POORICH.TTF);
}


@font-face {
    font-family: General;
    src: url(./fonts/Origin-Light.otf);
}

:root {
    --contador: #ab8557;
    --botones: #ab8557;
    --botones-hover: #886943;
    --texto-botones: #ffffff;

    --texto-a: #ffffff;
    --texto-b: #000000;

    --texto-especial: #404041;
    --fondo-especial: #ffffff;

    --titulo: #ffffff;
    --subtitulo: #F7F6F2;
    --fecha: rgb(255, 255, 255, 0.8);
    --titulo-secundario: #000000;

    --fondo: #F7F6F2;
    --fondo-secundario: #000000;

    --deco: #ffffff;
}





/*GENERAL*/






body{
    font-family: General;
    background-color: var(--fondo);
    margin: 0;
    background-image: url(./content/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.foto__perfil{
    border-radius: 100%;
    margin: 10px 0 0 0;
    width: 250px;
}

.cabeza{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5)
    ,rgba(0, 0, 0, 0.5)) ,url(./content/bg_banner.jpg);
    background-position: center;
    position:relative;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.cabeza__contenedor{
    overflow: hidden;
}

.titulo{
    font-size: 80px;
    font-family: Principal;
    text-align: center;
    position: relative;
    bottom: 15px;
    color: var(--titulo);
    margin: 10px;
}

.subtitulo{
    font-size: 24px;
    text-align: center;
    position: relative;
    bottom: 35px;
    color: var(--subtitulo);
    width: 100%;
    font-family: Secundaria;
    text-transform: uppercase;
    margin: 0;
}

.fecha{
    font-size: 20px;
    text-align: center;
    position: relative;
    bottom: 40px;
    color: var(--fecha);
    width: 100%;
    font-family: Secundaria, 'Times New Roman', Times, serif;
    text-transform: uppercase;
    margin: 0;
}

.dot__deco{
    font-size: 30px;
    text-align: center;
    position: relative;
    bottom: 55px;
    margin: 0;
    color: var(--deco);
}

.confirmacion1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.texto{
    text-align: center;
    background-color: var(--fondo-especial);
    color: var(--texto-especial);
    padding: 20px;
    margin: 20px 10%;
    font-size: 16px;
    border-style: double;
    text-transform: uppercase;
    line-height: 50px;
    letter-spacing: 5px;
}

.art__deco{
    margin: 25px 0 8px 0;
}




.hoteles{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5)
    ,rgba(0, 0, 0, 0.5)) ,url(./content/hoteles.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 5% 0 0 0;
    padding: 40px 0;
}

.titulo__ubicacion{
    font-size: 90px;
    font-family: Principal;
    text-align: center;
    color: var(--texto-a);
    margin: 15px 0;
}

.descripcion{
    color: var(--texto-a);
    font-size: 18px;
    text-align: center;
    margin: 20px 0;
}


/*USAR PARA GRID*/
.parientes{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    align-items: center;
}
/*USAR PARA GRID*/

.group__parents{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media(max-width: 786px){
    .parientes{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.parientes__titulo{
    text-align: center;
    font-size: 100px;
    font-family: Principal;
    margin: 0;
    color: var(--titulo-secundario);
}

.parientes__texto{
    text-align: center;
    font-size: 20px;
    margin: 25px 0;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.perfil__margen{
    margin: 0;
}

.banners{
    width: 100%;
}

.foto{
    width: 100%;
}

.icon{
    width: 120px;
}











/*MAPAS*/

.map__container{
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    justify-content: center;
    margin: 20px 0;
}

.map1{
    width: 90vw;
    height: 30vh;
    border-radius: 20px;
}


.ubicacion{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5)
    ,rgba(0, 0, 0, 0.5)) ,url(./content/background_black.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 5% 0 0 0;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}















/*CODIGO DE VESTIMENTA*/

.codigo__vestimenta{
    background-color: var(--fondo-secundario);
    padding: 40px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0 20px 0;
}

.texto__codigo{
    color: var(--texto-a);
    font-size: 20px;
    position: relative;
    top: -20px;
}

.icono__codigo{
    width: 140px;
    margin: 0 0 30px 0;
}











/* BOTONES */

.button{
    text-align: center;
    background-color: var(--botones);
    padding: 20px;
    color: var(--texto-botones);
    text-decoration: none;
    border-radius: 30px;
}

.button__nobg{
    text-align: center;
    padding: 20px;
    color: var(--texto-a);
    text-decoration: none;
    border-radius: 30px;
}

.button:hover{  
    background-color: var(--botones-hover);
}













/* CONTADOR */

.contenedor__contador{
    background-color: var(--contador);
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: var(--texto-a);
    font-family: Secundaria;
    margin: 10px;
    border-radius: 20px;
    padding: 0 20px;
}

.texto__contador{
    color: var(--texto-a);
    font-size: 35px;
}

#contador{
    display: flex;
}

.simply-section {
    border-radius: 20px;
    padding: 10px 12px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.simply-amount {
    display: block;
    font-size: 50px;
}

@media(max-width: 786px){
    .simply-section{
        border-radius: 15px;
        width: 10vw;
        margin: 5px;
    }
    .simply-amount {
        font-size: 30px;
    }
    .texto__contador{
        font-size: 25px;
    }
}

.down{
    margin: 20px;
    opacity: 0.5;
}














/*SPAWNER*/

.spawn__display{
    display: none;
}












/*FIRMA FOOTER*/

.firma{
    background-color: black;
    padding: 20px;
    text-align: center;
    color: var(--texto-a);
    font-size: 12px;
    display: flex;
    flex-direction: column;
}
