.wrap_section_produto_detalhe {
    padding: 20px 0 60px 0;
    background: #fff;
}

.produto-detalhe-imagem-wrapper {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.img-produto-detalhe {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.produto-detalhe-info {
    padding: 0 15px;
}

.produto-detalhe-info-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-top: 0;
    margin-bottom: 15px;
}

.produto-detalhe-categoria {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.produto-detalhe-categoria strong {
    font-weight: 700;
}

.produto-detalhe-categoria span {
    color: #ed1c24;
}

.produto-detalhe-subtitulo {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.5;
}

/* Tabs */
.produto-detalhe-tab-container {
    margin-top: 50px;
    margin-bottom: 40px;
}

.produto-detalhe-tab {
    background-color: #ed1c24;
    color: #fff;
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
    top: 1px;
    border-bottom: 1px solid #ed1c24;
    z-index: 2;
}

.produto-detalhe-descricao-box {
    border: 1px solid #eaeaea;
    background-color: #fdfdfd;
    padding: 30px 40px;
    border-radius: 0 8px 8px 8px;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.produto-detalhe-descricao-box ul {
    padding-left: 20px;
    margin-bottom: 0;
    list-style-type: disc;
}

.produto-detalhe-descricao-box ul li {
    margin-bottom: 10px;
}

/* Relacionadas */
.titulo-paginas-relacionadas {
    text-align: center;
    color: #ed1c24;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 20px;
}

.flex-relacionados {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.card-relacionado {
    width: 260px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.card-rel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 1px solid #ed1c24;
    color: #ed1c24;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
    z-index: 2;
}

.card-rel-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card-rel-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-rel-title {
    background: #f8f8f8;
    padding: 20px 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-rel-title a {
    color: #444;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.card-rel-footer {
    background: #ed1c24;
    display: flex;
    justify-content: space-between;
    padding: 12px 30px;
}

.icon-link {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s;
}

.icon-link:hover {
    color: #ffd0d0;
}

@media (max-width: 767px) {
    .produto-detalhe-info-title {
        font-size: 22px;
        margin-top: 20px;
    }
}
