/* ======================================================
      CSS PARA ABA DE INFORMAÇÕES ADICIONAIS
====================================================== */

.info-extra-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e3e3e3;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

/* Ícones em cinza */
.info-item i {
    width: 20px;
    height: 20px;
    color: #6b7280 !important;
}

/* Label em cinza */
.info-item strong {
    color: #6b7280;
    font-weight: 600;
}

/* Valor em laranja + sombra igual ao topo */
.info-item span {
    max-width: calc(100% - 40px);
    display: block;
    font-weight: 700;
    color: #E94E1B;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.20);
}

/* Título */
#tab-descricao .secao-titulo {
    margin-bottom: 18px !important;
    color: #09A9A2;
}

/* Texto da descrição */
.descricao-produto {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}
/* Força todos SVGs dentro de .info-item a ficarem cinza */
.info-item svg {
    stroke: #6b7280 !important; /* cinza */
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.secao-titulo {
    position: relative;
}

.secao-titulo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 50px;
    height: 3px;
    background: #09A9A2;
    border-radius: 3px;
    opacity: 0.6;
}
