.elementor-48 .elementor-element.elementor-element-bacea87{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-48 .elementor-element.elementor-element-bacea87.elementor-element{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-bacea87 */.elementor-48 .elementor-element.elementor-element-bacea87 {
    position: relative;
    display: block !important;
    width: 30% !important;
    margin: 0 auto !important;
    padding: 0 0 0 0 !important;
    text-align: center !important;
    
    /* Fonte Urbanist ExtraBold */
    font-family: 'Urbanist', sans-serif !important;
    font-weight: 800 !important;  /* ExtraBold */
    font-style: normal !important;
}

/* Linha inferior */
.elementor-48 .elementor-element.elementor-element-bacea87::before {
    content: "";
    position: absolute;
    left: 80px;
    right: 80px;
    bottom: 0;
    height: 1px;
    background: #333;
}

/* Três traços diagonais */
.elementor-48 .elementor-element.elementor-element-bacea87::after {
    content: "";
    position: absolute;
    right: 70px;
    bottom: -10px;
    width: 40px;
    height: 50px;

    background:
        linear-gradient(
            125deg,
            transparent 0 42%,
            #333 43% 45%,
            transparent 46%
        ),
        linear-gradient(
            125deg,
            transparent 0 56%,
            #333 57% 59%,
            transparent 60%
        ),
        linear-gradient(
            125deg,
            transparent 0 70%,
            #333 71% 73%,
            transparent 74%
        );

    background-repeat: no-repeat;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c344a41 *//* =========================================================
   ESPECIFICAÇÕES DO PRODUTO
   ========================================================= */

.especificacoes-produto {
    width: calc(100% - 100px);
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* =========================================================
   TÍTULO
   ========================================================= */

.esp-titulo {
    position: relative;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
}

.esp-titulo > span {
    position: absolute;
    left: -12px;
    top: 0;
    width: 5px;
    height: 40px;
    background: #B51A16;
    border-radius: 2px;
}

.esp-titulo h2 {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #171717;
}

/* =========================================================
   CONTAINER DA LISTA (UM EMBAIXO DO OUTRO)
   ========================================================= */

.esp-lista {
    display: flex;
    flex-direction: column; /* Coloca os cards em coluna */
    gap: 16px; /* Espaçamento entre cada card */
    margin-top: 15px;
    box-sizing: border-box;
}

/* =========================================================
   CARD
   ========================================================= */

.esp-card {
    position: relative;
    width: 100%; /* Ocupa a largura total do container */
    max-width: 800px; /* Limita a largura máxima para não ficar excessivamente largo */
    min-height: 90px; /* Mínimo de altura mantido, mas livre para expandir */
    height: auto; /* Permite expansão com o texto */

    display: flex;
    align-items: center;

    padding: 16px 20px 16px 15px; /* Adicionado padding interno */

    background: #FFFFFF;
    border: 1px solid #B51A16;
    border-radius: 12px;
    box-sizing: border-box;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.20);
    overflow: hidden;

    /* EFEITO DE TRANSIÇÃO PARA O ZOOM */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* EFEITO DE ZOOM AO PASSAR O MOUSE */
.esp-card:hover {
    transform: scale(1.02); /* Ajustado levemente para cards maiores */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.30);
    z-index: 10;
}

/* =========================================================
   ÍCONE
   ========================================================= */

.esp-icone {
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex: 0 0 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #B51A16;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: hidden;

    /* EFEITO DE TRANSIÇÃO PARA O ÍCONE */
    transition: background 0.3s ease;
}

.esp-card:hover .esp-icone {
    background: #8f1512;
}

.esp-icone img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.esp-card:hover .esp-icone img {
    transform: scale(1.1);
}

/* =========================================================
   CONTEÚDO E TEXTO
   ========================================================= */

.esp-conteudo {
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.esp-conteudo strong {
    display: block;
    margin: 0 0 6px 0;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    color: #151515;
}

.esp-conteudo p {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #555555;
}

/* =========================================================
   TABLET E MOBILE
   ========================================================= */

@media (max-width: 1100px) {
    .especificacoes-produto {
        width: calc(100% - 60px);
        margin-left: 30px;
        margin-right: 30px;
    }

    .esp-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .especificacoes-produto {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }

    .esp-titulo h2 {
        font-size: 16px;
    }

    .esp-card {
        padding: 12px;
    }

    .esp-icone {
        width: 48px;
        height: 48px;
        min-width: 48px;
        flex-basis: 48px;
    }

    .esp-conteudo strong {
        font-size: 14px;
    }

    .esp-conteudo p {
        font-size: 12px;
        line-height: 16px;
    }

    .esp-card:hover {
        transform: none;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.20);
    }

    .esp-card:hover .esp-icone {
        background: #B51A16;
    }

    .esp-card:hover .esp-icone img {
        transform: none;
    }
}/* End custom CSS */