*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main{
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5) 50%), url(1.jpg);
    background-position: center;
    background-size: cover;
    height: 109vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 40px;
    height: 70px;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

.logo {
    color: #00a8e4;
    font-size: 35px;
    font-family: system-ui, sans-serif;
    flex: 1;
    cursor: pointer;
}

.menu {
    flex: 2;
    display: flex;
    justify-content: center;
}

.menu ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    text-decoration: none;
    color: #00a8e4;
    font-weight: bold;
    font-family: system-ui, sans-serif;
    transition: 0.3s;
}

.menu ul li a:hover {
    color: black;
}

.search {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
}

.srch {
    width: 200px;
    height: 40px;
    background: transparent;
    border: 1px solid #00a8e4;
    border-right: none;
    color: white;
    padding: 10px;
    font-size: 16px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.btn {
    width: 100px;
    height: 40px;
    background: #00a8e4;
    border: 1px solid #00a8e4;
    color: white;
    font-size: 15px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
}

.btn:focus,
.srch:focus {
    outline: none;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  color: white;
  position: relative;
  gap: 20px;
}

.text-section {
  flex: 1 1 60%;
  padding-right: 20px;
}

.form {
  flex: 1 1 35%;
  max-width: 320px;
  margin: 0;
}


.content .par{
    padding-left: 20px;
    padding-bottom: 25px;
    font-family: system-ui, sans-serif;
    letter-spacing: 1.2px;
    line-height: 30px;
}

.content h1{
    font-family: Impact, sans-serif;
    font-size: 50px;
    padding-left: 20px;
    margin-top: 9%;
    letter-spacing: 2px;
}

.content .cn{
    width:160px;
    height: 40px;
    background: #00a8e4;
    border: none;
    margin-bottom: 10px;
    margin-left: 20px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s ease;
} 

.content .cn a{
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
    font-weight: bold;
}

.cn:hover{
    background-color: white;
}

.content span{
    color: #00a8e4;
    font-size: 60px;
}

.form {
  width: 100%;
  max-width: 320px;
  margin: 40px 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 30px;
  color: white;
  font-family: system-ui, sans-serif;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.form h2 {
  background-color: #00a8e4;
  color: white;
  font-size: 20px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-weight: bold;
}

.form label {
  display: block;
  margin-top: 15px;
  font-size: 15px;
  color: #dddddd;
}

.form input {
  width: 100%;
  height: 40px;
  margin-top: 5px;
  padding: 0 10px;
  border: 1px solid #00a8e4;
  background-color: transparent;
  color: white;
  font-size: 14px;
  border-radius: 5px;
}

.form input:focus {
  outline: none;
  border-color: #00cfff;
  background-color: rgba(255, 255, 255, 0.05);
}

.btnn {
  width: 100%;
  height: 45px;
  background: #00a8e4;
  border: none;
  margin-top: 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-weight: bold;
  transition: 0.3s ease;
}

.btnn:hover {
  background: white;
  color: #00a8e4;
}

.form .link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #cccccc;
}

.form .link a {
  color: #00a8e4;
  text-decoration: none;
  font-weight: bold;
}

.liw {
  text-align: center;
  margin: 10px 0;
  font-size: 13px;
  color: #aaaaaa;
}

.form-message {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

.icon {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.icon a {
  color: #00a8e4;
  font-size: 24px;
  transition: 0.3s;
}

.icon a:hover {
  color: white;
}


.icon ion-icon{
    color: #00a8e4;
    font-size: 30px;
    padding-left: 14px;
    padding-top: 5px;
    transition: 0.3s;
}

.icon ion-icon:hover{
    color: white;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: #00a8e4;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        width: 100%;
        background-color: white;
    }

    .menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu ul {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }

    .search {
        display: none;
    }

    .navbar {
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

.logo a {
    display: inline-block;
}

.logo-img {
    height: 45px;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
}

.logo a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .main {
        height: auto;
        padding-bottom: 40px;
    }

    .content {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .content h1 {
        font-size: 36px;
        margin-top: 40px;
    }

    .content span {
        font-size: 42px;
    }

    .content .par {
        font-size: 16px;
        line-height: 26px;
        padding: 0;
    }

    .content .cn {
        margin: 20px auto;
    }

    .form {
        position: static;
        width: 100%;
        max-width: 320px;
        margin: 30px auto;
        padding: 20px;
    }

    .form h2 {
        font-size: 20px;
    }

    .form input,
    .btnn {
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 10px 20px;
    }

    .logo {
        margin-bottom: 10px;
    }

    .menu-toggle {
        display: block;
        align-self: flex-end;
    }

    .menu ul {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 10px 0;
    }

    .menu {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
    }

    .menu.active {
        display: flex;
    }

    .search {
        display: none;
    }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 12px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.whatsapp-float ion-icon {
  font-size: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20c155;
}
.form-message {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}

/* Fondo para la página de INICIO */
body.inicio-page .main {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5) 50%), 
              url('img/1.jpg') no-repeat center center/cover;
}

/* Fondo para la página de NOSOTROS */
body.nosotros-page .main {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), 
              url('img/nostros-bg.jpg') no-repeat center center/cover;
}

.nosotros-img img {
  width: 60%;
  max-width: 350px;  /* Limita el ancho máximo */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.nosotros-text {
  flex: 1 1 450px;
  max-width: 600px;
  font-family: system-ui, sans-serif;
  color: white;
}

.nosotros-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: white;
}

.nosotros-text h2 {
  font-size: 32px;
  color: #00a8e4;
  margin-bottom: 20px;
  font-family: system-ui, sans-serif;
}

.objetivo-section, .valores-section {
  padding: 60px 20px;
  text-align: center;
  color: white;
  font-family: system-ui, sans-serif;
  background-color: rgba(0,168,228,0.8);
}

.objetivo-section h2, .valores-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffffff;
}

.objetivo-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.valores-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.valor {
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.valor h3 {
  font-size: 20px;
  color: #00a8e4;
  margin-bottom: 10px;
}

.valor p {
  font-size: 15px;
  color: #00a8e4;
}

/* Responsivo */
@media (max-width: 768px) {
  .valores-grid {
    flex-direction: column;
    align-items: center;
  }

  .valor {
    width: 80%;
  }
}

.objetivo-lista {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 17px;
  color: #ffffff;
}

.objetivo-lista li {
  margin: 8px 0;
  font-weight: 500;
}

.pudu-section {
  padding: 60px 20px;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.85);
  font-family: system-ui, sans-serif;
}

.pudu-section h2 {
  font-size: 32px;
  color: #00a8e4;
  margin-bottom: 20px;
}

.pudu-section h3 {
  font-size: 24px;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.pudu-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 17px;
  line-height: 1.6;
}

.pudu-beneficios {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pudu-beneficios li {
  margin: 10px 0;
  font-size: 16px;
  color: #dddddd;
  font-weight: 500;
}
.pudu-logo {
  width: 240px;
  max-width: 100%;
  margin: 20px auto;
  display: block;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pudu-logo:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 168, 228, 0.4);
}

.tecnologia-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #ffffff;
  color: #333;
  font-family: system-ui, sans-serif;
}

.tecnologia-section h2 {
  font-size: 34px;
  color: #00a8e4;
  margin-bottom: 20px;
  position: relative;
}

.tecnologia-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}

.tecnologia-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.tech-item {
  background-color: #f9f9f9;
  padding: 25px;
  width: 260px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 168, 228, 0.2);
  border-color: #00a8e4;
}

.tech-item h3 {
  color: #00a8e4;
  font-size: 18px;
  margin-bottom: 12px;
}

.tech-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tech-item {
    width: 90%;
    text-align: center;
  }
}

.tecnologia-imagen {
  margin: 40px auto 20px;
  text-align: center;
}

.tecnologia-imagen img {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 168, 228, 0.15);
}

.cta-tecnologia {
  margin-top: 30px;
  text-align: center;
}

.btn-skybot {
  background-color: #00a8e4;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-skybot:hover {
  background-color: #008fc9;
  transform: translateY(-3px);
}

.quienes-somos {
  background-color: rgba(255, 255, 255, 0.1); /* Blanco translúcido */
  backdrop-filter: blur(6px); /* Efecto difuminado */
  -webkit-backdrop-filter: blur(6px); /* Compatibilidad Safari */
  padding: 80px 20px;
  color: #333;
  font-family: system-ui, sans-serif;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}


.quienes-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.quienes-texto {
  flex: 1 1 500px;
  max-width: 600px;
}

.quienes-texto h2 {
  font-size: 34px;
  color: #00a8e4;
  margin-bottom: 20px;
}

.quienes-texto {
  flex: 1 1 500px;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 168, 228, 0.3);
  backdrop-filter: blur(6px);
}


.quienes-imagen {
  flex: 1 1 400px;
  text-align: center;
}

.quienes-imagen img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 168, 228, 0.15);
}

/* Responsivo */
@media (max-width: 768px) {
  .quienes-grid {
    flex-direction: column;
    text-align: center;
  }

  .quienes-texto h2 {
    font-size: 28px;
  }

  .quienes-texto p {
    font-size: 16px;
  }

  .quienes-imagen img {
    max-width: 90%;
  }
}

/*Pagina de Productos*/

.productos-intro {
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #f3faff);
  padding: 80px 20px 50px;
  font-family: system-ui, sans-serif;
}

.productos-intro h1 {
  font-size: 36px;
  color: #00a8e4;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.productos-intro p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}


.categoria-productos {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: system-ui, sans-serif;
}

.categoria-productos h2 {
  text-align: center;
  color: #00a8e4;
  font-size: 28px;
  margin-bottom: 40px;
  position: relative;
}

.categoria-productos h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #00a8e4;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}


.productos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.producto-card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 168, 228, 0.12);
  width: 260px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: system-ui, sans-serif;
}

.producto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 168, 228, 0.25);
}

.producto-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.producto-card h3 {
  font-size: 18px;
  color: #00a8e4;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.producto-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.5;
}


/* Responsive */
@media (max-width: 768px) {
  .producto-card {
    width: 90%;
  }

  .productos-intro h1 {
    font-size: 28px;
  }

  .productos-intro p {
    font-size: 16px;
  }

  .categoria-productos h2 {
    font-size: 24px;
  }
}

.producto-imagen {
  width: 100%;
  height: 250px;
  background-color: #f4faff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Eliminamos padding para aprovechar 100% del alto */
}

.producto-imagen img {
  width: auto;
  height: 90%;
  max-height: 90%;
  object-fit: contain;
  display: block;
}

.producto-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  width: 200px;
  box-shadow: 0 4px 14px rgba(0, 168, 228, 0.1);
  overflow: hidden;
}
.uso-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.uso-card p {
  padding: 12px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  margin: 0;
}

/* BOTÓN */
.btn-skybot {
  background-color: #00a8e4;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.btn-skybot:hover {
  background-color: #008fc9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .caracteristicas-grid,
  .escenarios-grid {
    flex-direction: column;
    align-items: center;
  }

  .video-container {
    padding-bottom: 56.25%;
  }
}

/*SECCION PAGINA CC1*/
.detalle-robot {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: system-ui, sans-serif;
}

.robot-contenido {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.robot-img {
  width: 100%;
  max-width: 500px;
  height: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 168, 228, 0.15);
  margin: 0 auto;
}
.robot-img img {
  max-width: 200%;
  max-height: 200%;
  object-fit: contain;
  display: block;
}




.robot-info {
  flex: 1 1 500px;
}

.robot-info h1 {
  font-size: 36px;
  color: #00a8e4;
  margin-bottom: 15px;
}

.robot-info .subtitulo {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
}

.especificaciones {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.especificaciones li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}

.btn-skybot {
  background-color: #00a8e4;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-skybot:hover {
  background-color: #008fc9;
}

/* Responsive */
@media (max-width: 768px) {
  .robot-contenido {
    flex-direction: column;
    text-align: center;
  }

  .robot-info h1 {
    font-size: 28px;
  }
}

/* SECCIÓN HERO CON IMAGEN */

/* SECCIÓN HERO CON IMAGEN */
.hero-background {
  width: 100%;
  background-color: #f5fbff;
  text-align: center;
  padding: 40px 0;
}
.hero-background img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 168, 228, 0.1);
}

/* VIDEO EMBEBIDO */
.video-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}
.video-section h2 {
  color: #00a8e4;
  font-size: 28px;
  margin-bottom: 30px;
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* CARACTERÍSTICAS PARTICULARES */
.caracteristicas-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.caracteristicas-section h2 {
  color: #00a8e4;
  font-size: 28px;
  margin-bottom: 40px;
}
.caracteristicas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.feature-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 6px 18px rgba(0, 168, 228, 0.1);
  text-align: left;
}
.feature-card h3 {
  color: #00a8e4;
  font-size: 18px;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: #555;
}

/* TABLA TÉCNICA */
.tecnicas-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}
.tecnicas-section h2 {
  color: #00a8e4;
  font-size: 28px;
  margin-bottom: 30px;
}
.tabla-container {
  overflow-x: auto;
  max-width: 900px;
  margin: 0 auto;
}
.tabla-tecnica {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.tabla-tecnica th,
.tabla-tecnica td {
  padding: 14px 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
.tabla-tecnica th {
  color: #00a8e4;
  font-weight: bold;
  width: 40%;
}
.tabla-tecnica td {
  color: #444;
}

/* ESCENARIOS DE USO */
.escenarios-section {
  background-color: #f5fbff;
  padding: 60px 20px;
  text-align: center;
}
.escenarios-section h2 {
  color: #00a8e4;
  font-size: 28px;
  margin-bottom: 30px;
}
.escenarios-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.uso-card {
  background-color: #ffffff;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 4px 14px rgba(0, 168, 228, 0.1);
  overflow: hidden;
}
.uso-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.uso-card p {
  padding: 12px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  margin: 0;
}

/* BOTÓN */
.btn-skybot {
  background-color: #00a8e4;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.btn-skybot:hover {
  background-color: #008fc9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .caracteristicas-grid,
  .escenarios-grid {
    flex-direction: column;
    align-items: center;
  }

  .video-container {
    padding-bottom: 56.25%;
  }
}
.intro-card {
  background-color: #ffffff;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 168, 228, 0.08);
  max-width: 1200px;
  margin: 60px auto;
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.robot-img {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 168, 228, 0.15);
}

.robot-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.robot-info {
  flex: 1 1 500px;
  font-family: system-ui, sans-serif;
}

.robot-info h1 {
  font-size: 36px;
  color: #00a8e4;
  margin-bottom: 15px;
}

.robot-info .subtitulo {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}
/* HERO SECCIONAL */
.hero-banner-cc1 {
  width: 100%;
  min-height: 90vh;
  background-image: url('img/cc1-hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 40px;
  position: relative;
}

.hero-content {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 167, 228, 0.767);
}

.hero-text h1 {
  font-size: 48px;
  color: #00a8e4;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline {
  padding: 12px 24px;
  border: 2px solid #00a8e4;
  color: #00a8e4;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background-color: #00a8e4;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-banner-cc1 {
    justify-content: center;
    padding: 40px 20px;
    background-position: center top;
  }

  .hero-content {
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 16px;
  }
}


/* VIDEO Y DESCRIPCION */
.video-descripcion {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #f5fbff;
}
.video-block {
  flex: 1 1 500px;
  max-width: 600px;
  aspect-ratio: 16 / 9;
}
.video-block iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.descripcion-block {
  flex: 1 1 400px;
  max-width: 500px;
}
.descripcion-block h2 {
  font-size: 40px;
  color: #00a8e4;
  margin-bottom: 15px;
}
.descripcion-block p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* FUNCIONES CLAVE */
.caracteristicas-section {
  padding: 80px 20px;
  background-color: #f5fbff;
  text-align: center;
}

.caracteristicas-section h2 {
  font-size: 30px;
  color: #00a8e4;
  margin-bottom: 50px;
  position: relative;
}

.caracteristicas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-card {
  background-color: #ffffff;
  width: 280px;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 167, 228, 0.401);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
}

.feature-card::before {
  content: \"\";
  display: block;
  width: 100%;
  height: 6px;
  background-color: #00a8e4;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

.feature-card h3 {
  color: #00a8e4;
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 168, 228, 0.15);
}

@media (max-width: 768px) {
  .feature-card {
    width: 90%;
  }
}

/* TABLA TECNICA */
.tecnicas-section {
  background-color: #f5f7ff;
  padding: 80px 20px;
  text-align: center;
}

.tecnicas-section h2 {
  color: #00a8e4;
  font-size: 32px;
  margin-bottom: 40px;
}

.tabla-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 167, 228, 0.278);
  overflow: hidden;
}

.tabla-tecnica {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.tabla-tecnica th,
.tabla-tecnica td {
  padding: 18px 20px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

.tabla-tecnica th {
  background-color: #f0f9fc;
  color: #00a8e4;
  width: 40%;
  font-weight: 600;
  font-size: 15px;
}

.tabla-tecnica td {
  color: #444;
  font-size: 15px;
  background-color: #ffffff;
}

.tabla-tecnica tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .tabla-tecnica th,
  .tabla-tecnica td {
    padding: 14px 16px;
    font-size: 14px;
  }
}


/* ESCENARIOS DE USO */
.escenarios-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.escenarios-section h2 {
  color: #00a8e4;
  font-size: 30px;
  margin-bottom: 50px;
}

.escenarios-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.uso-card {
  width: 220px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 167, 228, 0.511);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 167, 228, 0.293);
}

.uso-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.uso-card p {
  padding: 16px;
  font-size: 15px;
  font-weight: bold;
  color: #00a8e4;
  text-transform: uppercase;
  background-color: white;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .uso-card {
    width: 90%;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-full h1 {
    font-size: 32px;
  }
  .video-descripcion {
    flex-direction: column;
    text-align: center;
  }
  .descripcion-block h2 {
    font-size: 20px;
  }
  .descripcion-block p {
    font-size: 15px;
  }
  .caracteristicas-grid,
  .escenarios-grid {
    flex-direction: column;
    align-items: center;
  }
}

html {
  scroll-behavior: smooth;
}

/* ICONO 4 EN 1 CC1 */

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  height: 50px;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  fill: #00a8e4;
  display: block;
}

.slider-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: slide-left 35s linear infinite;
}

.uso-card {
  flex: 0 0 calc(25% - 20px); /* 4 tarjetas por fila con espacio */
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 168, 228, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
}

.uso-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.uso-card p {
  padding: 16px;
  font-size: 15px;
  font-weight: bold;
  color: #00a8e4;
  background-color: white;
  margin: 0;
  text-transform: uppercase;
}

/* Animación infinita */
@keyframes slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-200%); }
}

.slider-container:hover .slider-track {
  animation-play-state: paused;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .uso-card {
    flex: 0 0 calc(50% - 20px); /* 2 tarjetas */
  }
}

@media (max-width: 600px) {
  .uso-card {
    flex: 0 0 100%; /* 1 tarjeta */
  }
}
/* HERO SECCIONAL SH1 */
.hero-banner-sh1 {
  width: 100%;
  min-height: 90vh;
  background-image: url('img/sh1-hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 40px;
  position: relative;
}

/* HERO SECCIONAL MT1 */
.hero-banner-mt1 {
  width: 100%;
  min-height: 90vh;
  background-image: url('img/mt1-hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 40px;
  position: relative;
}

/* HERO SECCIONAL T300 */
.hero-banner-t300 {
  width: 100%;
  min-height: 90vh;
  background-image: url('img/t300-hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 40px;
  position: relative;
}

.modos-entrega-section {
  padding: 80px 20px;
  background-color: #e6f4f9; /* azul claro muy suave */
  text-align: center;
}

.modos-entrega-section h2 {
  font-size: 30px;
  color: #0078a8; /* azul un poco más oscuro */
  margin-bottom: 50px;
}

.modos-entrega-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.modo-card {
  background-color: #ffffff;
  padding: 30px 20px;
  width: 300px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 168, 228, 0.08);
  text-align: left;
  border: 1px solid #d0e7f1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modo-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px #00a8e433;
}

.modo-card h3 {
  font-size: 18px;
  color: #00a8e4;
  margin-bottom: 12px;
}

.modo-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .modo-card {
    width: 90%;
    text-align: center;
  }
}

/* HERO SECCIONAL BELLABOT PRO */
.hero-banner-bellabot {
  width: 100%;
  min-height: 90vh;
  background-image: url('img/bellabot-hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 40px;
  position: relative;
}

.feature-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 168, 228, 0.15);
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* HERO SECCIONAL KETTYBOT PRO */
.hero-banner-kettybot {
  width: 100%;
  min-height: 90vh;
  background-image: url('img/kettybot-hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 40px;
  position: relative;
}

/* HERO SECCIONAL PUDUBOT PRO */
.hero-banner-pudubot {
  width: 100%;
  min-height: 90vh;
  background-image: url('img/pudubot-2-hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 40px;
  position: relative;
}

/* HERO SECCIONAL Flashbot */
.hero-banner-flashbot {
  width: 100%;
  min-height: 90vh;
  background-image: url('img/flashbot-hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 40px;
  position: relative;
}

/* CONTACTO SECTION */
.contacto-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f3faff);
  text-align: center;
  font-family: system-ui, sans-serif;
}

.contacto-section h1 {
  font-size: 34px;
  color: #00a8e4;
  margin-bottom: 20px;
}

.contacto-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 17px;
  color: #444;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact-form label {
  text-align: left;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

#contact-form input,
#contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #00a8e4;
  border-radius: 8px;
  font-size: 15px;
  background-color: #ffffff;
  color: #333;
  font-family: system-ui, sans-serif;
}

#contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #00c2ff;
  background-color: #f9fcff;
}

.btn-skybot {
  background-color: #00a8e4;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-skybot:hover {
  background-color: #008fc9;
}

.form-message {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #00a8e4;
}

@media (max-width: 768px) {
  .contacto-section h1 {
    font-size: 28px;
  }

  .contacto-section p {
    font-size: 15px;
  }

  #contact-form {
    width: 100%;
    padding: 0 10px;
  }
}

/* REDES SOCIALES */
.redes-sociales {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.redes-sociales a {
  color: #00a8e4;
  font-size: 28px;
  transition: color 0.3s ease;
}

.redes-sociales a:hover {
  color: #0078a0;
}

@media (max-width: 768px) {
  .contacto-section h1 {
    font-size: 28px;
  }

  .contacto-section p {
    font-size: 15px;
  }

  #contact-form {
    width: 100%;
    padding: 0 10px;
  }

  .redes-sociales a {
    font-size: 24px;
  }
}
/* === INICIO SKYBOT REDISEÑO HOME === */

/* HERO PRINCIPAL */
.hero-banner {
  width: 100%;
  min-height: 90vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('img/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: rgb(0, 0, 0);
}

.hero-banner h1 {
  font-size: 48px;
  line-height: 1.2;
  color: white;
}

.hero-banner span {
  color: #00a8e4;
}

.hero-banner p {
  font-size: 18px;
  margin: 20px auto;
  max-width: 600px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-skybot,
.btn-outline {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.btn-skybot {
  background-color: #00a8e4;
  color: white;
}

.btn-outline {
  border: 2px solid #00a8e4;
  color: #00a8e4;
  background-color: transparent;
}

.btn-skybot:hover,
.btn-outline:hover {
  background-color: #008fc9;
  color: white;
}

/* SECCIÓN QUIÉNES SOMOS */
.intro-nosotros {
  padding: 80px 20px;
  background-color: #ffffff;
}

.intro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text {
  flex: 1 1 400px;
  max-width: 500px;
}

.intro-text h2 {
  font-size: 32px;
  color: #00a8e4;
  margin-bottom: 16px;
}

.intro-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.intro-img img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* SECCIÓN SOLUCIONES */
.soluciones-section {
  background-color: #f9fcfe;
  padding: 80px 20px;
  text-align: center;
}

.soluciones-section h2 {
  font-size: 32px;
  color: #00a8e4;
  margin-bottom: 40px;
}

.soluciones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.solucion-card {
  width: 200px;
  text-align: center;
}

.solucion-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
}

.solucion-card p {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

/* SECCIÓN PRODUCTOS DESTACADOS */
.destacados-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #ffffff;
}

.destacados-section h2 {
  font-size: 32px;
  color: #00a8e4;
  margin-bottom: 30px;
}

.productos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.producto-card {
  width: 260px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 168, 228, 0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.producto-card:hover {
  transform: translateY(-5px);
}

.producto-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.producto-card h3 {
  color: #00a8e4;
  font-size: 18px;
  margin-bottom: 10px;
}

.producto-card p {
  font-size: 14px;
  color: #555;
}

/* SECCIÓN BENEFICIOS */
.beneficios-section {
  padding: 80px 20px;
  background-color: #f3faff;
  text-align: center;
}

.beneficios-section h2 {
  font-size: 32px;
  color: #00a8e4;
  margin-bottom: 40px;
}

.beneficios-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.beneficio-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: left;
}

.beneficio-card h3 {
  color: #00a8e4;
  font-size: 18px;
  margin-bottom: 12px;
}

.beneficio-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* CTA FINAL */
.cta-section {
  background-color: #00a8e4;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.cta-section .btn-skybot {
  background-color: #ffffff;
  color: #00a8e4;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.cta-section .btn-skybot:hover {
  background-color: #e6f8ff;
}

.hero-redes {
  margin-top: 40px;
  text-align: center;
}

.hero-redes .redes-label {
  font-size: 15px;
  font-weight: bold;
  color: #00a8e4;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  
}

.iconos-redes {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.iconos-redes a {
  color: white;
  font-size: 26px;
  transition: color 0.3s ease;
}

.iconos-redes a:hover {
  color: #00a8e4;
}


/* === FIN SKYBOT REDISEÑO HOME === */

/* === PAGINAS QUE VIENEN PROXIMAMENTE === */

.coming-soon-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #ffffff, #f3faff);
  padding: 60px 20px;
  text-align: center;
}

.coming-content {
  max-width: 600px;
  margin: auto;
}

.coming-content h1 {
  font-size: 36px;
  color: #00a8e4;
  margin-bottom: 20px;
}

.coming-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.coming-content .btn-skybot {
  background-color: #00a8e4;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.coming-content .btn-skybot:hover {
  background-color: #008fc9;
}

/* === FIN DE PAGINAS QUE VIENEN PROXIMAMENTE === */
