/* =========================================
   Piscinas y Jacuzzis — Preview Frontpage
   ========================================= */

.hp-pools-preview {
    background: #e0e0e0;
    padding: 80px 5%;
    text-align: center;
}

.pools-preview-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pool-type-preview {
    margin-top: 80px;
}

.pool-type-preview + .pool-type-preview {
    margin-top: 0;
    padding-top: 120px;
    border-top: none;
}

.hp-pools-preview .farm-image-container {
    margin-top: 60px;
    margin-bottom: 60px;
}

.pools-preview-lead {
    max-width: 700px;
    margin: 0 auto 50px;
}

.pools-preview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.pool-feature {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.btn-pools-link {
    display: inline-block;
    padding: 18px 60px;
    margin-top: 40px;
    background-color: #c4abb4;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Muli', sans-serif;
}

.btn-pools-link:hover {
    background-color: #8a7a81;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 160, 167, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hp-pools-preview {
        padding: 50px 5%;
    }

    .pool-type-preview {
        margin-top: 60px;
    }

    .pool-type-preview + .pool-type-preview {
        padding-top: 60px;
    }

    .hp-pools-preview .farm-image-container {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .pools-preview-lead {
        margin-bottom: 30px;
    }

    .pools-preview-features {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 0;
    }
}
