/* ==================================
   CARDS DE PRODUTOS - PADRONIZADOS
   ================================== */

/* Background da seção de produtos */
#produtos.elementor-element-08946da {
    background-image: url('wp-content/uploads/2019/12/soularomaterapia-background-flores.jpg') !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 3% 0% 3% 0% !important;
}

/* Container dos produtos */
.elementor-posts-container.elementor-posts--skin-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 20px 0;
}

/* Card individual */
.elementor-post.elementor-grid-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.elementor-post.elementor-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(101, 45, 146, 0.3);
}

.elementor-post__card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Container da imagem - tamanho fixo */
.elementor-post__thumbnail__link {
    display: block;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f5f5f5;
}

.elementor-post__thumbnail {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.elementor-post__thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease;
}

.elementor-post.elementor-grid-item:hover .elementor-post__thumbnail img {
    transform: scale(1.05);
}

/* Área de texto */
.elementor-post__text {
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
    background: white;
    flex-grow: 1;
}

/* Título */
.elementor-post__title {
    margin: 0 0 15px 0 !important;
    font-family: "Raleway", Sans-serif !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
    color: #652D92 !important;
    min-height: 50px;
}

.elementor-post__title a {
    color: #652D92 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.elementor-post__title a:hover {
    color: #7a3ba8 !important;
}

/* Botão Saiba Mais */
.elementor-post__read-more {
    display: inline-block !important;
    margin-top: auto;
    padding: 10px 20px !important;
    background: #652D92 !important;
    color: white !important;
    font-family: "Raleway", Sans-serif !important;
    text-decoration: none !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    align-self: flex-start;
}

.elementor-post__read-more:hover {
    background: #7a3ba8 !important;
    transform: translateX(5px);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .elementor-posts-container.elementor-posts--skin-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .elementor-post__thumbnail__link {
        height: 250px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .elementor-posts-container.elementor-posts--skin-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .elementor-post__thumbnail__link {
        height: 280px;
    }
    
    .elementor-post__title {
        font-size: 16px !important;
        min-height: auto;
    }
}
