/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #000;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 15%;
  background-color: #fff;
  box-shadow: 0 3px 10px #a3a3a35e;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-size: 1.2em;
  
}

img {
  height: 100px;
  position: left;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-link {
  text-decoration: none;
  color: #000e2e;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

/* ANIMACIÓN EFECTO LÍNEA BAJO ENLACE */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #00a8e8;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #00a8e8;
}

.nav-link:hover::after {
  width: 100%;
}

/* RESPONSIVE PARA MÓVILES */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    padding: 10px 0;
    display: block;
  }
}

/* Contenido */
h1, h3 {
  color: #002244;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
}

section{
  max-width: 60%;
  margin: 40px auto;
  padding: 0 20px;
  flex-direction: row-reverse;
  
}
.Solutions {
  
  text-align: center;
  background-color: #02df9c;
  box-shadow: 10px 10px 15px rgba(2, 2, 2, 0.13);
  padding: 6%;
  text-size-adjust: 100%;
  max-width: 100%;
  font-size: 2em;
  animation: fadeUp 1s ease forwards;
  transform: translateY(40px);
  margin: 0 50px 0 50px;
}
.content-with-image {
  font-size: 1.8em;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    opacity: 100;
    animation: fadeUp 1s ease forwards;
    transform: translateY(40px);
    width: 100%;
    margin-top: 1rem;
}
.content-with-image img {
  
    width: 500px;
    display: flex;
    height: auto;
    border-radius: 30px;
    flex-shrink: 0;
    box-shadow: 10px 10px 15px rgba(2, 2, 2, 0.13);
    transition: transform 0.3s ease;
}
.speech-audio {
  font-size: 1.8em;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    opacity: 100;
    animation: fadeUp 1s ease forwards;
    transform: translateY(40px);
    width: 100%;
    margin-top: 1rem;
    flex-direction: row-reverse;
}
.speech-audio img {
    width: 500px;
    display: flex;
    height: auto;
    border-radius: 30px;
    flex-shrink: 0;
    box-shadow: 10px 10px 15px rgba(2, 2, 2, 0.13);
    transition: transform 0.3s ease;
}
.computer-vision {
  font-size: 1.8em;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    opacity: 100;
    animation: fadeUp 1s ease forwards;
    transform: translateY(40px);
    width: 100%;
    margin-top: 1rem;
    
}
.computer-vision img {
    width: 500px;
    display: flex;
    height: auto;
    border-radius: 30px;
    flex-shrink: 0;
    box-shadow: 10px 10px 15px rgba(2, 2, 2, 0.13);
    transition: transform 0.3s ease;
}

.data-processing {
  font-size: 1.8em;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    opacity: 100;
    animation: fadeUp 1s ease forwards;
    transform: translateY(40px);
    width: 100%;
    margin-top: 1rem;
    flex-direction: row-reverse;
    
}
.data-processing img {
    width: 600px;
    display: flex;
    height: auto;
    border-radius: 30px;
    flex-shrink: 0;
    box-shadow: 10px 10px 15px rgba(2, 2, 2, 0.13);
    transition: transform 0.3s ease;
}

.Labelling {
  font-size: 1.8em;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    opacity: 100;
    animation: fadeUp 1s ease forwards;
    transform: translateY(40px);
    width: 100%;
    margin-top: 1rem;
    
    
}
.Labelling img {
    width: 600px;
    display: flex;
    height: auto;
    border-radius: 30px;
    flex-shrink: 0;
    box-shadow: 10px 10px 15px rgba(2, 2, 2, 0.13);
    transition: transform 0.3s ease;
    
}

.AiGenerated {
  font-size: 1.8em;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    opacity: 100;
    animation: fadeUp 1s ease forwards;
    transform: translateY(40px);
    width: 100%;
    margin-top: 1rem;
    flex-direction: row-reverse;
    
    
}
.AiGenerated img {
    width: 600px;
    display: flex;
    height: auto;
    border-radius: 30px;
    flex-shrink: 0;
    box-shadow: 10px 10px 15px rgba(2, 2, 2, 0.13);
    transition: transform 0.3s ease;
    
}



.ready {
  max-width: 100%;
  font-size: 1em;
  text-align: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  color: rgb(0, 0, 0);
  
  
}
.ready h1{
  color: rgb(0, 0, 0);
  font-size: 2em;
  margin-bottom: 10px;
}





/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  div {
    padding: 15px;
  }
}

/* --- PIE DE PÁGINA (Footer) --- */
.footer {
  background-color: #000e2e;
  color: #fffefe;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 20px auto;
  animation: fadeIn 1s ease-in-out;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col h3 {
  color: #02df9c;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
   color: #02df9c;
  text-decoration: underline;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

.footer-col p, .footer-col a {
  font-size: 14px;
  color: #ffffff;
}

.footer-col a:hover {
 color: #02df9c;

}

.social-icons a img {
  width: 24px;
  margin-right: 12px;
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* BOTÓN DE MENÚ HAMBURGUESA */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  margin-left: auto;
}

/* MENÚ OCULTO EN MÓVIL */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    gap: 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-link {
    padding: 1rem;
    border-bottom: 1px solid #eee;
  }
}

.navbar img {
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .Solutions {
    font-size: 1.2em;
    margin: 0 1rem;
    padding: 2rem;
  }

  section {
    max-width: 100%;
    margin: 20px auto;
    padding: 0 1rem;
  }

  .content-with-image,
  .speech-audio,
  .computer-vision,
  .data-processing,
  .Labelling,
  .AiGenerated {
    flex-direction: column !important;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }

  .content-with-image img,
  .speech-audio img,
  .computer-vision img,
  .data-processing img,
  .Labelling img,
  .AiGenerated img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
  }

  .ready h1 {
    font-size: 1.5em;
  }

  .ready {
    padding: 1.5rem;
  }

  .navbar img {
    max-width: 250px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 1.5rem;
  }

  .social-icons {
    justify-content: center;
  }
}
