/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.kama-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.kama-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.kama-item:hover {
    transform: translateY(-6px);
}

.kama-item img {
    width: 100% !important;
    height: auto !important;
    transition: transform 0.3s ease;
}

.kama-item:hover img {
    transform: scale(1.03);
}

.kama-item h3 {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 500;
}

.kama-pagination {
    text-align: center;
    margin: 60px 0;
}

.kama-pagination a,
.kama-pagination span {
    display: inline-block;
    margin: 0 6px;
    padding: 10px 18px;
    background: #f5f5f5;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
}

.kama-pagination .current {
    background: #ff6fa5;
    color: #fff;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .kama-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .kama-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

/* ===== BUSCA KAMASUTRA ===== */

.kama-search-form {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.kama-search-input {
    flex: 1;
    padding: 0 20px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-right: none;
    outline: none;
    height: 56px !important;
}


.kama-search-btn {
    background: #ff88be !important;
    color: #fff !important;
    border: none !important;
    padding: 0 28px !important;
    font-weight: 600 !important;
    cursor: pointer;
    height: 56px !important;
    line-height: 56px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.kama-search-btn:hover {
    background: #e676a8 !important;
}

.kama-search-btn:hover {
    opacity: 0.85;
}