.elementor-widget-section .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-section .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for html, class: .elementor-element-5c12e72 *//* CARD - altura uniforme */
.prod-card {
    background: #fff;
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Título — limitar em 2 linhas */
.prod-title {
    font-size: 21px;
    font-weight: bold;
    margin: 10px 0;
    font-family: 'Arial', sans-serif;

    /* Correção principal */
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* máximo de 2 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;      /* adiciona ... */
    min-height: 55px;             /* mesma altura para todos */
}

/* imagem sempre no topo */
.prod-card a img {
    width: 100%;
    height: 220px;
    object-fit: contain; /* impede distorção */
}/* End custom CSS */