/************************* Aplicar fondo al body ***************************/

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #617903;
    font-family: "Montserrat", sans-serif;
}

body {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #617903;
    font-family: "Montserrat", sans-serif;
    background-image: url('img/fondo.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    justify-content: center;
    align-items: center;

}


/****************** Container ********************/

.container {
    display: grid;
    height: 70vh;
    width: 50%;
    justify-content: center;
    align-items: center;
}

/***************** Primera fila ******************/

.imagenLogo {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.imagenLogo img {
    max-width: 50%;
    max-height: 40%;
    margin: 0;
    padding: 0;
}


/***************** Segunda fila ******************/

.informacion {
    text-align: center;

}

.informacion h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 15pt;
    font-style: normal;
    color: #0b873a;
    font-weight: 400;
}

.informacion hr {
    font-weight: bold;
    border: 1px solid #0b873a;
    border-radius: 5px;
    color: #0b873a;
    background-color: #455507;
    animation: expand 7s ease; /*** Animación de expansión ***/
    width: 50%;
   
}

/*** Animación de expasión ***/

@keyframes expand {
    0% {
        width: 0%; /*** Empezar desde 0 el ancho del hr ***/
        
    }

    50% {
        width: 50%; /*** Aumentarlo al 100% ***/
    }


}

.informacion a {
    font-family: "Montserrat", sans-serif;
    font-size: 15pt;
    font-style: normal;
    color: #0b873a;
    font-weight: 400;
    text-decoration: none;
}

.informacion a:hover {
    text-shadow: 0px 0px 30px rgb(77, 74, 74);
    transition: text-shadow 0.5s ease;
}

/***************** Tercera fila *******************/

.final {
    width: 99%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1%;
}

.final h2 {
    color: #0b873a;
    font-family: "Montserrat", sans-serif;
}

.final img {
    width: 20%;
}


/****************** Olas animaciones ******************/

.wave {
    position: absolute;
    width: 100%;
    height: 15%;
    background-size: 200%;
    bottom: 0;
    left: 0;
    animation: wave 7s ease-in-out infinite;
    background-color: #455507;
    opacity: 20%;
}


.waveArriba {
    position: absolute;
    width: 100%;
    height: 25%;
    background-size: 200%;
    top: 0;
    left: 0;
    animation: waveArriba 10s ease-in-out infinite;
    background-color: #a4b48f;
    opacity: 20%;
}


/*** Animación de olas ***/

@keyframes waveArriba {

    0%,
    100% {
        clip-path: polygon(0% 6.25%, 11.55% 19.3%, 18.95% 28.6%, 26.25% 32.55%, 34% 33.5%, 
                           43.27% 30.13%, 54.2% 21%, 61.94% 17.18%, 70.15% 17.65%, 76.7% 20.8%, 
                           82.9% 25.85%,88.35% 34.65%, 92.9% 45.25%, 100% 63%, 100% 0%, 0% 0%);
    }

    50% {
        clip-path: polygon(0% 20.05%, 10.35% 11.3%, 16.85% 9%, 26.25% 6.75%, 35.4% 9.3%, 
                           44.07% 15.73%, 50.56% 34.98%, 60.18% 42.4%, 68.7% 39.23%, 76% 27.8%, 
                           80.6% 20.6%, 85.3% 15.65%, 91.65% 15.05%, 100% 19.25%, 100% 0%, 0% 0%);
    }


}


@keyframes wave {

    0%,
    100% {

        clip-path: polygon(0% 93.75%, 11.55% 80.7%, 18.95% 71.4%, 26.25% 67.45%, 34% 66.5%, 43.27% 69.87%, 
                           54.2% 79%, 61.94% 82.82%, 70.15% 82.35%, 76.7% 79.2%, 82.9% 74.15%, 88.35% 65.35%, 
                           92.9% 54.75%, 100% 37%, 100% 100%, 0% 200%);

    }

    50% {
        clip-path: polygon(0% 79.95%, 10.35% 88.7%, 16.85% 91%, 26.25% 93.25%, 35.4% 90.7%, 44.07% 84.27%, 
                           50.56% 65.02%, 60.18% 57.6%, 68.7% 60.77%, 76% 72.2%, 80.6% 79.4%, 85.3% 84.35%, 
                           91.65% 84.95%, 100% 80.75%, 100% 100%, 0% 200%);

    }
}

/************* MEDIA QUERY ****************/

/*** MÓVIL ***/

@media only screen and (max-width: 450px) {
    .informacion h4 {
        font-size: 12pt;
    }

    .informacion a {
        font-size: 12pt;
    }

    .imagenLogo img {
        max-width: 100%;
        max-height: 100%;
    }

    .final h2 {
        font-size: 8pt;
        color: #0b873a;
        font-weight: bold;
    }

    .final {
        gap: 3px;
        flex-direction: column;
    }

    .final img {
        width: 45%;
    }

    .waveArriba {
        display: none;
    }
}


/*** TABLET ***/

@media all and (min-width: 480px) and (max-width: 1110px){
   
    .container {
        width: 70%;
    }

    .final h2 {
        font-size: 15pt;
        color: #0b873a;
        font-weight: bold;
    }
    .final {
        gap: 3px;
        flex-direction: column;
    }
    .final img {
        width: 40%;
    }
    .imagenLogo img {
        max-width: 80%;
        max-height: 80%;
    }
}