@import url(/font/CeraPro/font.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cera Pro', Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
}

/* ---------------------------mobile--------------------------- */

html {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar-thumb {
    background-color: rgba(182, 182, 182, 1);
    border-radius: 20px;
    border: 5.5px solid #f8f6f1;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #b3a369;
}

body::-webkit-scrollbar-track {
    background-color: #f8f6f1;
}

body::-webkit-scrollbar {
    -webkit-appearance: none;
}


body {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    padding: 2.4rem;
    gap: 1rem;
    align-items: center;
}

.logo {
    width: 6rem;
    transform: scale(0.7);
    opacity: 0;
    transition: .5s ease-in-out all;
}

.title {
    color: #b3a369;
    font-size: 5rem;
    text-align: start;
    font-weight: 900;
    padding: 2rem 0 1rem 0;
    opacity: 0;
}

.text {
    color: #13294b;
    font-weight: 500;
    font-size: 1.5rem;
    text-align:left;
    word-spacing: 0rem;
    padding-bottom: 1rem;
    opacity: 0;
}

.invitation {
    color: #13294b;
    font-weight: 400;
    font-size: 1.2rem;
    text-align: left;
    padding: 0.3rem 0.3rem 0 0;
    opacity: 0;
}



.content-expand2,
.content-expand1 {
    display: flex;
    align-items: center;
    justify-content:space-between;
    width: 100%;
    padding: 1rem;
    background-color: #f8f6f1;
    opacity: 0;
    transition: .3s ease-in-out all;
}

#a-div-expand1,
#a-content-expand2 {
    display: flex;
    align-items: center;
    justify-content:space-between;
    width: 100%;
}

.expand-more,
.fa-chevron-down,
.expand-contact,
.fa-chevron-up {
    color: #b3a369;
    font-size: 1.2rem;
}

.overlay {
    padding: 1rem;
    display: none;
    opacity: 0;
    transition-property: opacity;
    transition: opacity .3s ease-in-out 1s
}

.title-popup {
    color: #b3a369;
    padding-bottom: 1.5rem;
    font-size: 2rem;
    text-align: start;
    opacity: 0;
}

.title-popup2 {
    color: #b3a369;
    font-size: 1.5rem;
    opacity: 0;
}

.popup p {
    color: #13294b;
    font-size: 1.25rem;
    font-weight: normal;
    opacity: 0;
}

.popup a {
    color: #b3a369;
    font-weight: 500;
}

.popup span {
    font-weight: bold;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content:space-evenly;
    padding: 1rem;

}

.fa-whatsapp,
.fa-instagram,
.fa-facebook,
.fa-facebook-messenger {
    font-size: 2.25rem;
    text-align: center;
}

.activeup {
    padding: 1rem;
    display: block;
    opacity: 1;
    transition: opacity .3s ease-in-out 1s

}

.activeup .popup h2 {
    animation: title-popup .8s ease .2s forwards;
}

.activeup .popup p {
    animation: texto 1s ease .4s forwards;
}

@keyframes title-popup {
    from {
        transform: translateY(25px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes texto {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


footer {
    padding: 3rem 0 0 0;
    width: 100%;
}

footer h5 {
    color: #d9d2b5;
    font-size: 0.85rem;
}

/*------------------------------------------------------------------------------------*/
/* ----------------------------- animation viwport -----------------------------------*/

.logo.show {
    transform: scale(1);
    opacity: 1;
}

.title.show {
    animation: titleshow .8s ease .5s forwards;
}

.text.show {
    animation: textshow .8s ease .8s forwards;
}

.invitation.show {
    animation: invitationshow .8s ease 1s forwards;
}

.content-expand1.show,
.content-expand2.show {
    animation: expandshow .8s ease 1.3s forwards;
}


@keyframes titleshow {
    from {
        transform: translateY(25px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes textshow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes invitationshow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes expandshow {
    from {
        transform: translateY(15px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*------------------------------------------------------------------------------------*/
/* ----------------------------- web version -----------------------------------*/

@media screen and (min-width: 1024px) {

    body {
        padding: 0rem;
        height: 100vh;
        box-sizing: border-box;
    }

    .logo {
        padding-top: 2rem;
        width: 4.5rem;
    }

    .title {
        text-align: center;
        font-size: 3rem;
        padding: 0 0 1rem 0;
    }

    .text {
        padding-right: 12rem;
        padding-left: 12rem;
        text-align: center;
        font-size: 1.3rem;
    }

    .invitation {
        text-align: center;
    }

    .expand-contact,
    .expand-more {
        font-weight: normal;
    }

    .content-expand2,
    .content-expand1 {
        width: 20%;
        padding: .5rem;
        display: flex;
        justify-content: space-between;
        /* border-style:solid; */
        border-radius: 3px;
        border-width: 1.5px;
        border-color: rgba(179,163,105, .15);
        background-color: #f8f6f1;
    }

    #a-div-expand1,
    #a-content-expand2 {
        display: flex;
        align-items: center;
        justify-content:center;
        gap: 40%;
        width: 100%;
    }

    .content-expand1 i,
    .content-expand2 i {
        color: #d9d2b5;
    }

    .content-expand2.exp,
    .content-expand1.exp {
        width: 100%;
        background-color: #b3a369;
        border-radius: 0%;
        padding-right: 15rem;
        padding-left: 15rem;
    }

    .content-expand2:hover,
    .content-expand1:hover {
        background-color: #c9be95;
    }

    .content-expand2:hover h4,
    .content-expand1:hover h4 {
        color: #FFFFFF;
        font-weight: 500;
    }

    .content-expand2:hover i,
    .content-expand1:hover i {
        color: #FFFFFF;
    }


    .content-expand1.exp h4,
    .content-expand2.exp h4 {
        color: #FFFFFF;
        font-size: 1.5rem;
    }

    .content-expand1.exp i,
    .content-expand2.exp i {
        color: #FFFFFF;
    }

    .popup {
        padding: 1rem 14rem 1rem 14rem;
        /* background-color: #FBFAF8; */
    }

    .popup p {
        text-align: justify;
    }

    #popup {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    #popup p {
        padding: .5rem 0 .5rem 0;
    }

    #popup2 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    #popup2 .social-media {
        display: flex;
        flex-direction: row;
        justify-content:center;
        text-align: center;
        align-items: center;
        gap: 2rem;
    }

    #popup2 .correos {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .title-popup {
        font-size: 3rem;
    }

    .title-popup2 {
        font-size: 2.5rem;
        text-align: center;
    }

    footer {
        margin-top: 100%;
        width: 100%;
        height: 100%;
        box-sizing: content-box;
        margin: 0;
        padding: 0;
        background-color: #13294b;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    footer h5 {
        color: #d9d2b5;
        font-weight: normal;
        font-size: .88rem;
        padding: 1rem 0 1rem 0;
    }
    
}

footer p {
    display: none;
}

@media screen and (min-width: 1440px){

    footer {
        margin-top: 6rem;
    }

    footer p {
        display: block;
        text-align: center;
        width: 100%;
        font-weight: bold;
        color: #d9d2b5;
        font-size: 1rem;
        padding: 1rem 18rem 1rem 18rem;
    }

    .logo {
        width: 7rem;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    .title {
        font-size: 5rem;
        padding-bottom: 1.6rem;
    }

    .text {
        font-size: 2rem;
        padding: 1rem 18rem 1rem 18rem;
    }

    .invitation {
        padding: 1rem 18rem 1rem 18rem;
    }

    #a-content-expand2 {
        margin-top: 2rem;
    }

    #a-div-expand1 {
        margin-bottom: 2rem;
    }

    #text-popup__div2 p {
        text-align: center;
    }

    .title-popup {
        text-align: center;
    }
}


