body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
  }
  
  .banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 300px;
  }
  
  .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .content {
    max-width: 900px;
    margin: auto;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  /* Seção de Descripción */
  .description {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .description h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .description p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0.5rem auto;
    text-align: center;
  }
  
  /* Imagem separadora (entre Descripción e Ventajas) */
  .separator-image {
    margin-bottom: 2rem;
  }
  
  .separator-image img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Linha separadora */
  .separator {
    width: 80%;
    height: 1px;
    background-color: #ddd;
    margin: 2rem auto;
  }
  
  /* Seção de Ventajas */
  .product-details {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
  }
  
  .product-details h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .ventajas-content {
    text-align: center;
  }
  
  .ventajas-content ul {
    list-style: none;
    padding: 0;
    margin: auto;
    font-size: 1rem;
    line-height: 1.6;
    display: inline-block;
    text-align: left;
  }
  
  .ventajas-content ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .description p,
    .ventajas-content ul {
      font-size: 0.95rem;
    }
  }
  