/* ===========================================
   BLOCO: TÍTULO DO PRODUTO
=========================================== */
.titulo-produto {
    font-size: 28px;
    font-weight: 700;
    color: var(--fru-verde);
    margin-bottom: 20px;
    text-align: center;
}


/* ===========================================
   BLOCO: FOTO DO PRODUTO
=========================================== */
.produto-imagem-container {
    width: 260px;
    overflow: hidden;
    background-color: transparent !important;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin: 0 auto;
}

.produto-imagem {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    transition: .3s ease;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.18));
}

.produto-imagem:hover {
    transform: scale(1.03);
}


/* ===========================================
   BLOCO: CÓDIGO DE RASTREIO
=========================================== */
.codigo-rastreio {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-shadow: 0 2px 3px rgba(0,0,0,0.20); /* sombra mais visível */
}

.codigo-rastreio strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--tag-laranja);
    text-shadow: 0 2px 3px rgba(0,0,0,0.20); /* sombra mais visível */
}


/* ===========================================
   BLOCO: INFORMAÇÕES (Produto / Embalagem)
=========================================== */

/* Ícones */
.produto-icone,
.embalagem-icone {
    width: 22px;
    height: 22px;
    color: var(--texto);
    opacity: .85;
}

/* Labels */
.produto-label,
.produto-embalagem-label {
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Nome do produto */
.produto-nome {
    font-size: 38px;
    font-weight: 800;
    color: var(--tag-laranja);
    letter-spacing: 1px;
    line-height: 1.1;
    text-align: center;
    width: 100%;
    text-shadow: 0 3px 4px rgba(0,0,0,0.18);
    margin-bottom: 45px;
}

/* Embalagem */
.produto-embalagem {
    font-size: 16px;
    font-weight: 700;
    color: var(--tag-laranja);
}

/* Labels pequenos */
.info-label,
.header-texto-minor {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #6b7280;
    text-transform: uppercase;
}

/* Organização dos blocos */
.produto-nome-bloco,
.produto-embalagem-bloco {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsividade */
@media (max-width: 600px) {

    .produto-imagem-container {
        width: 200px;
    }

    .produto-nome {
        font-size: 28px;
    }

    .produto-embalagem {
        font-size: 18px;
    }

    .produto-header-info {
        margin-left: 0;
        text-align: center;
    }

    .produto-nome-bloco,
    .produto-embalagem-bloco {
        justify-content: center;
    }
}
.origem-banner {
    width: 180px; /* ajuste como quiser */
    margin-bottom: 12px;
}

.origem-banner img {
    width: 100%;
    height: auto;
}
.col-md-5.text-center * {
    background: transparent !important;
    box-shadow: none !important;
}
/* ================================
   SELO DE PRODUTO RASTREADO
================================ */

.selo-rastreado-container {
    width: 100%;
    text-align: center;
    margin-top: 15px;      /* distância pequena do cabeçalho */
    margin-bottom: -10px;  /* aproxima das informações */
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.20));
}

.selo-rastreado {
    width: 180px;      /* tamanho ideal */
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* RESPONSIVO — diminuir no celular */
@media (max-width: 600px) {
    .selo-rastreado {
        width: 150px;
    }
}
/* BLOCO PADRÃO (Embalagem e Data) */
.produto-info-bloco {
    margin-bottom: 10px; /* distância entre os blocos */
}

/* LABEL (Embalagem / Data de Fabricação / etc) */
.produto-info-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 2px 3px rgba(0,0,0,0.20); /* sombra mais visível */
}

/* VALOR (1 un / 27/11/2025 / etc) */
.produto-info-valor {
    font-size: 20px;
    font-weight: 700;
    color: var(--tag-laranja);
    margin-left: 30px; /* INDENTAÇÃO IGUAL PARA AMBOS */
    line-height: 1.2;
    text-shadow: 0 2px 3px rgba(0,0,0,0.20); /* sombra mais visível */
}
.produto-embalagem-label,
.produto-data-label {
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
/* Ícone grande alinhado às duas linhas */
.produto-info-bloco i {
    font-size: 40px;        /* deixa o ícone mais alto */
    min-width: 28px;        /* evita desalinhamento */
    color: #6b7280;
    display: flex;
    align-items: center;    /* centraliza verticalmente */
    margin-top: 4px;        /* pequeno ajuste fino */
    text-shadow: 0 2px 3px rgba(0,0,0,0.20); /* sombra mais visível */
}


/* Ícone */
.rastreio-bloco i {
    font-size: 22px;
    color: #6b7280;
    margin-right: 6px;        /* espaço do texto */
    position: relative;
    top: 2px;                  /* alinha verticalmente */
}

/* texto “CÓDIGO DE RASTREIO” */
.rastreio-bloco .produto-info-label {
    justify-content: center;  /* garante ícone + texto centralizados */
    display: flex;
    align-items: center;
}

/* --- CORRIGE ALINHAMENTO NO CELULAR --- */
@media (max-width: 600px) {
    .produto-info-valor {
        margin-left: 0 !important;  /* remove deslocamento */
        margin-top: 4px;            /* dá um espaço elegante */
        display: block;             /* força ficar abaixo */
        text-align: left;           /* mantém alinhado ao texto */
    }

    .produto-info-bloco {
        margin-bottom: 20px;        /* aumenta o respiro no mobile */
    }
}
/* Corrige alinhamento do Código de Rastreio no mobile */
@media (max-width: 600px) {

    .codigo-rastreio-bloco {
        display: flex;
        flex-direction: column;    /* ícone em cima + texto abaixo */
        align-items: center;       /* centraliza tudo */
        justify-content: center;
        text-align: center;
        margin-top: 10px;
    }

    .codigo-rastreio-bloco i {
        margin-right: 0 !important; /* remove espaçamento lateral */
        margin-bottom: 4px;          /* espaço entre ícone e texto */
    }

    .codigo-rastreio-label {
        display: block;
        text-align: center;
        width: 100%;
    }

    .info-important {
        display: block;
        text-align: center !important;
        margin-left: 0 !important;  /* remove deslocamento */
        margin-top: 5px;
    }
}
/* ================================
   BLOCO DO CÓDIGO DE RASTREIO
================================ */
.rastreio-bloco {
    text-align: center;
    margin-top: 25px;
}

/* label + ícone */
.rastreio-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #6b7280;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

/* ícone */
.rastreio-label i {
    font-size: 22px;
    color: #6b7280;
    position: relative;
    top: 2px; /* ajuste fino */
}

/* número do rastreio */
.rastreio-valor {
    font-size: 22px;
    font-weight: 700;
    color: var(--tag-laranja);
    margin-top: 6px;
    text-shadow: 0 2px 3px rgba(0,0,0,0.20);
}

/* ================================
   MOBILE — ALINHAR PERFEITO
================================ */
@media (max-width: 600px) {
    .rastreio-bloco {
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .rastreio-label {
        justify-content: center;
        margin-left: 0;
    }

    .rastreio-valor {
        text-align: center;
        margin-left: 0 !important;
    }
}
