* {
    margin: 0;
    padding: 0;
    font-family: serif;
    border-radius: 0;
}

body {
    width: 100%;
    padding: 0;
    margin: 0;
}

.seccion1 {
    min-height: 100vh;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #464646;
}

video {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

@media (max-width: 768px){
    video {
        object-fit: none;
    }
    .seccion1 {
        background-color: white;
        min-height: 40vh;
    }
}

/*---------------------- MENU ---------------------*/

.logo {
    width: 150px;
    height: 35px;
    margin-top: -5px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 8vh;
    background-color: rgba(0, 0, 0, 0.8);
} 

.ham {
    display: none;
    cursor: pointer;
    border: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.ham span {
    display: block;
    background-color: black;
    height: 3px;
    width: 28px;
    margin: 10px auto;
    border-radius: 2px;
}

.enlaces-menu {
    display: flex;
    padding: 0;

}

.enlaces-menu li{
    padding: 20px 25px 10px 25px;
    list-style: none;
    transition: 0.6s;
}

.enlaces-menu li a{
    text-decoration: none;
    font-size: 1rem;
    color: whitesmoke;
    font-family: 'Roboto Mono', monospace;
}

.enlaces-menu li:hover {
    text-decoration: underline whitesmoke;
    text-decoration-thickness: 2.5px;
    
}

/*---------------------- MENU RESPONSIVE ---------------------*/

@media (max-width: 768px){

    .ham {
        display: block;
        position: absolute;
        top: 10px;
        right: 25px;
        filter: invert(100%);
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 7px 0;
    }

    .enlaces-menu {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        height: 92hv;
        margin: 0;
        padding: 0;
        width: 100%;
        display: none;
        opacity: 0;
    }

    .enlaces-menu li {
        width: 100%;
        text-align: center;
        padding: 20px;
    }
}

@keyframes muestraMenu {
    from{opacity:0;}
    to{opacity:1;}
}

.enlaces-menu.activado {
    display: flex;
    animation: muestraMenu 350ms ease-in-out both;
}

/*----------------------SECCION 2---------------------*/

.seccion2 {
    display: flex;
    position: relative;
    padding: 150px;
    height: 90%;
    background-image: url("media/mancha1.png");
    background-repeat: no-repeat;
    background-size: 45%;
    background-position: -2% 20%;
    
}

.seccion2 img {
    width: 300px;
    border-radius: 15PX;
}

.parte1 {
    float: left;
    padding-top: 50px;
}

.parte2 {
    margin-left: 30px;
    display: block;
    float: left;
}

.parte2 h1 {
    font-family: 'Bitter', serif;
    color: white;
    background-color: black;
    width: min-content;
    font-size: 3em;
    padding: 20px;
    border-radius: 15px;
    margin-left: -150px;
}

.parte2 h2 {
    font-family: 'Roboto Mono', monospace;
    margin-top: 30px;
}

.parte2 p {
    position: relative;
    font-family: 'Roboto Mono', monospace;
    margin-top: 40px;
    text-align: justify;
    
}

.parte2 a svg {
    width: 4%;
    filter: invert(1);
    background-color: white;
    padding: 10px 10px 10px 120px; 
    margin-top: 20px;
    border-radius: 50px;
}

@media (max-width: 768px){
    
    .seccion2 img {
        width: 200px;
    }

    .seccion2 {
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 10px;
        background-size: 100%;
        background-position: -2% -5%;
        justify-content: center;
        align-items: center;        
        margin-bottom: 0;
    }
    
    .parte2 {
        margin: 0;
        display: flex;
        flex-direction: column;
        float: left;
        align-items: center;
    }

    .parte2 h1 {
        font-size: 3em;
        margin-left: 0;   
        margin-top: 15px;     
    }

    .parte2 p {
        padding-left: 60px;
        padding-right: 60px;
        margin-top: 15px;
    }

    .parte2 h2 {
        text-align: center;
        margin-top: 15px;
    }

    .parte2 a svg {
        width: 6%;
        margin-left: 60px;
        
    }
    
}

/*----------------------SECCION 3---------------------*/


.seccion3 {
    position: relative;
    display: flex;
    min-height: 10vh;
    width: 80%;
    top: 0;
    padding-left: 140px;
    padding-right: 150px;
    
}

@media (max-width: 768px){

    .seccion3 {
        padding-left: 40px;
        padding-right: 10px;
        align-items: center;        
    }

}

.contenedor-acordeon{
    width: 100%;
    max-width: 800px;
    margin: auto;
    margin-top: 80px;
}
.contenedor-acordeon h2{
    font-family: 'Bitter', serif;
    text-align: center;
    font-size: 40px;
    margin-bottom: 35px;
}
.acordeon{
    background: #fff;
}
.acordeon label{
    font-family: 'Roboto Mono', monospace;
    display: block;
    padding: 20px;
    font-size: 20px;
    background: #1c1c1c;
    color: #fff;
    cursor: pointer;
    margin-bottom: 2px;
    transition: all 300ms ease;
    border-radius: 15px;
}
.acordeon label:hover{
    background: #2e2e2e;
}
.acordeon .contenido-acordeon{
    padding: 0px;
    margin: 0px 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 300ms ease;
}
.btn-acordeon:checked ~ .contenido-acordeon{
    max-height: 600px;
    padding: 15px 0px;
}
.btn-acordeon{
    display: none;
}

.contenido-acordeon p{
    font-family: 'Roboto Mono', monospace;
}

.contenido-acordeon a{
    font-family: 'Roboto Mono', monospace;
}

/*----------------------SECCION 4---------------------*/

.seccion4 {
    display: flex;
    flex-direction: column;
    padding: 150px;
    height: 60vh;
    background-image: url("media/mancha2.png");
    background-repeat: no-repeat;
    background-size: 45%;
    background-position: 80%; 
    justify-content: center;
    align-items: center;
    
}

.seccion4 img {
    width: 500px;
    border-radius: 15PX;
    margin-top: 20px;
}

.parte6 {
    width: 50%;
    float: left;
}

.parte5 {
    display: flex;
    flex-direction: row;    
}

.texto {
    margin-right: 30px;
}

.titulo4 {
    display: flex;
    font-family: 'Bitter', serif;
    color: white;
    background-color: black;
    width: min-content;
    font-size: 3em;
    padding: 20px;
    border-radius: 15px;
    margin-left: 160px;
}

.parte5 h2 {
    font-family: 'Roboto Mono', monospace;
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    text-align: end;
 
}

.parte5 p {
    display: flex;
    position: relative;
    font-family: 'Roboto Mono', monospace;
    margin-top: 50px;
    align-content: flex-end;
    text-align: justify;
  
}

.redes {
    min-width: 100px;
    display: flex;
    justify-content: space-around;
}

.redes a{
    text-decoration: none;
    font-size: 30px;
    width: 65px;
    height: 65px;
    margin: 15px;
    line-height: 65px;
    text-align: center;
    background: black;
    border-radius: 100px;
    color: whitesmoke;
    transition: all 0.4s ease-in-out;    
}
.redes a:hover {
    transform: scale(1.2);
}

@media (max-width: 768px){
    
    .seccion4 img {
        width: 300px;
        margin-top: 15px;
    }

    .parte5 {
        display: flex;
        flex-direction: column-reverse;    
    }

    .titulo4 {
        display: flex;
        width: min-content;
        font-size: 2em;
        padding: 20px;
        border-radius: 15px;
        margin-left: 0;
    }

    .seccion4 {
        height: 80vh;
        background-size: 80%;
        background-position: 50% 10%; 
    }

    .parte5 p {
        margin-top: 15px;
      
    }

    .parte5 h2 {
        margin-top: 15px;
    }

    .texto {
        margin-right: 0;
    }
}




/*font-family: 'Bitter', serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Bitter', serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Roboto Mono', monospace;
font-family: 'Roboto Mono', monospace;*/


