* {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
    background: #000000;
    color: #EAE1C3;
    }

section {
    display: flex;
    width: 90%;
    height: 100vh;
}

span {
    font-family: "Roboto Condensed";
    font-size: 30px !important;
    font-weight: 200;
    color:#EAE1C3;
}

p {
    font-family: "Roboto Condensed";
    font-style: italic;
    font-weight: 200;
    font-size: 20px;
    color:#EAE1C3;
}


/* LETRITAS */ 

h1 {
    font-family: "Belleza";
    font-size: 100px;
}



/* NAVEGADOR */

nav {
    margin: 2%;
    position: sticky;
    top: 2%;
    z-index: 10;
    
}


nav img {
    max-width: 50vw;
    min-width: 400px;
    height: auto;
    max-height: 10vh;
}


nav ul {
    top: 2%;
    display:flex; 
    gap: clamp(1rem, 4vw, 18rem);
    list-style: none; 
}


nav a {
    text-decoration: none;
    font-family: 'Courier Prime';
    font-style: bold; 
    font-size: large;
    color:#a56b45;
}


/* INTRO SOBRE MÍ*/

.title {
    margin-left: 130px;
    margin-top: 200px;;

}

.logo_about {
    margin-top: 450px;
    position:absolute;
    right: 130px;
    
}

/* EMPTY */

.empty {
    height: 70vh;
    width: 100%;
    background: #000000;

}

/* PARRAFADA */

section.parrafada {
    display: block;
    margin-left: 130px;
    height: 300px;
}


/* MARQUEE */

.marquee_sobremi {
    margin-left: 130px;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: #000000;  
}

.marquee_sobremi_list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: scroll-left 20s linear infinite;
    gap: 2rem;
    height: 100px;
    align-items: center;
    font-size: 20px; 
}

.marquee__sobremi_list li{
    display: block;
    flex-shrink: 0;
    white-space: nowrap; 
    font-family: "Lora";
}



@keyframes scroll-left {
    0% {transform: translateX(0);}
    100% {transform: translateX(-50%);}
}

.marquee_sobremi:hover .marquee_sobremi_list {
    animation-play-state: paused;
}


/* MI METODOLOGÍA*/
.metodologia {
    display: block;
    margin-left: 130px;
    margin-top: -400px;
}


/* BIO FINAL */

.bio_final {
    margin-top: -150px; 
}

.bio_final article {
    display: flex;
    margin-left: 130px;
}
.bio_final_text {
    display: block;
    right: 130px;
    margin-left: 100px;;
}


/* CV */


.cv {
    margin-left: 130px;
}


/* BIO FINAL */

.bio_final {
    display: flex;
}

.video_canon {
    justify-content: center;
    align-items: center;
    padding: 2%;
    width: 40vw;
}


.video_canon {
    width: min (50%, 400px); /* Máx 800px, pero nunca más del 100%)*/
    aspect-ratio: 16 / 9; /* Mantiene proporción del video */
}


.video_canon video {
    width: 50%;
    height: 50%;
    display: block;
}


.bio_final_text {
    width: 30vw;
    height: auto;
}


/* FOOTER */

footer {
    margin-top: 100px;
    margin-left: 130px;
}


footer ul{
    display: flex; /* hace que el elemento sea flexible para responsive */
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    margin-bottom: 130px;
    justify-content: flex-end;
    align-items: flex-end;
    background: none; 
    max-width: calc(100vw - 350px); 
}

footer ul li {
    display:flex;
    list-style: none; /* para quitar la viñeta */
    margin-left: 3vh;
}





