/*-----------------------------------------------------------------------CUERPO DE LA PAGINA-----------------------------------------------------------------------------------*/
html{
    scroll-behavior: smooth;
}

body{ 
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: #033509;
}

body::-webkit-scrollbar{
    width: 0;
    background: #033509;
}

body::-webkit-scrollbar-thumb{
    width: 0;
    border-radius: 0;
    background: #d3decb;
}

/*-----------------------------------------------------------------------BARRA DE NAVEGACION-----------------------------------------------------------------------------------*/

header{ 
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #033509;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

header.abajo{
    background: rgb(3, 53, 9, 0.2);
    backdrop-filter: blur(10px);
}

header.abajo .logo,
header.abajo .menu a{
    color: #d3decb;
}

header.abajo .menu a:hover{
    color: black;
}

.nav{ 
    width: 98%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.labe_hamburguesa {
    width: 0;
    height: 0;
}

.list_icon {
    width: 0;
    height: 0;
    color: white;
    cursor: pointer;
}

.men_hamburguesa{
    display: none;
}

.logo{
    display: flex; 
    align-items: center;
    justify-content: space-between;
}

.logo a{ 
    width: 190px;
    display: grid; 
    align-items: center;
    justify-content: left;
}

.logo a img{ 
    max-width: 100%;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(356deg) brightness(108%) contrast(101%);
}

.menu{ 
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.menu li{ 
    list-style: none;
    display: flex; 
    align-items: center;
}

.menu li a{
    font-size: 12px;
    color: #d3decb;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.menu li a:hover{
    color: black;
}

/*-----------------------------------------------------------------------CONTENEDOR DE LA PAGINA-----------------------------------------------------------------------------------*/

.contprincipal{
    max-width: 100%;
    position: relative;
    display: flex; 
    flex-wrap: wrap;
    justify-content: flex-start;
}

/*-----------------------------------------------------------------------BLOQUE 1--------------------------------------------------------------------------------------*/

#BLOQUE-1{
    width: 100vw;
    height: 100vh;
    padding-top: 50px;
    position: relative;
}

#BLOQUE-1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#BLOQUE-1 #img2{
    width: 0%;
    height: 0%;
    object-fit: cover;
}

/*-----------------------------------------------------------------------BLOQUE 2--------------------------------------------------------------------------------------*/

#BLOQUE-2{
    width: 100vw;
    height: 100vh;
    padding-top: 50px;
    position: relative;
}

#BLOQUE-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#BLOQUE-2 #img2{
    width: 0%;
    height: 0%;
    object-fit: cover;
}

#boton1{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 20%;
    height: 8%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 18px;
    background: #d3decb;
    color: #033509;
    border-radius: 50px;
    border: 1px solid #033509;
    cursor: pointer;
    text-transform: uppercase;
    transition: .3s ease all;
    position: relative;
    bottom: 60%;
    left: 65%;
    z-index: 50;
    overflow: hidden;
}

#boton1 span{
    position: relative;
    z-index: 52;
    transition: .5s ease all;
}

#boton1::after{
    content: '';
    width: 1px;
    height: 1px;
    background: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 51;
    transition: .5s ease all;
    border-radius: 100px;
    transform-origin: center;
}

#boton1:hover::after{
    transform: scale(150);
    background: #033509;
}

#boton1:hover{
    background: #022706;
    color: white;
}

/*-----------------------------------------------------------------------BLOQUE 3-----------------------------------------------------------------------------------

#BLOQUE-3{
    width: 100vw;
    height: 100vh;
    padding-top: 50px;
    position: relative;
}

#BLOQUE-3 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#BLOQUE-3 #img2{
    width: 0%;
    height: 0%;
    object-fit: cover;
}

#boton2{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 20%;
    height: 8%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 18px;
    background: #d3decb;
    color: #033509;
    border-radius: 50px;
    border: 1px solid #033509;
    cursor: pointer;
    text-transform: uppercase;
    transition: .3s ease all;
    position: relative;
    bottom: 60%;
    left: 15%;
    z-index: 50;
    overflow: hidden;
}

#boton2 span{
    position: relative;
    z-index: 52;
    transition: .5s ease all;
}

#boton2::after{
    content: '';
    width: 1px;
    height: 1px;
    background: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 51;
    transition: .5s ease all;
    border-radius: 100px;
    transform-origin: center;
}

#boton2:hover::after{
    transform: scale(150);
    background: #033509;
}

#boton2:hover{
    background: #022706;
    color: white;
}

---*/

/*-----------------------------------------------------------------------BLOQUE 4--------------------------------------------------------------------------------------*/

#BLOQUE-4{
    width: 100vw;
    height: 100vh;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}

#BLOQUE-4 img{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    object-fit: cover;
}

#BLOQUE-4 #img2{
    width: 0%;
    height: 0%;
    object-fit: cover;
}

#texto1{
    max-width: 100%;
    height: 20vh;
    display: flex; 
    align-items: flex-end;
    justify-content: center;
}

#texto1 #titulo1{
    width: 50%;
    font-size: 28px;
    font-weight: 700;
    color: #d3decb;
    text-align: center;
    display: flex; 
    align-items: center;
    justify-content: center;
}

#texto2{
    max-width: 100%;
    height: 50vh;
    padding-left: 2%;
    padding-right: 2%;
}

#texto2 #parrafo1{
    width: 100%;
    font-size: 20px;
    color: #d3decb;
    text-align: center;
}

#texto2 #parrafo2{
    width: 100%;
    font-size: 20px;
    color: #d3decb;
    text-align: center;
}

#texto3{
    max-width: 100%;
    height: 15vh;
    gap: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#RED-SOCIAL{
    width: 3.7%;
    height: 50%;
    text-decoration: none;
    border-radius: 25px;
    background: red;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#RED-SOCIAL img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*-----------------------------------------------------------------------PIE DE LA PAGINA-----------------------------------------------------------------------------------*/
    
#footer{
    max-width: 100%;
    height: 50px;
    padding: 10px;
    display: flex; 
    align-items: center;
    justify-content: center;
}

#footer p{
    font-size: 12px;
    color: white;
    text-align: center;
}

/*-----------------------------------------------------------------------RESPONSIVE-----------------------------------------------------------------------------------*/

@media screen and (max-width: 915px){

    /*-----------------------------------------------------------------------BARRA DE NAVEGACION-----------------------------------------------------------------------------------*/

    header{ 
        width: 100%;
        height: 70px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: #033509;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }

    header.abajo{
        background: #033509;
    }

    header.abajo .logo,
    header.abajo .menu a{
        color: #d3decb;
    }

    header.abajo .menu a:hover{
        color: black;
    }

    .nav{ 
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .labe_hamburguesa {
        width: 70px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .list_icon {
        width: 35px;
        height: 35px;
        color: white;
        cursor: pointer;
        position: absolute;
    }

    .men_hamburguesa{
        display: none;
    }

    .men_hamburguesa:checked + .menu {
        height: calc(40vh - 70px);
    }

    .logo{
        width: 190px;
        height: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo a{ 
        width: 100%;
        height: 100%;
        position: absolute;
    }

    .logo a img{ 
        width: 100%;
        height: 90%;
        margin-top: 5%;
        object-fit: cover;
        position: absolute;
        filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(356deg) brightness(108%) contrast(101%);
    }

    .menu{ 
        width: 100%;
        background-color: #033509;
        position: absolute;
        top: 70px;
        left: 0;
        height: 0;
        overflow: hidden;
        /* height: calc(100vh - 70px); */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 0;
        margin: 0;
        transition: all .3s;
    }

    .menu li{ 
        list-style: none;
        display: flex; 
        align-items: center;
    }

    .menu li a{
        font-size: 17px;
        color: #d3decb;
        text-decoration: none;
        font-weight: normal;
        cursor: pointer;
    }

    .menu li a:hover{
        color: black;
    }

    /*-----------------------------------------------------------------------CONTENEDOR DE LA PAGINA-----------------------------------------------------------------------------------*/

    .contprincipal{
        max-width: 100%;
        position: relative;
        display: flex; 
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    /*-----------------------------------------------------------------------BLOQUE 1--------------------------------------------------------------------------------------*/

    #BLOQUE-1{
        width: 100vw;
        height: 100vh;
        padding-top: 0;
        position: relative;
    }

    #BLOQUE-1 img{
        width: 0%;
        height: 0%;
        object-fit: cover;
    }

    #BLOQUE-1 #img2{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /*-----------------------------------------------------------------------BLOQUE 2--------------------------------------------------------------------------------------*/

    #BLOQUE-2{
        width: 100vw;
        height: 100vh;
        padding-top: 0;
        position: relative;
    }

    #BLOQUE-2 img{
        width: 0%;
        height: 0%;
        object-fit: cover;
    }

    #BLOQUE-2 #img2{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #boton1{
        width: 160px;
        height: 50px;
        font-weight: 500;
        font-size: 18px;
        border-radius: 50px;
        position: relative;
        bottom: 30%;
        left: 30%;
    }

    #boton1::after{
        content: '';
        width: 1px;
        height: 1px;
        top: 50%;
        left: 50%;
        border-radius: 100px;
    }

    #boton1:hover::after{
        transform: scale(150);
        background: #033509;
    }

    #boton1:hover{
        background: #022706;
        color: white;
    }

    /*-----------------------------------------------------------------------BLOQUE 3-----------------------------------------------------------------------------------

    #BLOQUE-3{
        width: 100vw;
        height: 100vh;
        padding-top: 0;
        position: relative;
    }

    #BLOQUE-3 img{
        width: 0%;
        height: 0%;
        object-fit: cover;
    }

    #BLOQUE-3 #img2{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #boton2{
        width: 160px;
        height: 50px;
        font-weight: 500;
        font-size: 18px;
        border-radius: 50px;
        position: relative;
        bottom: 30%;
        left: 32%;
    }

    #boton2::after{
        content: '';
        width: 1px;
        height: 1px;
        top: 50%;
        left: 50%;
        border-radius: 100px;
    }

    #boton2:hover::after{
        transform: scale(150);
        background: #033509;
    }

    #boton2:hover{
        background: #022706;
        color: white;
    }

    ---*/

    /*-----------------------------------------------------------------------BLOQUE 4--------------------------------------------------------------------------------------*/

    #BLOQUE-4{
        width: 100vw;
        height: 100vh;
        padding-top: 0;
        position: relative;
    }

    #BLOQUE-4 img{
        width: 0%;
        height: 0%;
        object-fit: cover;
    }

    #BLOQUE-4 #img2{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #texto1{
        max-width: 100%;
        height: 20%;
    }

    #texto1 #titulo1{
        width: 50%;
        font-size: 22px;
        font-weight: 700;
        color: #d3decb;
    }

    #texto2{
        max-width: 100%;
        height: 60%;
        padding-left: 5%;
        padding-right: 5%;
    }

    #texto2 #parrafo1{
        width: 100%;
        font-size: 17px;
        text-align: justify;
        color: #d3decb;
    }

    #texto2 #parrafo2{
        width: 100%;
        font-size: 17px;
        text-align: justify;
        color: #d3decb;
    }

    #texto3{
        max-width: 100%;
        height: 20%;
        gap: 5%;
    }

    #RED-SOCIAL{
        width: 50px;
        height: 50px;
        border-radius: 100%;
    }

    #RED-SOCIAL img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /*-----------------------------------------------------------------------PIE DE LA PAGINA-----------------------------------------------------------------------------------*/
        
    #footer{
        max-width: 100%;
        height: 50px;
        padding: 10px;
        display: flex; 
        align-items: center;
        justify-content: center;
    }

    #footer p{
        font-size: 10px;
        color: white;
        text-align: center;
    }

}

