body {
    background-color: #f7f5f2;
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.main-title {
    font-size: 3.5rem;
    color: #4b0082;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.product-section {
    margin-top: 60px;
    text-align: left;
}

.product-section h2 {
    font-size: 2.5rem;
    color: #5d3fd3;
    border-bottom: 2px solid #5d3fd3;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 30px;
    font-style: italic;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.product-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 15px 0 5px 0;
    padding: 0 10px;
}

.product-card p {
    font-size: 1rem;
    color: #666;
    margin: 0 10px 15px 10px;
}

.btn-buy {
    display: inline-block;
    background-color: #5d3fd3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-buy:hover {
    background-color: #4b0082;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    .intro-text, .section-description {
        font-size: 1rem;
    }
    .product-section h2 {
        font-size: 2rem;
    }
    .products-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Estilos para el enlace de volver */
.back-link-container {
    width: 100%;
    text-align: left; /* O 'center' si lo quieres centrado */
    padding: 20px 0 0 20px;
}

.back-link {
    color: #5d3fd3; /* Color que combina con los títulos */
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #4b0082;
}