* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto Condensed', sans-serif;
}

body{
  width: 100%;    
  margin: 0 auto;        
  padding: 0 20px;    
}

/*Logo y menu de navegaciópn*/
header {
  padding: 16px 32px;
  margin: 0px 58px 0px 58px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 700;
}

.logo a{
  cursor: pointer;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: black;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #F76C0B; 
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/*ABOUT ME*/
main{
  margin: 0px 100px 0px 100px;
}

h2{
  font-size: 5em;
  font-weight: bolder;
  font-family: 'Roboto Condensed', sans-serif;
}

.cont-about{
  display: flex;
  grid-template-columns: 1fr 2fr;
  margin-top: 60px;
}

.cont-text p{
  font-size: 1.3em;
  font-family: 'Inter', sans-serif;
}

.text-one p{
  font-size: 1.5em;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.cont-img{
  width: 1800px;
}

iframe{
  height: 300px;
  width: 300px;
  position: absolute; /* Para que pueda moverse libremente */
  cursor: grab;
  top: 700px;
  left: 700px;
}

#hunter{
  width: 230px;
  position: absolute; /* Para que pueda moverse libremente */
  cursor: grab;
  bottom: 0px;
  right: 130px;
}

#matcha{
  width: 100px;
  position: absolute; /* Para que pueda moverse libremente */
  cursor: grab;
  top: 555px;
  left: 810px;
  transform: rotate(-15deg);
}

#vann{
  width: 150px;
  position: absolute; /* Para que pueda moverse libremente */
  cursor: grab;
  top: 200px;
  left: 1120px;
  transform: rotate(10deg);
}

#fresa{
  width: 150px;
  position: absolute; /* Para que pueda moverse libremente */
  cursor: grab;
  top: 750px;
  left: 1100px;
  transform: rotate(0deg);
}

.vivi-img{
  width: 700px;
}

.vivi-img img{
  display: block;
  margin: 0 auto;
  max-width: 50%;
  height: auto;
}

.cont-text p{
  text-align: left;
}

.cont-text{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
  height: 0;
}

/*Experience*/
section{
  margin: 0px 100px 0px 100px;
}

h1{
  margin-top: 150px;
  margin-bottom: 25px;
  font-weight: 900;
  font-size: 2em;
  color: #F76C0B;
  font-family: 'Roboto Condensed', sans-serif;
}

.cont-role {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 columnas */
  gap: 20px;
  align-items: center;
  max-width: 1200px;
}

.role-item {
  display: flex;
  gap: 10px;
}

.icon img {
  height: 25px;
}

.cont-description{
  margin-top: 30px;
  margin-bottom: 50px;
}

.cont-description p{
   text-align: left;
   font-size: 1.2em;
   font-family: 'Inter', sans-serif;
}

.title-role{
  width: 600px;
  font-size: 1.8em;
  width: bold;
  font-family: 'Roboto Condensed', sans-serif;
}

h4{
  font-size: 1.5em;
  color: #F76C0B;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.5em;
}

.date{
  font-family: 'Inter', sans-serif;
}

.place{
  font-family: 'Inter', sans-serif;
}

/*Skills*/
.cont-designer {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas iguales */
  width: 50%;         /* más espacio para contenido */
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

.cont-program {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* centrado vertical */
  gap: 10px;
}

.cont-program img {
  width: 50px;         /* ajusta según tamaño deseado */
  height: auto;
  object-fit: contain; /* para imágenes más consistentes */
}

.cont-program p {
  margin: 0;
  font-size: 1.2em;
  font-family: 'Inter', sans-serif;
}

.cont-developer {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 4 columnas iguales */
  width: 50%;         /* más espacio para contenido */
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

.title-skill{
  font-size: 1.8em;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;

}

/*EDUCATION*/
.cont-school{
  font-family: 'Inter', sans-serif;
  font-size: 1.2em;
  margin-bottom: 50px;
  margin-top: 10px;
}

/*FOOTER*/
footer {
  padding: 20px 0;
}

.icon-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.autor {
  text-align: center;
  font-size: 0.8em;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 100;
}

/*celular*/
@media screen and (max-width: 600px){

  /*BARRA DE NAVEGACIÓN*/
header{
    margin: 0px;
    padding: 0px;
  }

 .nav-container {
    display: flex;
    flex-direction: row;        /* mantiene los elementos en fila */
    justify-content: center;    /* centra horizontalmente los enlaces */
    width: 100%;                /* usa todo el ancho disponible */
    gap: 20px;                  /* espacio entre elementos */
    margin: 0 auto;             /* centra el contenedor */
    font-size: 0.9em;
  }

.nav-links{
  gap: 30px;
}


/*about me*/
main{
  margin: 0px 10px 0px 10px;
}

h2{
  font-size: 2em;
}

.cont-about {
  display: flex;
  flex-direction: column; /* Acomoda los hijos en columna (vertical) */
  justify-content: space-between; /* Empuja .cont-img hacia abajo */
  min-height: 110vh; /* Para asegurar que use todo el alto de la pantalla */
  margin-top: 20px;
}

.text-one p{
  font-size: 1em;
}

.text-two, .text-three{
  font-size: 0.6em;
}

#hunter{
  width: 80px;
  position: absolute; /* Para que pueda moverse libremente */
  cursor: grab;
  bottom: -130px;
  right: 50px;
}

#matcha{
  width: 40px;
  position: absolute; /* Para que pueda moverse libremente */
  cursor: grab;
  top: 730px;
  left: 60px;
  transform: rotate(-15deg);
}

#vann{
  width: 70px;
  position: absolute; /* Para que pueda moverse libremente */
  cursor: grab;
  top: 520px;
  left: 180px;
  transform: rotate(10deg);
}

#fresa{
  width: 60px;
  position: absolute; /* Para que pueda moverse libremente */
  cursor: grab;
  top: 760px;
  left: 200px;
  transform: rotate(0deg);
}

.vivi-img img{
  width: 150px;
  position: absolute;
  top: 560px;
  right: 85px;
}

/*SPOTIFY*/
@media (max-width: 767px) {
  .only-desktop {
    display: none;
  }
}


/*experiencia*/
section{
  margin: 0px 10px 0px 10px;
  font-size: 0.7em;
}

h5{
  font-size: 0.5em;
}

.cont-exp h1{
margin-top: 40px;
}

.cont-role{
  gap: 5px;
}

.role-item{
  width: 85px;
}

.role-item img{
  width: 15px;
  height: 15px;
}


/*skill*/
h1{
  margin-top: 10px;
}

.cont-designer {
  width: 260px; 
}

.cont-program img {
  width: 25px;         /* ajusta según tamaño deseado */
  height: auto;
  object-fit: contain; /* para imágenes más consistentes */
}

.cont-program svg{
  width: 25px;
  height: 25px;
}

.cont-program p {
  margin: 0;
  font-size: 1.2em;
}

.cont-developer {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 4 columnas iguales */
  width: 260px;         /* más espacio para contenido */
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

/*EDUCATION*/
.cont-school{ 
  font-size: 1.2em;
  margin-bottom: 50px;
  margin-top: 10px;
}

/*FOOTER*/
.icon-contact img {
  width: 20px;
}

.icon-contact{
  gap: 15px;
}

.autor {
  font-size: 0.5em;
}
}
