:root {
    --lp-bg: #ffffff;
    --lp-surface: #ffffff;
    --lp-surface-2: #f2ede5;
    --lp-surface-3: #424953;
    --lp-text: #424953;
    --lp-text-soft: #8f6a3b;
    --lp-text-invert: #ffffff;    
    --lp-line: rgba(27, 26, 24, 0.12);
    --lp-gold: #b68c53;
    --lp-gold-dark: #8f6a3b;
    --lp-grey: #8D9BA4;
    --lp-dark-grey: #424953;
    --lp-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    --lp-radius-lg: 20px;
    --lp-radius-md: 12px;
    --lp-radius-sm: 4px;
    --lp-radius-null: 0px;    
    --lp-container: 1920px;
    --lp-section-padding: 120px;
    --lp-section-padding-md: 60px;
    --lp-section-padding-sm: 30px;
    --lp-section-padding-null: 0px;    
    --lp-lead-font: "Barlow", sans-serif;
    --lp-title-font: "Playfair Display", serif;
}

.lp-ret-wrapper, .lp-ret-wrapper * { box-sizing: border-box; }

.lp-ret-wrapper .lp-landing__section {
    padding: var(--lp-section-padding) 0;
    position: relative;
}

.lp-ret-wrapper .lp-landing__container {
    width: min(100% - 0px, var(--lp-container));
    margin: 0 auto;
}

.lp-ret-wrapper .lp-landing__section-grid {
    display: grid;
    gap: 30px;
}

.lp-ret-wrapper .lp-landing__heading-group {
    display: grid;
    gap: 14px;
}

.lp-ret-wrapper .lp-landing__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lp-text);
    font-family: var(--lp-lead-font);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.lp-ret-wrapper .lp-landing__section-title {
    font-family: var(--lp-title-font);
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
    line-height: 2.6rem;
    color: var(--lp-text) !important;
    margin: 0;
}

.lp-ret-wrapper .lp-landing__lead {
    font-family: var(--lp-lead-font);
    color: var(--lp-text);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 2rem;
    margin: 0;
}

.lp-ret-wrapper .lp-retorno-tables {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.8fr);
    gap: 24px;
    align-items: start;
}

.lp-ret-wrapper .lp-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-sm);
    box-shadow: var(--lp-shadow);
}

.lp-ret-wrapper .lp-table-card { border-radius: var(--lp-radius-sm); overflow: hidden; }
.lp-ret-wrapper .lp-table-card__scroll { overflow-x: auto; }

.lp-ret-wrapper .lp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 460px;
    table-layout: auto;
    white-space: nowrap;
}

.lp-ret-wrapper .lp-table th,
.lp-ret-wrapper .lp-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--lp-line);
    text-align: left;
    vertical-align: middle;
    font-family: var(--lp-lead-font);
    line-height: 1.8em;
    overflow-wrap: normal;
    word-break: normal;
}

.lp-ret-wrapper .lp-table th {
    font-size: 14px;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--lp-text-invert);
    background: var(--lp-surface-3);
    height: 84px;
}

.lp-ret-wrapper .lp-table tr:last-child td { border-bottom: 0; }
.lp-ret-wrapper .lp-table th:first-child,
.lp-ret-wrapper .lp-table td:first-child { padding-left: 28px; }
.lp-ret-wrapper .lp-table th:last-child,
.lp-ret-wrapper .lp-table td:last-child  { padding-right: 28px; }

.lp-ret-wrapper .lp-form-note {
    font-family: var(--lp-lead-font);
    font-size: 13px;
    line-height: 1.8em;
    color: var(--lp-text);
    margin: 0;
}

.lp-ret-wrapper .lp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}
.lp-ret-wrapper .lp-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .lp-ret-wrapper .lp-retorno-tables { grid-template-columns: 1fr; }
}
@media (max-width: 798px) {
    .lp-ret-wrapper .lp-landing__section-title { font-size: 1.6rem !important; line-height: 2.4rem; }
}
@media (max-width: 767px) {
    .lp-ret-wrapper .lp-landing__section { padding: 64px 0; }
}