.limpiezas-page {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.limpiezas-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.page-title {
    text-align: center;
    color: #ecf0f1;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(236, 240, 241, 0.5);
}

.limpiezas-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.sage-animation {
    width: 300px;
    height: 400px;
    margin: 0 auto;
    background: url('../src/img/limpiezaDeCasasyPersonas.jpg') no-repeat center center;
    background-size: cover;
    /* Hace que la imagen cubra todo el área del recuadro */
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 15px;
    transition: transform 0.3s ease;
    /* Suaviza la transición del zoom */
}

.sage-animation:hover {
    transform: scale(1.05);
    /* Aplica un pequeño zoom (5%) al pasar el mouse */
}

.limpiezas-description {
    background: rgba(236, 240, 241, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(236, 240, 241, 0.3);
    backdrop-filter: blur(10px);
}

.limpiezas-description p {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .limpiezas-container {
        grid-template-columns: 1fr;
    }
}