body {
    margin: 0;
    background: #000; /* Fondo negro profundo */
    color: white;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    z-index: -1;
}
  .foto {
    margin-top: 5vw;
    width: 14vw;
    height: 14vw;
    object-fit: cover;
    box-shadow: 0 0 40px 2px #8040bd;    
    border-radius: 50%;
  }
header {
    color: white;
    display: flex;
    justify-content: space-between; 
    align-items: center;            
    padding: 1vw 2vw;              
    background-color: rgba(0, 0, 0, 0.425);
    height: 0.5vw;      
}
.menu-horizontal b {
    margin-left: 2vw;               
    cursor: pointer;
  }
.inicio{
    width: 100%;
    height: 30vw;
}
.foto-container{
    display: flex;
    justify-content: center;
}
.contenido{
    display: flex;
    justify-content: center;
}
.contenido h1{
    background: linear-gradient(to right, rgb(97, 88, 219), rgb(112, 37, 139));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 3.2vw;
}
.texto{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    margin-top: -2vw;
}
.container-cont{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 1vw;
}

.contacto, .hoja-vida{
    display: flex;
    justify-content: center;
}
.contacto button, .hoja-vida button{
    border: 1px solid #6a1fb3;
    border-radius: 50px;
    width: 12vw;
    height: 3vw;
    text-align: center;
    background-color: transparent;
    text-decoration: none;
    color: white;
    font-size: 1vw;
    cursor: pointer;
}
.contacto a:hover button,
.hoja-vida a:hover button {
    background-color: #bc6bff;
}
.sobre-mi{
    display: flex;
    justify-content: center;
}
.organizador{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10vw;
    margin-top: 3.2vw;
}
.tarjeta-sobre-mi, .tarjeta-sobre-mi2, .tarjeta-sobre-mi3 {
    margin-top: 4vw;
    gap: 20px;
    padding: 20px;
    max-width: 420px;
    aspect-ratio: 1.618 / 1;
    border-radius: 12px;
    box-shadow: 0 4px 10px #d4b7f0;

    text-align: center;
  }
.tarjeta-sobre-mi,
.tarjeta-sobre-mi2,
.tarjeta-sobre-mi3 {
  margin-left: auto;
  margin-right: auto;
}
.tarjeta-sobre-mi h2,
.tarjeta-sobre-mi2 h2,
.tarjeta-sobre-mi3 h2{
    background: linear-gradient(to right, rgb(97, 88, 219), rgb(112, 37, 139));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.titulo-skills, .titulo-soft{
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 1.5vw;
    background: linear-gradient(to right, rgb(97, 88, 219), rgb(112, 37, 139));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.skills-carrusel {
  width: 100vw;
  overflow: hidden;
  position: relative;
  height: 10vw;
}

.container-skills {
  margin-top: 1vw;
  padding-left: 2vw;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: auto; 
  white-space: nowrap; 
  animation: desplazar-carrusel 12s linear infinite;
}

.container-skills.clone {
  position: absolute;
  left: 100%;
  top: 0;
}

.container-skills img {
  margin-top: 10px;
  width: 4vw;
  height: 4vw;
}

.html{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
    width: 12vw;
    height: 7.42vw;
  font-size: 1vw;
  border-radius: 12px;
  box-shadow: 0 4px 10px #f7f7f7;
  flex-shrink: 0;
}

@keyframes desplazar-carrusel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
