@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Momo+Trust+Display&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
}

:root{
    --color--1: rgb(20,148,45);
    --color--2: rgb(226,249,249);
    --color--3: rgb(8, 82, 120);
    --color--4: rgb(202,136,24);
    --color--5: rgb(228,164,30);
    --color--6: rgb(56,199,188)
}



body{
    position: relative;
}

.first-content{
    height: 100dvh;
    width: 100%;
    background: linear-gradient(#ffffffb0),url('IMG-20251104-WA0059.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: row;
}

.first-content_header{
    width: 100%;
    border-bottom: 2px solid var(--color--2);
    
}

.header-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-inline: 7%;
    padding-top: 20px;
    position: fixed;
    z-index: 10001;
    width: 100%;
}



.logo_header{
    width: 80px;
    height: 80px;
    display: none;
}

.logo_header:hover{
    transform: scale(1.1);
    transition: 0.3s ease;
}

.ri-menu-line{
    font-size: 3rem;
    color: var(--color--1);
    font-weight: bold;
    padding: 5px;
}

.ri-menu-line:hover{
    cursor: pointer;
}

.nav-bar{
    background: rgba(255,255,255,0.2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 3rem;
    position: fixed;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: none;
}

.link{
    font-size: 2rem;
    color: var(--color--1);
    font-family:"Momo Trust Display", sans-serif ;
}

.visible{
    display: flex;
}

.text-container{
    margin-block: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 50%;
}

.otra-caja{
    margin: auto;
}

.title{
    font-size: 3.2rem;
    color: var(--color--3);
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: none;
}

.title-header{
    display: block;
}


.title span{
    color: var(--color--1);
}

.subtitle{
    font-size: 2.3rem;
    color: var(--color--3);
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
}

.phrase{
    font-size: 2.0rem;
    font-weight: 600;
    color: var(--color--3);
    margin-top: 1rem;
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
}

.phrase span{
    color: var(--color--1);
    font-size: 2.2rem    ;
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.second-division{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-space{
    width: 400px;
    margin: auto;
    height: 400px;
    display: block;
    position: relative;
}



.img{
    border-radius: 50% ;
    width: 400px;
    height: 400px;
}

.ri-whatsapp-line{
    color: white;
    background-color: green;
    position: absolute;
    right: 5%;
    bottom: 4%;
    font-size: 3rem;
    border-radius: 50%;
    padding: 10px;
    transition: 0.5s ease ;
}

.ri-whatsapp-line:hover{
    transform: scale(1.1);
}

.btn{
    all:unset;
    margin-left: 20%;
    font-size:1.5rem;
    margin-top: 2rem;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 2px solid var(--color--3);
    color: var(--color--3);
    font-family: "Momo Trust Display",sans-serif;
    text-align: center;
    animation-name: palpitar;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.btn span{
    color: var(--color--1);
}

.btn:hover{
    cursor: pointer;
}




@media (width<900px) {
    .text-container{
        width: 100%;
    }
    .ri-menu-line{
        font-size: 2.5rem;
    }
    .ri-whatsapp-line{
        font-size: 2.5rem;
    }
    .logo_header{
        width: 60px;
        height: 60px;
        display: block;
    }
    .second-division{
        display: none;
    }

    .title{
        font-size: 2.3rem;
        display: block;
    }

    .title-header{
        display: none;
    }

    .subtitle{
        font-size: 2.0rem;
    }
    .phrase{
        font-size: 1.7rem;
    }
    .btn{
        margin-top: 4rem;
        padding: 6px;
        font-size: 1.3;
    }
}

@keyframes palpitar {
    from{
        
    } to {
        transform: scale(1.1);
    }
}