.navegation {
    text-align: left;
    padding: 10px 15px;
    margin: 0 0 15px 0; 
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: fit-content; 
    transition: all 0.3s ease;
    margin-right: auto; 
  }
  
  .navegation a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .navegation a:hover {
    color: #2d6a4f;
  }
  
  .navegation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2d6a4f;
    transition: width 0.3s ease;
  }
  
  .navegation a:hover::after {
    width: 100%;
  }
  
  .navegation > a:not(:last-child)::after {
    content: '';
    margin: 0 5px;
  }
  
  .navegation:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
.header-image {
    width: 80%;
    max-width: 1000px;
    border-radius: 15px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-content {
    display: flex;
    gap: 30px;
    align-items: flex-start; 
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.side-image {
    width: 230px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
}

.header-image:hover,
.side-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .header-image {
        width: 95%;
    }
    .product-content {
        flex-direction: column;
        align-items: center;
    }
    .side-image {
        width: 90%;
    }
}