html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box; 
}


#Titulo {
    text-align: center;
    font-size: clamp(2rem, 4vh, 3.5rem);
    color: black;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

/* navegador */

#Nombre {
    color: white;
    margin: 0;  
    font-size: clamp(0.8rem, 1rem, 1.5rem);
    justify-items: flex-start;
}

    .navigator {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: black;
      padding: 10px 20px;
      position: relative;
    }
    
    .pages {
      display: flex;
      transition: all 0.3s ease;
    }
    
    .paginas {
      color: white;
      text-decoration: none;
      margin: 0 10px;
      font-size: clamp(0.8rem, 1rem, 1.5rem);
      transition: color 0.3s ease, text-shadow 0.3s ease;
    }
    
    .paginas:hover {
      color: yellow;
      text-shadow: 0 0 8px yellow;
    }
    
    .hamburger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 21px;
    }
    
    .hamburger span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: white;
      transition: all 0.3s ease;
    }

    /* final de navegaodr */
    
    /* Estilos para móviles */
    @media (min-width: 100px) and (max-width: 1200px) {
      .hamburger {
        display: flex;
      }
      
      .pages {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: black;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
      }
      
      .pages.active {
        max-height: 500px;
        opacity: 1;
        padding: 10px 0;
      }
      
      .paginas {
        padding: 10px 0;
        width: 100%;
        text-align: center;
      }
    }


    /*fin de navegadpr*/


#Introductory-Text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

#Image-Text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 auto;
    padding-bottom: 150px;
}

#Image-Profile {
    min-height: 30vh;
    max-height: 55vh;
    border-radius: 10%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}

#Text {
    max-width: 600px;
    font-size: clamp(0.7rem, 2.5vh, 1.8rem);
    text-align: left;
    padding: 20px;
}

/* Estilos para móviles */
@media (max-width: 768px) {
    #Image-Text {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    #Image-Profile {
        height: 250px;
    }
    
    #Text {
        text-align: center;
        padding: 0 15px;
    }
}

/* Footer*/

footer {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-icons a {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.social-icons a:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.copyright {
  color: white;
  margin: 0;
  font-size: clamp(0.7rem, 0.9rem, 1rem);
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
}

footer:hover {
  background-color: rgba(0, 0, 0, 0.95);
}

@media (max-width: 768px) {
  .footer-container {
    gap: 8px;
  }
  
  .social-icons {
    gap: 1rem;
  }
  
  .copyright {
    font-size: 0.7rem;
  }
}
