/* ============================================================
   Página: Eucalipto Serrado — Armazém do Eucalipto
   Complemento ao eucalipto-tratado.css (classes base compartilhadas)
   ============================================================ */

/* ==========================================================
   TABELA DE MEDIDAS
   ========================================================== */
.measures-table-wrap {
    margin: 1.25rem 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(175, 134, 86, 0.25);
}

.measures-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.measures-table thead tr {
    background: #201101;
}

.measures-table thead th {
    color: #E9E4D0;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.85rem 1.25rem;
    text-align: left;
}

.measures-table tbody tr {
    border-bottom: 1px solid rgba(175, 134, 86, 0.18);
    transition: background 0.2s ease;
}

.measures-table tbody tr:last-child {
    border-bottom: none;
}

.measures-table tbody tr:nth-child(even) {
    background: rgba(205, 156, 61, 0.05);
}

.measures-table tbody tr:hover {
    background: rgba(205, 156, 61, 0.1);
}

.measures-table tbody td {
    padding: 0.9rem 1.25rem;
    color: #4a3728;
    line-height: 1.5;
}

.measures-table tbody td:first-child {
    font-weight: 700;
    color: #201101;
    border-right: 1px solid rgba(175, 134, 86, 0.18);
    width: 50%;
}

@media (max-width: 480px) {
    .measures-table thead th,
    .measures-table tbody td {
        padding: 0.75rem 1rem;
        font-size: 0.92rem;
    }
}
