    body {
      background-color: white;
      color: black;
      margin: 0;
      font-family: Arial, sans-serif;
      text-align: center;
    }

header {
  background-color: #111;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}


header h1 {
  font-size: 1.8em;
  color: #ff4d00; 
  margin: 0;
  flex: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

nav li a:hover {
  color: #ff0000; 
}
    .nosotros {
      background-color: rgb(179, 0, 0);
      text-align: center;
      padding: 40px 20px;
      color: white;
    }

    .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      padding-top: 20px;
      flex-wrap: wrap;
    }

    .xen {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      object-fit: cover;
    }

    .servicios-section {
      background-color: #f4f4f4;
      padding: 50px 20px;
      text-align: center;
    }

    .servicios-section h2 {
      margin-bottom: 30px;
    }

    .contenedor-servicios {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }
.producto-lista{
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 20px;
    padding: 5px;
}
    .servicio {
      width: 250px;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 15px;
    }

    .servicio-img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 10px;
    }

footer {
  background-color: #111;
  color: #f4f4f4;
  text-align: center;
  padding: 20px;
}

.container-info {
  display: flex;
  justify-content: center;
  gap: 40px; 
  flex-wrap: wrap; 
  margin-bottom: 10px;
}
.divider{
      width: 2px;
  height: 40px;
  background-color: #f4f4f4;
  margin: 0 10px;
 justify-content: space-between;

}
.card-info {
  text-align: center;
}

  table {
    margin: 0 auto;
    width: 80%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  thead {
    background-color: #4CAF50;
    color: white;
  }

  th, td {
    padding: 12px;
    text-align: center; /* Centra el texto dentro de las celdas */
    border: 1px solid #ddd;
  }

  tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  tbody tr:hover {
    background-color: #f1f1f1;
  }
