body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #cabae9, #8ab1bf);
  }
/*BANNER
  /* Contenedor del banner */
  .banner-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: #e00909;
    padding: 20px 0;
  }

  /* Lista de productos (que será desplazada) */
  .product-strip {
    display: flex;
    width: calc(200px * 10); /* ajusta según cantidad */
    animation: move 5s linear infinite;
  }

  /* Cada producto */
  .product {
    flex: 0 0 350px; /* ancho de cada elemento */
    margin: 0 3px;
    background: none;
    border: none;
    border-radius: 8px;
    text-align: center;
    padding: 0px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .product img {
    width: 100%;
    height: 100%;
    border-radius: 2px;
  }

  /* Animación para mover los productos */
  @keyframes move {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /*CABECERA DONDE ESTA EL LOGO Y NOMBRE SOLING ECUADOR
  /* Contenedor principal de la cabecera */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #cabae9, #8ab1bf); /* Color suave y profesional */
    padding: 10px;
    position: relative;
    overflow: hidden;
  }
  
  /* Contenedor del logo */
  .logo-container {
    position: relative;
    width: 100px;
    height: 100px;
  }
  
  /* Imagen PNG sin fondo, ajustada al tamaño */
  .logo-container img {
    width: 200%;
    height: auto;
    display: block;
    animation: float 3s ease-in-out infinite;
  }
  
  /* Animación sutil para el logo */
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  /* Título de la empresa con efecto */
  .company-name {
    color: #f30d0d;
    font-family: 'Orbitron';
    font-size: 4em;
    font-weight: 500;
    margin-left: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: float 3s ease-in-out infinite;
  }
  
  /* Estilo para la barra decorativa o elementos adicionales si quieres */
  .decor {
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 3em;
    color: rgba(255,255,255,0.2);
    transform: rotate(20deg);
  }
  
  /* Añadir algunos efectos adicionales */
  @media (max-width: 768px) {
    .header {
      flex-direction: column;
      align-items: center;
      padding: 10px;
    }
  
    .company-name {
      font-size: 1.5em;
      margin: 10px 0;
      text-align: center;
    }
  }
/*BOTONES DE ARRIBA A LA DERECHA
  /* Contenedor del combobox */
  .combo-container {
    display: flex;
    gap: 5px; /* espacio entre opciones, en línea */
    flex-wrap: wrap; /* permitir varias líneas si se desea */
    justify-content: flex-end; /* Alineados a la derecha */
    background: linear-gradient(135deg, #cabae9, #8ab1bf);

  }

  /* Estilo de cada opción (botón) */
  .option {
    padding: 3px 20px;
    background-color: linear-gradient(135deg, #cabae9, #8ab1bf); /* colores suaves y profesionales */
    color: #141414;
    border-radius: 3px;
    cursor: pointer;
    justify-content: flex-end;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: bold;
  }

  /* Efecto al pasar el mouse */
  .option:hover {
    background-color: #4c06ee;
    transform: scale(1.05);
  }
  
  /*LISTA DESPLEGABLE CON ETIQUETA SELECT

   /* Contenedor de las listas */
   .listas {
    display: flex;
    gap: 30px; /* Espacio entre las listas */
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  /* Estilo general de los selects */
  select {
    padding: 5px 15px;
    font-size: 1em;
    border: 3px solid #555;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* Efecto atrayente al pasar el puntero */
  select:hover {
    border-color: #ff7f50;
    background-color: #ffe4e1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: scale(1.05);
  }
  
  /* TEXTO DE INDUSTRIAS
  /* Contenedor de todas las tarjetas */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
  }

  /* Estilo de cada tarjeta */
  .tarjeta {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-color: #ebeef3;
    transition: all 0.3s ease;
  }

  /* Efecto de hover en tarjeta */
  .tarjeta:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transform: translateY(-5px);
  }

  /* Títulos de las tarjetas */
  .titulo {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #ec1414;
  }

  /* Descripciones */
  .descripcion {
    font-size: 0.95em;
    color: #555;
  }

  /* Enlace "Más Información" */
  .mas-info {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
  }

  /* Efectos en el enlace al pasar mouse */
  .mas-info:hover {
    color: #0056b3;
    transform: translateX(3px);
  }

  /* Título INDUSTRIAS con efecto */
  .industrias-name {
    color: #3207a8;
    font-family: 'Orbitron';
    font-size: 3em;
    font-weight: 500;
    margin-left: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: float 3s ease-in-out infinite;
  }

  /*PARTE FINAL ABAJO PIE PAGINA */

   body {
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
  }

  footer {
    background-color: #000;
    padding: 40px 20px;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }

  /* Columnas de enlaces */
  .column {
    min-width: 150px;
  }

  h4 {
    margin-bottom: 10px;
    font-weight: bold;
  }

  a {
    display: block;
    color: #00f; /* azul para los enlaces */
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s, transform 0.3s;
  }

  a:hover {
    color: #0af;
    transform: translateX(5px);
  }
 /* Contenedor del logo final */
 .logo-container1 {
  position: relative;
  width: 100px;
  height: 100px;
}
/* Imagen PNG sin fondo, ajustada al tamaño */
  .logo-container1 img {
  width: 200%;
  height: auto;
  display: block;
}
    
  /*LINEAS
   /* Línea interactiva inferior */
   .linea-inferior {
    height: 4px;
    background-color: #ccc;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }
  /* Línea con efecto en hover */
  .linea-superior:hover,
  .linea-inferior:hover {
    background-color: #ff7f50;
    transform: scale(1.05);
  }
   /* Línea interactiva superior */
   .linea-superior {
    height: 4px;
    background-color: #ccc;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }
   
    /* CONTENEDOR DE TARJETAS PAGINA INDUSTRIAS */
    /* Contenedor de tarjetas */
    .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 20px;
      padding: 20px;
    }

  /* Estilo de cada tarjeta */
  .card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 2fr; /* Imagen y texto */
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  /* Efecto interactivo al pasar el cursor */
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }

  /* Estilo de la imagen */
  .card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }

  /* Estilo del texto */
  .card .content {
    margin-left: 15px;
  }

  .card h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #5b0992;
  }

  .card p {
    margin: 0;
    color: #555;
    font-size: 15px;
  }
  /* Enlace "Más Información" */
  .mas-infoindustrias {
    display: inline-block;
    margin-top: 3px;
    font-weight: bold;
    font-size: 12px;
    color: #e6426b;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
  }

  /* Efectos en el enlace al pasar mouse */
  .mas-infoindustrias:hover {
    color: #0056b3;
    transform: translateX(2px);
  }

  /*DISEÑO DE BOTON*/


  /* Contenedor de botones */
  .buttons-container {
    display: flex;
    gap: 20px; /* espacio entre botones */
    justify-content: center;
  }

  /* Estilo de cada botón */
.btn {
  padding: 8px 25px;
  font-size: 1.1em;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none; /* quitar subrayado si usas <a> */
  display: inline-block;
}

/* Hover y efecto al hacer clic */
.btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

