 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
  }

  :root{
    --bg-color: #000000;
    --second-bg-color: #323946;
    --text-color:#fff;
    --main-color: #00eeff;
  }
  
  
  html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  
  body{
   
background: var(--bg-color);
color: var(--text-color) ;

}

  
  
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }

  .logo{
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
    cursor: default;
  }
  
.navbar a{
  font-size: 1.7rem;
  color: var(--text-color);
  margin-left: 4rem;
  transition: .3s;
}

.navbar a:hover{
  color: var(--main-color);
}


#menu-icon{
  font-size: 3.6rem;
  color: var(--text-color);
display: none;
}


/* estilos para hacerlo responsive el menú*/

@media screen and (max-width: 1024px) {
  #menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .navbar.active {
    display: flex;
  }

  .navbar a {
    margin: 1.5rem 0;
    font-size: 2rem;
  }
}



/*INICIO */


.home{
  display: flex;
  justify-content: center;
  align-items: center; 
  margin-top: 8%;
  gap: 5rem;
  scroll-margin-top: 100px;
  }
  


.home-content h3{
  font-size: 4rem;
  font-weight: 700;
}

.home-content h3:nth-of-type(2){
  margin-bottom: 2rem;
}

span{
  color: var(--main-color);
}

.home-content h1{

  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.3;
  
}


.home-img img{
  width: 22vw;
  border-radius: 50%;
  }
  
  .home-content p{
    font-size: 1.6rem;
  }

.social-media a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: .2rem solid var(--main-color);
  border-radius: 50%;
font-size: 2rem;
color: var(--main-color);
margin: 3rem 1.5rem 3rem 0;
transition: .5s ease;
  }

  .social-media a:hover{
    background: var(--main-color);
    color: var(--second-bg-color);
    box-shadow: 0 0 1rem var(--main-color);
  }


  .flotante {
    width: 200px; /* Puedes ajustar el tamaño según necesites */
    height: auto;
    animation: flotacion 2s ease-in-out infinite;
  }
  
  @keyframes flotacion {
    0% {
      transform: translateY(0); /* Posición inicial */
    }
    50% {
      transform: translateY(-10px); /* Movimiento hacia arriba */
    }
    100% {
      transform: translateY(0); /* Regresa a la posición inicial */
    }
  }
  
/*SOBRE MI */
.heading{
  text-align: center;
  font-size: 4rem;
  
}

.about-content {
  margin-bottom: 5rem;
}


.about-content h2{
  text-align: center;
  line-height: 1.2;
}

.about-content h3{
  font-size: 2.6rem;
  text-align: center;
}

.about-content p{
  font-size: 2rem;
  margin-left: 6rem;
  margin-right: 6rem;
  text-align: center;
  
}

.btn{
  display: inline-block;
  padding: 1rem 2.8rem;
  background:var(--main-color);
  border-radius: 4rem;
  box-shadow: 0 0 1rem var(--main-color);
  font-size: 1.6rem;
  color: var(--second-bg-color);
  letter-spacing: .1rem;
  font-weight: 600;
  transition: .5s ease;
  
}

.btn:hover{
  box-shadow: none;
}


.heading-2{
  text-align: center;
  font-size: 4rem;
  margin-bottom: 3rem;
  margin-top: 5rem;

}

.about-content-2 h2{
  text-align: center;
  line-height: 1.2;
  color: #00eeff;
}

.about-content-2 h2 span{
  color: #fff;
}

.btn-container {
  text-align: center;
  margin-top: 2rem;
}







/*PROGRAMAS QUE DOMINO */

.programas {
  display: flex;
  flex-direction:row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 4.5rem;
  margin-top: 0;
  }

  .about-content-2 h2 {
    margin-bottom: 2px; /* Ajustá este valor según lo que necesites */
  }

.programas img {
  width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  
}

/*GALERIA */




.proceso-container {
  position: relative;
  margin-bottom: 40px;
}

.imagen-proceso {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.imagen-proceso:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.proceso-texto {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 80%;
  backdrop-filter: blur(2px);
}




.galeria {
  column-count: 3;
  column-gap: 15px;
  padding: 20px;
}

.galeria img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  break-inside: avoid;
}

.galeria img:hover {
  transform: scale(1.05);

  box-shadow: 0 10px 20px rgba(41, 40, 40, 0.3);
}

@media (max-width: 768px) {
  .galeria {
    column-count: 2;
  }
}
/*USOS DE LAS ILUSTRACIONES*/

.heading{
  margin-bottom: 3rem;
}



.usos-container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 3rem;
  
}


.usos-container .usos-box{
  flex: 1 1 30rem;
  background: var(--second-bg-color);
  padding: 3rem 2rem 4rem; 
  border-radius: 2rem;
  text-align: center;
  border: .2rem solid var(--bg-color);
  transition: 0.5s ease;
}


.usos-container .usos-box:hover{
  border-color: var(--main-color);
  transform: scale(1.02);
}


.usos-box i {
  font-size: 7rem;
  color: var(--main-color);

}

.usos-box h3{
  font-size: 2.6rem;
  margin: 1rem 0 3rem;
}

.usos-box p{
  margin-bottom: 30px;
  font-size: 15px;
}

.heading-2{
  margin-top: 8rem;
}
/*COM0 TRABAJO*/

.como-trabajo{
  padding: 5px 0 20px 0;
  text-align: center;
  
  
}

.comotrabajo-content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  
}

.comotrabajo-txt{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra el contenido dentro de cada tarjeta */
  text-align: center;
  }

  .comotrabajo-txt h3{
    font-size: 30px;
  }

  .comotrabajo-txt p{
    font-size: 20px;
  }


  .comotrabajo-card {
    margin-bottom: 40px; /* Espacio entre tarjetas */
    display: flex;
  flex-direction: column;
  align-items: center; /* Centra las tarjetas */
  text-align: center;
    
  }

  .comotrabajo-img {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .comotrabajo-img img {
    width: 80%; /* Ajustá esto a gusto */
    max-width: 400px;
    height: auto;
  }
  
  
.circulo img{
  width: 100px;
}

/*OPINIONES DE CLIENTES

.slider {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
  margin-bottom: 20px;
}
.slides {
 
  display: flex;
  animation: slide 12s infinite linear;
}
.slides img {
  width: 100%;
  max-width: 200px;
  margin-right: 10px;
}
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1200px); }
  }
 */
 
/*FOOTER*/
 
footer {
  background-color: var(--second-bg-color);
  color: #fff;
  text-align: center;
  padding: 20px 5px;
  
}

footer p {
  font-size: 2rem;
  margin: 0 0 10px 0;
  
}

.social-media-2 a{
  display:inline-flex;
  justify-content: center;
  
  align-items: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: .2rem solid var(--main-color);
  border-radius: 50%;
font-size: 2rem;
color: var(--main-color);
margin: 0.5rem 0.75rem;
transition: .5s ease;
  }

  .social-media-2 a:hover{
    background: var(--main-color);
    color: var(--second-bg-color);
    box-shadow: 0 0 1rem var(--main-color);
  }

  .container-principal{
   min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
  }

  /*PROGRAMAS QUE DOMINO*/
  
  
  @media (max-width: 768px) {
    .programas img {
      width: 100px; /* o el tamaño que prefieras para móvil */
      height: auto;
    }
  
    .programas {
      gap: 10px; /* opcional, si querés reducir el espacio entre imágenes en móvil */
    }
  }
  

  


/* Responsive como trabajo, opiniones y footer*/

@media (max-width: 768px) {
  .comotrabajo-content {
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .comotrabajo-txt {
    width: 100%;
    padding: 0;
  }

  .comotrabajo-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .comotrabajo-card img {
    width: 80px;
    margin-bottom: 1rem;
  }

  .comotrabajo-img {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
  }

  .comotrabajo-img img {
    max-width: 80%;
    height: auto;
  }

  .slider::-webkit-scrollbar {
    display: none;
  }

  .slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1.5rem; /* separa del footer */
    scroll-behavior: smooth;
  }

  .slides {
    display: flex;
    width: max-content;
    animation: none;
    gap: 1rem;
  }

  .slides img {
    width: 80vw;
    height: auto;
    scroll-snap-align: start;
    border-radius: 10px;
  }
  footer {
    text-align: center;
    padding: 2rem 1rem;
  }

  footer p {
    font-size: 1.2rem; /* más amigable en móvil */
    padding: 0 1rem;
  }

  .social-media-2 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }


  .social-media-2 a {
    width: 3rem;
    height: 3rem;
    font-size: 2.5rem;
  } 

  .social-media a{
   
  }
}



@media (max-width: 768px) {
  .home {
    flex-direction: column;
    text-align: center;
    margin-top: 6rem;
    gap: 3rem;
    padding: 0 2rem;
  }

  .home-img{
    margin-bottom: 3rem;
  }

  .home-img img {
    width: 60vw;
    
  }

  .home-content h1 {
    font-size: 3.5rem;
  }

  .home-content h3 {
    font-size: 2rem;
    margin-top: 30px;
  }

  .home-content p {
    font-size: 1.4rem;
  }

  .social-media {
    justify-content: center;
  }
}



@media (max-width: 768px) {
  .programas {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .programas img {
    width: 90%;
  }
} 

.comotrabajo-card:last-child {
  margin-bottom: 0;
}

/* Estilos para tablets */

@media screen and (max-width: 1024px) and (min-width: 768px) {

  .home-content h3 {
     margin-top: 30px;
  }

  .usos-container {
    flex-direction: column;
    margin: 2rem;
    gap: 2rem;
  }

  .usos-container .usos-box {
    flex: 1 1 100%;
    padding: 2rem;
  }

  .usos-box h3 {
    font-size: 2.2rem;
  }

  .usos-box p {
    font-size: 1.4rem;
  }

  .usos-box i {
    font-size: 6rem;
  } 
}
