/* HEADER */

body{
    font-family: 'Outfit', sans-serif;
    margin: 20px;
}
html {
    scroll-behavior: smooth;
}

#mis-estudios,
#mis-experiencias,
#mis-idiomas,
#mis-proyectos,
#Conocermas{
    scroll-margin-top: 50px;
}

.Logo{
    margin-left: 50px;
    height: 40px;
}
.header{
    border: 1px solid #FF6131;
    background-color: #FBF0E9;
    border-radius: 50px 50px 50px 50px;  
}
.banner{
    height: 1100px;
    width: 100%;
    position: relative;
    overflow: hidden;    
}
#bannerimagen{
    height: 1100px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FF6131;
    padding: 35px 10px;
    font-size: 20px;
    border-radius: 90px;
    margin: 40px;
    position: relative;
    z-index: 10;
}
nav ul{
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px
}
nav li a{
    color: white;
    text-decoration: none;
    padding: 20px;
    margin-right: 50px;
}
.marquesina{
    color: #D29FF8;
    opacity: 50%;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0px;
    padding: 30px;
    text-decoration: none;
}


/* MAIN */
.sobremi{
    display: flex;
    margin-top: 30px;
    padding: 50px;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #FBF0E9;
    border-radius: 40px 40px 40px 40px;
    border: 1px solid #FF6131;
}
.sobremiizquierda{
    flex: 1;
    padding-left: 50px;
    color: #FF6131;
}
.sobremiderecha{
    flex: 2;
    padding-right: 50px;
    color: #FF6131;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}


/* COMIENZO DE SECCIONES (ESTUDIO, EXPERIENCIA, PROGRAMAS, IDIOMAS) */
.secciones {
    display: flex; 
    justify-content: flex-start;
    gap: 20px; 
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
}

/* MODIFICACIONES IGUALES DE LOS CUADROS DEL FONDO (ESTUDIO, EXPERIENCIA, PROGRAMAS, IDIOMAS) */
.Estudios, .Experiencia, .Programas, .Idiomas {
    flex: 1; 
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center; 
    height: 850px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

/* COMIENZO DE ESTUDIO */
.Estudios {
    background-color: #FF6131;
    background-image: url('../Img/Secciones/Estudios.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* MODIFICACIONES IGUALES DE H3 (ESTUDIO, EXPERIENCIA, PROGRAMAS, IDIOMAS) */
.Estudios h3, .Experiencia h3, .Programas h3, .Idiomas h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: white;
    margin-bottom: 10px;
}

.icon-estudios {
    width: 25px;
    height: auto;
    margin-bottom: 10px;
}

/* MODIFICACIONES IGUALES DE H4 (ESTUDIO, EXPERIENCIA) */
.Estudios h4, .Experiencia h4, .Idiomas h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: white;
    text-align: left;
    margin-top: 10px;
}
.Estudios h5{
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: white;
    text-align: left;
    margin-top: 1px;
}
.Experiencia h5{
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: white;
    text-align: left;
    margin-top: 1px;
}
/* CURSOS */
/* MODIFICACIONES IGUALES PARA ARTICLE (ESTUDIO, EXPERIENCIA) */
.Estudios article, .Experiencia article {
    font-family: 'Outfit', sans-serif;
    font-weight: 100;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin-top: 0px;
    text-align: left;
    max-width: 70%;
    margin-bottom: 10px;
}

/* MODIFICACIONES IGUALES DE FECHA (ESTUDIO, EXPERIENCIA) */
.Estudios .fecha, .Experiencia .fecha {
    font-size: 1rem;
    color: white;
    font-weight: 300;
    text-align: right;
    align-self: flex-end; 
    margin-top: 0px;
    align-self: flex-start;   
}

.content-container {
    display: flex;
    justify-content: space-between; 
    width: 100%;
    max-width: 900px;
    margin-top: 0px;
    font-size: small;
    font-weight: lighter;
}
.title-container {
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    margin-top: 8px;
    width: 100%;
    max-width: 800px;
    gap: 10px;
}
.loadingestudios {
    margin-top: 90px;
    width: 300px;
    height: auto;
    margin-bottom: 10px;
}

/* COMIENZO DE EXPERIENCIA */
.Experiencia {
    background-color: #D29FF8;
    background-image: url('../Img/Secciones/Experiencia.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.icon-experiencia {
    width: 25px;
    height: auto;
    margin-bottom: 10px;
}

/* COMIENZO DE PROGRAMAS */
.Programas {
    background-color: #7568E9;
    background-image: url('../Img/Secciones/Programas.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    position: relative;
    
}

.contenedor-programas{
    margin-top: 230px;
}

/* MODIFICACIONES IGUALES PARA PROGRAMAS */
.Figma-class, .Photoshop-class, .Illustrator-class, .Premiere-class, .Indesign-class, .After-class{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: white;
}

.icon img {
    width: 40px;
    height: auto;
}
.Programas h4{
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    padding-left: 10px;
}

.progress-bar {
    width: 70%;
    height: 30px;
    background-color: #7568E9;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid #F9BDCC;
}
.progress {
    height: 100%;
    background-color: #FFFFFF; 
    border-radius: 40px;
    border: 1px solid #F9BDCC;

}

/* COMIENZO DE IDIOMAS */
.Idiomas {
    background-color: #5D1AF5;
    background-image: url('../Img/Secciones/Idiomas.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    position: relative;
}

.icon-mundo {
    width: 30px;
    height: auto;
}
.idiomas-container {
    display: flex;
    align-items: flex-start; 
    justify-content: flex-start;
    flex-direction:row;
    margin-top: 60px;
    width: 100%;
    max-width: 800px;
    gap: 15px;
}
.idiomas-container h4{
    margin-top: 0px;
}
.etiqueta-span{
    width: 70%;
    height: 40px;
    background-color: #7568E9;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid #F9BDCC;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hab-span{
    width: 70%;
    height: 40px;
    background-color: #7568E9;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid #F9BDCC;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-left: 25%;
} 

/* COMIENZO DE PROYECTOS */
.Bannerproyectos{
    background-image: url('../Img/Banners/BannerProyectos.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 90px;
    background-color: #FBF0E9;
    border-radius: 40px 40px 40px 40px;
    border: 1px solid #FF6131;
    align-items: center;
}

.marquesina-proyectos ul{
    list-style: none;
    padding: 40px;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: content;
    gap: 90px;
}

.marquesina-proyectos li {
    font-size: 18px;
    color: #FF6131;
    font-weight: normal;
}


/* CARDS DE PROYECTOS */
.contenedor-proyectos{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px;
    justify-items: center;
    width: 100%;
    margin-top: 30px;
    padding: 0 10px;
}

/* CARD-01 */
.proyecto-01 {
    background-color: #FBF0E9;
    border-radius: 40px 40px 40px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.proyecto-01 img {
    width: 100%;
    max-height: 400px;
    border-radius: 40px 40px 40px 40px; 
    object-fit: cover;
}
.proyecto-01 article h3{
    font-size: 16px;
    color: #FF6131;
    font-size: 2rem;
    font-weight: 300;
}
.proyecto-01 article {
    padding: 40px;
    font-size: 18px;
    color: #FF6131;
    margin: 10px 0;
}

/* CARD-02 */
.proyecto-02 {
    background-color: #FBF0E9;
    border-radius: 40px 40px 40px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; 
}

.proyecto-02 img {
    width: 100%;
    max-height: 400px;
    border-radius: 40px 40px 40px 40px; 
    object-fit: cover;
}

.proyecto-02 article h3{
    font-size: 16px;
    color: #FF6131;
    font-size: 2rem;
    font-weight: 300;
}

.proyecto-02 article {
    padding: 40px;
    font-size: 18px;
    color: #FF6131;
    margin: 10px 0;
}

/* CARD-03 */
.proyecto-03 {
    background-color: #FBF0E9;
    border-radius: 40px 40px 40px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; 
}

.proyecto-03 img {
    width: 100%;
    max-height: 400px;
    border-radius: 40px 40px 40px 40px; 
    object-fit: cover;
}

.proyecto-03 article h3{
    font-size: 16px;
    color: #FF6131;
    font-size: 2rem;
    font-weight: 300;
}

.proyecto-03 article {
    padding: 40px;
    font-size: 18px;
    color: #FF6131;
    margin: 10px 0;
}

/* CARD-04 */
.proyecto-04 {
    background-color: #FBF0E9;
    border-radius: 40px 40px 40px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; 
}

.proyecto-04 img {
    width: 100%;
    max-height: 400px;
    border-radius: 40px 40px 40px 40px; 
    object-fit: cover;
}

.proyecto-04 article h3{
    font-size: 16px;
    color: #FF6131;
    font-size: 2rem;
    font-weight: 300;
}

.proyecto-04 article {
    padding: 40px;
    font-size: 18px;
    color: #FF6131;
    margin: 10px 0;
}

/* CARD-05 */
.proyecto-05 {
    background-color: #FBF0E9;
    border-radius: 40px 40px 40px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; 
}

.proyecto-05 img {
    width: 100%;
    max-height: 400px;
    border-radius: 40px 40px 40px 40px; 
    object-fit: cover;
}

.proyecto-05 article h3{
    font-size: 16px;
    color: #FF6131;
    font-size: 2rem;
    font-weight: 300;
}

.proyecto-05 article {
    padding: 40px;
    font-size: 18px;
    color: #FF6131;
    margin: 10px 0;
}

/* CARD-06 */
.proyecto-06 {
    background-color: #FBF0E9;
    border-radius: 40px 40px 40px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; 
}

.proyecto-06 img {
    width: 100%;
    max-height: 400px;
    border-radius: 40px 40px 40px 40px; 
    object-fit: cover;
}

.proyecto-06 article h3{
    font-size: 16px;
    color: #FF6131;
    font-size: 2rem;
    font-weight: 300;
}

.proyecto-06 article {
    padding: 40px;
    font-size: 18px;
    color: #FF6131;
    margin: 10px 0;
}

/* BANNER VER MAS */
.Bannervermas{
    min-height: 70px;
    background-image: url('../Img/Banners/Bannervermas.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 300px;
    background-color: #FBF0E9;
    border-radius: 60px 60px 60px 60px;
    border: 1px solid #FF6131;
    align-items: center;
    position: relative;
}

.button-behance {
    position: absolute;
    bottom: 150px;  
    right: 110px;   
    padding: 10px 20px;
    background-color: white;
    color: #FF6131;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;  
    border-radius: 10px;  
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    border: 1px solid #FF6131;

}

/* CONTACTO */

.contacto {
  padding: 3rem 1.5rem;
  background-color: #FBF0E9;
  background-image: url('../Img/Banners/BannerContacto.webp');
  text-align: center;
  border-radius: 40px 40px 40px 40px;
  border: 1px solid #FF6131;
  margin-top: 10px;
  padding: 50px;
  justify-content: space-between;
}

.contacto h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #FF6131;
  font-weight: 700;
}

.contacto form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FBF0E9;
  padding: 2rem;
  text-align: left;
}

.contacto input,
.contacto textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 1.2rem;
  border: 1px solid #FF6131;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.contacto input:focus,
.contacto textarea:focus {
  border-color: #FF6131;
  outline: none;
}

.contacto button {
  display: inline-block;
  width: 630px;
  padding: 15px;
  background-color: #7568E9;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contacto button:hover {
  background-color: #564bba;
}


/* FOOTER */

footer{
    min-height: 20px;
    margin-top: 20px;
    padding: 50px;
    background-image: url('../Img/Footer/BannerFooter.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    border-radius: 60px 60px 60px 60px;
}   

.contenedor-footer{
    display: flex;
    justify-content: space-between; 
    width: 100%;
    align-items: center;
}

.perfil{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 30px;
}

.foto-perfil{
    width: 120px;
    height: 120px;
    margin-left: -50px;
    object-fit: cover;
}

.informacion-perfil{
    margin-left: 400px;
    text-align: left;
    color: #FF6131; 
    font-size: 20px;
}

.iconos-redes{
    display: flex;
    justify-content: flex-end;
    align-items: center; 
    width: 25px;
    height: 25px; 
    gap: 60px;
    margin-right: 100px;
}
