/* 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 rgba(0, 0, 0, 0.05);
  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: 20%;
}

.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: 2%;
  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: 100%) {
  .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 PRINCIPAL (Main Content) --- */
.titulo {
  
  flex-direction: row-reverse;
  text-align: center;
  font-size: 2.5em;
  color: #000e2e;
  margin: auto;
  max-width: 100%;
  padding:5%;
  align-items: center;
  animation: fadeIn 1s ease-in-out; 
  display: flex;
  padding-right: 20px;
}

.titulo h1  {
  transform: translateX(-100%);
  animation: slideIn 0.8s ease-out forwards;
  max-width: 100%;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.titulo p  {
  transform: translateX(-100%);
  animation: slideIn 0.8s ease-out forwards;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}


.logo-home video {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}


video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    margin:  auto ;
    object-fit: cover;
    
}

.anotadores{
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 1.4em;
  padding: 0% ;
  max-width: 40%;
  margin: auto;
  position: left;

  
}

.quality {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
  font-size: 1.4em;
  padding: 0% ;
  max-width: 40%;
  margin: auto;
  position: right;
  
}

.solutions h1 {
  text-align: center;
  color: #000e2e;
  margin-bottom: 1%;
  font-size: 2em;
  animation: fadeIn 1s ease-in-out; 
 max-width: 100%;
  
}

.solutions-list {
  
  padding: 2rem 1rem;

  background-color: #ffffff;
  text-align:center;

  margin: 0 10%;
  max-width: 100%;
  animation: fadeIn 1s ease-in-out;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.data-colection, .speech-audio, .computer-vision, .ai, .labeling, .llms  {
  flex: 1;
  text-align: center;
  font-size: 1em;
  background-color: #02df9c;
  padding: 2%;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

/* --- 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;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.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;
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
/* MEDIA QUERIES CORREGIDAS */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .navbar img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}


  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }

  .titulo {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .titulo h1, .titulo p {
    font-size: 1.5rem;
  }

  .anotadores,
  .quality {
    max-width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
  }

  .solutions-list {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 1.5rem;
  }

  .social-icons {
    justify-content: center;
  }
}

/* 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;
  }
}
@media (max-width: 768px) {
  .navbar img {
    max-width: 400px;
    margin-bottom: 10px;
  }
}
.navbar img {
  max-width: 400px;
  height: auto;
  object-fit: contain;
}







