:root {
    --coral: #ff766f;
    --coral-dark: #e85653;
    --coral-soft: #ffd9d2;
    --ink: #17324d;
    --ink-soft: #40566b;
    --cream: #fff9ef;
    --paper: #fffdf8;
    --white: #ffffff;
    --mint: #c8eadf;
    --teal: #237b75;
    --sky: #cfe9f5;
    --yellow: #f8df83;
    --line: rgba(23, 50, 77, 0.13);
    --shadow: 0 24px 70px rgba(23, 50, 77, 0.13);
    --shadow-soft: 0 15px 45px rgba(23, 50, 77, 0.09);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body.route-page {
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 0;
}

.route-page img {
    display: block;
    max-width: 100%;
}

.route-page a {
    color: inherit;
}

.route-page button,
.route-page input,
.route-page select {
    font: inherit;
}

.route-page button,
.route-page a {
    -webkit-tap-highlight-color: transparent;
}

.route-page :focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 4px;
}

.route-page .skip-link {
    background: var(--ink);
    border-radius: 0 0 10px 10px;
    color: var(--white);
    left: 1rem;
    padding: 0.75rem 1rem;
    position: fixed;
    top: -100px;
    transition: top 0.2s ease;
    z-index: 10000;
}

.route-page .skip-link:focus {
    top: 0;
}

.route-page .container {
    margin: 0 auto;
    max-width: var(--container);
    padding-left: 28px;
    padding-right: 28px;
    width: 100%;
}

.route-page h1,
.route-page h2 {
    font-family: "Fraunces", serif;
    letter-spacing: -0.045em;
}

.route-page .site-header {
    backdrop-filter: blur(18px);
    background: rgba(255, 253, 248, 0.92);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(23, 50, 77, 0.04);
    left: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.route-page .header-inner {
    align-items: center;
    display: flex;
    height: 82px;
    justify-content: space-between;
    padding-bottom: 0;
    padding-top: 0;
}

.route-page .brand {
    align-items: center;
    color: var(--ink);
    display: inline-flex;
    font-weight: 800;
    gap: 11px;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.route-page .brand img {
    border-radius: 13px;
    height: 44px;
    margin: 0;
    width: 44px;
}

.route-page .desktop-nav {
    align-items: center;
    display: flex;
    gap: 34px;
}

.route-page .desktop-nav a {
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.route-page .desktop-nav a[aria-current="page"],
.route-page .desktop-nav a:hover {
    color: var(--coral-dark);
}

.route-page .button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.route-page .button:hover {
    transform: translateY(-2px);
}

.route-page .button-small {
    min-height: 44px;
    padding: 0 19px;
}

.route-page .button-dark {
    background: var(--ink);
    color: var(--white);
}

.route-page .button-dark:hover {
    box-shadow: 0 10px 24px rgba(23, 50, 77, 0.2);
}

.route-page .button-primary {
    background: var(--coral);
    box-shadow: 0 15px 30px rgba(232, 86, 83, 0.2);
    color: var(--white);
}

.route-page .button-primary:hover {
    background: var(--coral-dark);
}

.route-page .eyebrow {
    align-items: center;
    color: var(--teal);
    display: flex;
    font-size: 0.72rem;
    font-weight: 800;
    gap: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.route-page .eyebrow > span {
    background: var(--coral);
    border-radius: 999px;
    height: 8px;
    width: 8px;
}

.route-page .route-back {
    align-items: center;
    color: var(--ink-soft);
    display: inline-flex;
    font-size: 0.85rem;
    font-weight: 800;
    gap: 9px;
    text-decoration: none;
}

.route-page .route-back:hover {
    color: var(--coral-dark);
}

.route-page .site-footer {
    background: var(--ink);
    color: var(--white);
    padding: 66px 0 24px;
}

.route-page .footer-grid {
    display: grid;
    gap: 70px;
    grid-template-columns: 0.85fr 1.15fr;
    padding-bottom: 52px;
}

.route-page .brand-footer {
    color: var(--white);
}

.route-page .footer-brand p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
    margin: 16px 0 0;
    max-width: 310px;
}

.route-page .footer-links {
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(3, 1fr);
}

.route-page .footer-links div {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.route-page .footer-links strong {
    font-size: 0.78rem;
    margin-bottom: 7px;
}

.route-page .footer-links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
    text-decoration: none;
}

.route-page .footer-links a:hover {
    color: var(--yellow);
}

.route-page .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.48);
    display: flex;
    font-size: 0.72rem;
    justify-content: space-between;
    padding-top: 23px;
}

.route-page .footer-bottom p {
    margin: 0;
}

/* Catálogo */
.route-promotions .page-header {
    background:
        radial-gradient(circle at 88% 25%, rgba(200, 234, 223, 0.75), transparent 24%),
        radial-gradient(circle at 10% 5%, rgba(248, 223, 131, 0.48), transparent 25%),
        var(--cream);
    color: var(--ink);
    margin: 0;
    overflow: hidden;
    padding: 152px 0 76px;
    position: relative;
    text-align: left;
}

.route-promotions .catalog-hero-grid {
    align-items: end;
    display: grid;
    gap: 72px;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.route-promotions .page-header h1 {
    color: var(--ink);
    font-size: clamp(3.5rem, 7vw, 6.4rem);
    font-weight: 600;
    line-height: 0.95;
    margin: 22px 0 24px;
    max-width: 800px;
    text-shadow: none;
}

.route-promotions .page-header h1 em {
    color: var(--coral-dark);
    font-style: normal;
}

.route-promotions .page-header .hero-description {
    color: var(--ink-soft);
    font-size: 1.04rem;
    margin: 0;
    max-width: 650px;
}

.route-promotions .catalog-summary {
    background: var(--ink);
    border-radius: var(--radius-lg);
    color: var(--white);
    overflow: hidden;
    padding: 30px;
    position: relative;
}

.route-promotions .catalog-summary::after {
    background: var(--coral);
    border-radius: 50%;
    content: "";
    height: 110px;
    position: absolute;
    right: -42px;
    top: -38px;
    width: 110px;
}

.route-promotions .catalog-summary > p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.route-promotions .stats {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.route-promotions .stats-info {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.route-promotions .stat-item {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 0;
    padding: 18px;
}

.route-promotions .stat-item i {
    color: var(--yellow);
    font-size: 1rem;
}

.route-promotions .stat-item span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
}

.route-promotions .catalog-content {
    padding-bottom: 100px;
    padding-top: 54px;
}

.route-promotions .filters {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin: 0 0 28px;
    padding: 24px;
    position: relative;
}

.route-promotions .filters h2 {
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.route-promotions .filters h2 i {
    color: var(--coral-dark);
    margin-right: 7px;
}

.route-promotions .filter-group {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr 0.9fr 1.35fr auto auto;
}

.route-promotions .filter-group select,
.route-promotions .filter-group input {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    height: 52px;
    margin: 0;
    padding: 0 16px;
    width: 100%;
}

.route-promotions .filter-group select:focus,
.route-promotions .filter-group input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(35, 123, 117, 0.12);
    outline: 0;
}

.route-promotions .filter-group button {
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 14px;
    box-shadow: none;
    color: var(--white);
    cursor: pointer;
    height: 52px;
    padding: 0 20px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.route-promotions .filter-group button:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    box-shadow: none;
    transform: translateY(-2px);
}

.route-promotions .filter-group button.clear-btn {
    background: transparent;
    border-color: var(--line);
    color: var(--ink-soft);
}

.route-promotions .filter-group button.clear-btn:hover {
    background: var(--cream);
    border-color: rgba(23, 50, 77, 0.25);
    color: var(--ink);
}

.route-promotions .coupon-stores-section {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin: 0 0 28px;
    padding: 22px 24px 24px;
}

.route-promotions .coupon-stores-heading {
    align-items: flex-end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.route-promotions .coupon-stores-heading p {
    color: var(--coral-dark);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.route-promotions .coupon-stores-heading h2 {
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0;
}

.route-promotions .coupon-stores-heading > span {
    color: var(--ink-soft);
    font-size: 0.7rem;
    text-align: right;
}

.route-promotions .coupon-store-list {
    display: grid;
    gap: 10px;
    grid-auto-columns: minmax(190px, 1fr);
    grid-auto-flow: column;
    overflow-x: auto;
    padding: 2px 1px 8px;
    scrollbar-color: rgba(23, 50, 77, 0.25) transparent;
}

.route-promotions .coupon-store-button {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--ink);
    cursor: pointer;
    display: grid;
    font: inherit;
    gap: 10px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    min-height: 72px;
    padding: 10px 13px;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.route-promotions .coupon-store-button:hover,
.route-promotions .coupon-store-button.is-selected {
    background: var(--cream);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
}

.route-promotions .coupon-store-button.is-selected {
    box-shadow: inset 0 0 0 1px var(--coral-dark);
}

.route-promotions .coupon-store-logo {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--ink);
    display: flex;
    font-size: 0.9rem;
    font-weight: 900;
    height: 48px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 48px;
}

.route-promotions .coupon-store-logo img {
    background: var(--white);
    height: 100%;
    inset: 0;
    object-fit: contain;
    padding: 6px;
    position: absolute;
    width: 100%;
}

.route-promotions .coupon-store-copy {
    min-width: 0;
}

.route-promotions .coupon-store-copy small {
    color: var(--ink-soft);
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
}

.route-promotions .coupon-store-copy strong {
    display: block;
    font-size: 0.76rem;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.route-promotions .coupon-store-button > i {
    color: var(--coral-dark);
    font-size: 0.72rem;
}

.route-promotions .promocoes-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
}

.route-promotions .promo-card,
.route-offer .promo-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.route-promotions .promo-card:hover,
.route-offer .promo-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-6px);
}

.route-promotions .coupon-card,
.route-offer .coupon-card {
    border-color: rgba(226, 91, 74, 0.42);
}

.route-promotions .coupon-card .promo-image,
.route-offer .coupon-card .promo-image {
    background: linear-gradient(145deg, #fff4df, #ffe9e4);
}

.route-promotions .coupon-card .promo-image img,
.route-offer .coupon-card .promo-image img {
    filter: drop-shadow(0 12px 20px rgba(23, 50, 77, 0.12));
}

.route-promotions .promo-image-link {
    color: inherit;
    display: block;
    text-decoration: none;
}

.route-promotions .promo-image,
.route-offer .promo-card .promo-image {
    aspect-ratio: 4 / 3;
    background: var(--cream);
    height: auto;
    overflow: hidden;
    padding: 22px;
    position: relative;
}

.route-promotions .promo-image img,
.route-offer .promo-card .promo-image img {
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    width: 100%;
}

.route-promotions .promo-card:hover .promo-image img,
.route-offer .promo-card:hover .promo-image img {
    transform: scale(1.04);
}

.route-promotions .promo-badge,
.route-offer .promo-card .promo-badge {
    align-items: center;
    background: var(--coral);
    border-radius: 999px;
    color: var(--white);
    display: flex;
    font-size: 0.68rem;
    font-weight: 800;
    gap: 6px;
    left: 14px;
    letter-spacing: 0.06em;
    padding: 7px 11px;
    position: absolute;
    right: auto;
    text-transform: uppercase;
    top: 14px;
}

.route-promotions .coupon-card .promo-badge,
.route-offer .coupon-card .promo-badge,
.route-offer .coupon-mode .oferta-promo-badge {
    background: var(--teal);
}

.route-promotions .promo-time,
.route-offer .promo-card .promo-time {
    align-items: center;
    backdrop-filter: blur(9px);
    background: rgba(23, 50, 77, 0.86);
    border-radius: 999px;
    bottom: 14px;
    color: var(--white);
    display: flex;
    font-size: 0.66rem;
    font-weight: 700;
    gap: 6px;
    left: auto;
    padding: 7px 10px;
    position: absolute;
    right: 14px;
    top: auto;
}

.route-promotions .promo-content,
.route-offer .promo-card .promo-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.route-promotions .promo-category,
.route-offer .promo-card .promo-category {
    align-self: flex-start;
    background: var(--mint);
    border-radius: 999px;
    color: var(--teal);
    font-size: 0.65rem;
    font-weight: 800;
    margin-bottom: 12px;
    padding: 6px 10px;
    text-transform: uppercase;
}

.route-promotions .promo-title-link {
    text-decoration: none;
}

.route-promotions .promo-title,
.route-offer .promo-card .promo-title {
    color: var(--ink);
    display: -webkit-box;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 9px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.route-promotions .promo-description {
    color: var(--ink-soft);
    display: -webkit-box;
    font-size: 0.78rem;
    line-height: 1.55;
    margin: 0 0 18px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.route-promotions .promo-footer,
.route-offer .promo-card .promo-footer {
    align-items: center;
    border: 0;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin: auto 0 0;
    padding: 0;
}

.route-promotions .promo-price,
.route-offer .promo-card .promo-price {
    color: var(--coral-dark);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.route-promotions .coupon-benefit,
.route-offer .coupon-benefit {
    font-size: 0.92rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.route-promotions .coupon-code {
    align-items: center;
    align-self: stretch;
    background: #fff4df;
    border: 1px dashed var(--coral-dark);
    border-radius: 14px;
    color: var(--ink);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin: 0 0 16px;
    padding: 10px 10px 10px 13px;
}

.route-promotions .coupon-code-info {
    min-width: 0;
}

.route-promotions .coupon-code-info span {
    color: var(--ink-soft);
    display: block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.route-promotions .coupon-code-info strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.route-promotions .coupon-copy-button {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font: inherit;
    font-size: 0.65rem;
    font-weight: 800;
    gap: 6px;
    min-height: 36px;
    padding: 0 10px;
}

.route-promotions .coupon-copy-button:hover,
.route-promotions .coupon-copy-button.is-copied {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.route-promotions .promo-store {
    align-items: center;
    display: flex;
    gap: 7px;
    max-width: 45%;
}

.route-promotions .promo-store img,
.route-offer .promo-card .promo-store img {
    border: 1px solid var(--line);
    border-radius: 9px;
    height: 28px;
    object-fit: cover;
    width: 28px;
}

.route-promotions .promo-store span {
    color: var(--ink-soft);
    font-size: 0.66rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.route-promotions .promo-actions {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
}

.route-promotions .promo-link {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 800;
    gap: 7px;
    justify-content: center;
    min-height: 42px;
    padding: 0 10px;
    text-decoration: none;
}

.route-promotions .promo-link-details {
    background: var(--white);
    border-color: var(--line);
    color: var(--ink);
}

.route-promotions .promo-link-store {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.route-promotions .promo-link:hover {
    background: var(--cream);
    color: var(--ink);
    transform: none;
}

.route-promotions .promo-link-store:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    color: var(--white);
}

.route-promotions .coupon-card {
    border-color: rgba(226, 91, 74, 0.42);
    border-radius: 24px;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 210px minmax(0, 1fr);
    min-height: 230px;
}

.route-promotions .coupon-card:hover {
    transform: translateY(-3px);
}

.route-promotions .coupon-store-panel {
    align-items: center;
    background: linear-gradient(145deg, #fff7e9 0%, #ffece7 100%);
    border-right: 1px solid rgba(226, 91, 74, 0.2);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    text-align: center;
    text-decoration: none;
}

.route-promotions .coupon-store-kicker {
    align-items: center;
    background: var(--teal);
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    font-size: 0.59rem;
    font-weight: 800;
    gap: 6px;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    padding: 7px 10px;
    text-transform: uppercase;
}

.route-promotions .coupon-card-store-logo {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    color: var(--ink);
    display: flex;
    font-size: 1.7rem;
    font-weight: 900;
    height: 92px;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
    width: 112px;
}

.route-promotions .coupon-card-store-logo img {
    background: var(--white);
    height: 100%;
    inset: 0;
    object-fit: contain;
    padding: 12px;
    position: absolute;
    width: 100%;
}

.route-promotions .coupon-card-store-label {
    color: var(--ink-soft);
    font-size: 0.62rem;
}

.route-promotions .coupon-card-store-name {
    font-size: 0.95rem;
    line-height: 1.2;
    margin-top: 3px;
}

.route-promotions .coupon-card-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 22px 24px;
}

.route-promotions .coupon-card-meta {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 9px;
}

.route-promotions .coupon-card-meta .promo-category {
    margin: 0;
}

.route-promotions .coupon-card-time {
    color: var(--ink-soft);
    font-size: 0.65rem;
    font-weight: 700;
}

.route-promotions .coupon-card .promo-title {
    font-size: 1.08rem;
    margin-bottom: 6px;
}

.route-promotions .coupon-card .promo-description {
    margin-bottom: 12px;
    max-width: 820px;
}

.route-promotions .coupon-card-benefit {
    align-items: baseline;
    display: flex;
    gap: 9px;
    margin-bottom: 16px;
}

.route-promotions .coupon-card-benefit span {
    color: var(--ink-soft);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
}

.route-promotions .coupon-card-benefit strong {
    color: var(--coral-dark);
    font-size: 0.9rem;
}

.route-promotions .coupon-card-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: 1.2fr 1fr 1fr;
    margin-top: auto;
}

.route-promotions .coupon-card-action {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    gap: 7px;
    justify-content: center;
    min-height: 52px;
    padding: 8px 13px;
    text-align: center;
    text-decoration: none;
}

.route-promotions .coupon-card-copy {
    border-color: var(--coral-dark);
    border-style: dashed;
    justify-content: space-between;
}

.route-promotions .coupon-card-copy:hover,
.route-promotions .coupon-card-copy.is-copied {
    background: #fff4df;
}

.route-promotions .coupon-card-copy:disabled {
    background: var(--paper);
    border-color: var(--line);
    color: var(--ink-soft);
    cursor: default;
}

.route-promotions .coupon-card-code {
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    max-width: 52%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.route-promotions .coupon-card-copy-label {
    align-items: center;
    color: var(--coral-dark);
    display: inline-flex;
    flex: 0 0 auto;
    gap: 6px;
}

.route-promotions .coupon-card-copy:disabled .coupon-card-copy-label {
    color: var(--ink-soft);
}

.route-promotions .coupon-go-store {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.route-promotions .coupon-details-action:hover {
    background: var(--cream);
}

.route-promotions .coupon-go-store:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    color: var(--white);
}

.route-promotions .loading,
.route-promotions .empty-state,
.route-promotions .loading-more,
.route-promotions .end-message {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--ink-soft);
    margin: 24px 0;
    padding: 54px 24px;
    text-align: center;
}

.route-promotions .loading i {
    color: var(--coral-dark);
}

.route-promotions .loading p,
.route-promotions .empty-state p {
    color: var(--ink-soft) !important;
}

.route-promotions .empty-state i {
    color: var(--coral-soft);
}

.route-promotions .empty-state h3 {
    color: var(--ink);
}

.route-promotions .loading-more,
.route-promotions .end-message {
    align-items: center;
    justify-content: center;
    padding: 18px;
}

/* Detalhe da oferta */
.route-offer .offer-main {
    background:
        radial-gradient(circle at 5% 8%, rgba(248, 223, 131, 0.35), transparent 20%),
        var(--paper);
    padding: 126px 0 100px;
}

.route-offer .offer-back-row {
    margin-bottom: 24px;
}

.route-offer .back-button {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--ink-soft);
    display: inline-flex;
    font-size: 0.85rem;
    gap: 9px;
    left: auto;
    padding: 0;
    position: static;
    top: auto;
}

.route-offer .back-button:hover {
    background: transparent;
    box-shadow: none;
    color: var(--coral-dark);
    transform: translateX(-3px);
}

.route-offer .oferta-container {
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 28px;
}

.route-offer .loading-state,
.route-offer .error-state {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: none;
    padding: 90px 24px;
    text-align: center;
}

.route-offer .loading-state i {
    color: var(--coral-dark);
}

.route-offer .loading-state p,
.route-offer .error-state p {
    color: var(--ink-soft);
}

.route-offer .error-state h2 {
    color: var(--ink);
}

.route-offer .error-state a {
    background: var(--ink);
    border-radius: 999px;
    color: var(--white);
}

.route-offer .oferta-content {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    overflow: hidden;
}

.route-offer .oferta-image-container {
    background:
        radial-gradient(circle at 18% 18%, rgba(248, 223, 131, 0.38), transparent 27%),
        var(--cream);
    min-height: 600px;
    padding: 66px;
}

.route-offer .oferta-image {
    filter: drop-shadow(0 20px 30px rgba(23, 50, 77, 0.13));
    max-height: 460px;
}

.route-offer .oferta-time-badge,
.route-offer .oferta-promo-badge {
    animation: none;
    border-radius: 999px;
    box-shadow: none;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 9px 13px;
}

.route-offer .oferta-time-badge {
    background: var(--ink);
}

.route-offer .oferta-time-badge i {
    color: var(--yellow);
}

.route-offer .oferta-promo-badge {
    background: var(--coral);
}

.route-offer .oferta-details {
    padding: 52px;
}

.route-offer .oferta-category {
    background: var(--mint);
    border-radius: 999px;
    box-shadow: none;
    color: var(--teal);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 7px 12px;
    text-transform: uppercase;
}

.route-offer .oferta-title {
    color: var(--ink);
    font-family: "Fraunces", serif;
    font-size: clamp(2.25rem, 4vw, 3.8rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.02;
    margin-bottom: 28px;
}

.route-offer .oferta-price-container {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 20px;
}

.route-offer .oferta-price-label {
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.route-offer .oferta-price {
    color: var(--coral-dark);
    font-size: 2.65rem;
    letter-spacing: -0.05em;
}

.route-offer .coupon-mode .oferta-price {
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 1.12;
}

.route-offer .coupon-code-card {
    align-items: center;
    background: #fff4df;
    border: 1px dashed var(--coral-dark);
    border-radius: 18px;
    justify-content: space-between;
    margin: 0 0 20px;
    padding: 15px 18px;
}

.route-offer .coupon-code-card span {
    color: var(--ink-soft);
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.route-offer .coupon-code-card strong {
    color: var(--ink);
    display: block;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    margin-top: 3px;
}

.route-offer .coupon-code-card button,
.route-offer .btn-store-coupon {
    align-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    gap: 7px;
    justify-content: center;
    padding: 11px 14px;
    text-decoration: none;
}

.route-offer .btn-store-coupon {
    min-height: 52px;
}

.route-offer .coupon-code-card button:hover,
.route-offer .coupon-code-card button.is-copied,
.route-offer .btn-store-coupon:hover {
    background: var(--cream);
    color: var(--ink);
}

.route-offer .oferta-store {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    margin-bottom: 22px;
}

.route-offer .oferta-store img {
    border-radius: 12px;
    box-shadow: none;
}

.route-offer .oferta-store-label,
.route-offer .oferta-description p,
.route-offer .oferta-meta-item {
    color: var(--ink-soft);
}

.route-offer .oferta-store-name,
.route-offer .oferta-description h3 {
    color: var(--ink);
}

.route-offer .oferta-description h3 i,
.route-offer .oferta-meta-item i {
    color: var(--coral-dark);
}

.route-offer .oferta-actions {
    gap: 10px;
}

.route-offer .btn-ver-oferta,
.route-offer .btn-share {
    border-radius: 14px;
    box-shadow: none;
    min-height: 54px;
}

.route-offer .btn-ver-oferta {
    background: var(--ink);
    color: var(--white);
}

.route-offer .btn-ver-oferta:hover {
    background: var(--coral-dark);
    box-shadow: none;
}

.route-offer .btn-share {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
}

.route-offer .btn-share:hover {
    background: var(--cream);
    color: var(--ink);
}

.route-offer .merchant-note {
    align-items: flex-start;
    color: var(--ink-soft);
    display: flex;
    font-size: 0.72rem;
    gap: 8px;
    margin: 13px 0 0;
}

.route-offer .merchant-note i {
    color: var(--teal);
    margin-top: 3px;
}

.route-offer .oferta-meta {
    border-color: var(--line);
}

.route-offer .related-section {
    margin-top: 76px;
}

.route-offer .related-heading {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
}

.route-offer .related-section h2 {
    color: var(--ink);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.route-offer .related-section h2 i {
    color: var(--coral-dark);
    font-family: "Font Awesome 6 Free";
    font-size: 0.7em;
}

.route-offer .related-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-offer .promo-card {
    cursor: pointer;
}

.route-offer a.promo-card {
    color: inherit;
    text-decoration: none;
}

.route-offer .promo-card .promo-store {
    align-items: center;
    display: flex;
    margin-left: auto;
}

/* Download */
.route-store {
    background:
        radial-gradient(circle at 14% 22%, rgba(248, 223, 131, 0.55), transparent 25%),
        radial-gradient(circle at 88% 66%, rgba(200, 234, 223, 0.7), transparent 23%),
        var(--cream) !important;
    display: block !important;
    padding: 0 !important;
}

.route-store .store-main {
    min-height: calc(100vh - 82px);
    padding: 142px 0 82px;
}

.route-store .download-layout {
    align-items: center;
    display: grid;
    gap: 76px;
    grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
}

.route-store .download-copy h1 {
    color: var(--ink);
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    font-weight: 600;
    line-height: 0.95;
    margin: 22px 0 24px;
}

.route-store .download-copy h1 em {
    color: var(--coral-dark);
    font-style: normal;
}

.route-store .download-copy > p {
    color: var(--ink-soft);
    font-size: 1.04rem;
    margin: 0;
    max-width: 600px;
}

.route-store .redirect-status {
    align-items: center;
    color: var(--teal);
    display: flex;
    font-size: 0.78rem;
    font-weight: 800;
    gap: 10px;
    margin-top: 26px;
}

.route-store .spinner {
    border: 3px solid rgba(35, 123, 117, 0.17);
    border-radius: 50%;
    border-top-color: var(--teal);
    height: 24px;
    margin: 0;
    width: 24px;
}

.route-store .download-card-route {
    background: var(--ink);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    color: var(--white);
    overflow: hidden;
    padding: 42px;
    position: relative;
}

.route-store .download-card-route::before,
.route-store .download-card-route::after {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: "";
    position: absolute;
}

.route-store .download-card-route::before {
    height: 260px;
    right: -110px;
    top: -120px;
    width: 260px;
}

.route-store .download-card-route::after {
    bottom: -130px;
    height: 230px;
    left: -100px;
    width: 230px;
}

.route-store .app-mark {
    align-items: center;
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.route-store .app-mark .logo {
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    height: 84px;
    margin: 0;
    width: 84px;
}

.route-store .app-mark strong {
    display: block;
    font-size: 1.18rem;
}

.route-store .app-mark span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
}

.route-store .manual-redirect {
    opacity: 1;
    position: relative;
    transform: none;
    visibility: visible;
    z-index: 1;
}

.route-store .manual-redirect > p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    margin: 34px 0 16px;
    opacity: 1;
}

.route-store .store-buttons {
    align-items: stretch;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

.route-store .store-button {
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: none;
    display: flex;
    justify-content: center;
    min-height: 70px;
    padding: 12px 24px;
}

.route-store .store-button:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.route-store .store-button img {
    height: 46px;
    max-width: 190px;
    object-fit: contain;
}

.route-store .back-link {
    color: rgba(255, 255, 255, 0.68);
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 700;
    margin-top: 22px;
    opacity: 1;
    text-decoration: none;
}

.route-store .back-link:hover {
    color: var(--yellow);
}

.route-store .site-footer {
    padding: 18px 0;
}

.route-store .footer-bottom {
    border-top: 0;
    padding-top: 0;
}

/* Privacidade */
.route-privacy {
    background: var(--paper) !important;
}

.route-privacy .privacy-main {
    padding-top: 82px;
}

.route-privacy .privacy-hero {
    background:
        radial-gradient(circle at 86% 20%, rgba(200, 234, 223, 0.75), transparent 25%),
        radial-gradient(circle at 8% 0%, rgba(248, 223, 131, 0.4), transparent 22%),
        var(--cream);
    padding: 78px 0 70px;
}

.route-privacy .privacy-hero h1 {
    color: var(--ink);
    font-size: clamp(3.4rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 0.98;
    margin: 20px 0 22px;
}

.route-privacy .privacy-hero p {
    color: var(--ink-soft);
    font-size: 1rem;
    margin: 0;
    max-width: 680px;
}

.route-privacy .last-update {
    align-items: center;
    color: var(--teal) !important;
    display: flex;
    font-size: 0.76rem !important;
    font-weight: 800;
    gap: 8px;
    margin-top: 24px !important;
}

.route-privacy .privacy-content-wrap {
    max-width: 960px;
    padding-bottom: 100px;
    padding-top: 52px;
}

.route-privacy .content-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    color: var(--ink-soft);
    margin: 0;
    padding: 58px clamp(24px, 7vw, 76px);
}

.route-privacy .content-box > h1,
.route-privacy .content-box > .last-update {
    display: none;
}

.route-privacy .content-box > p:first-of-type {
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.8;
}

.route-privacy .content-box h2 {
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 52px 0 22px;
    padding-top: 45px;
}

.route-privacy .content-box h2 i {
    color: var(--coral-dark);
    font-family: "Font Awesome 6 Free";
    font-size: 0.62em;
    margin-right: 8px;
}

.route-privacy .content-box h3 {
    color: var(--ink);
    font-size: 1rem;
    margin: 30px 0 10px;
}

.route-privacy .content-box h4 {
    color: var(--ink);
}

.route-privacy .content-box p,
.route-privacy .content-box li {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.route-privacy .content-box ul {
    margin: 14px 0 22px;
    padding-left: 22px;
}

.route-privacy .content-box li {
    margin-bottom: 9px;
    padding-left: 4px;
}

.route-privacy .highlight-box,
.route-privacy .info-card,
.route-privacy .contact-info {
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: none;
    margin: 30px 0;
    padding: 24px;
}

.route-privacy .highlight-box {
    background: var(--cream);
    border-left: 5px solid var(--coral);
    color: var(--ink);
}

.route-privacy .info-card {
    background: rgba(200, 234, 223, 0.36);
    border-left: 5px solid var(--teal);
}

.route-privacy .contact-info {
    background: var(--ink);
    color: var(--white);
    margin-top: 52px;
}

.route-privacy .contact-info h2,
.route-privacy .contact-info p,
.route-privacy .contact-info li,
.route-privacy .contact-info a {
    color: var(--white);
}

.route-privacy .contact-info h2 {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

/* Confirmação de e-mail */
.route-confirmation {
    background:
        radial-gradient(circle at 14% 18%, rgba(248, 223, 131, 0.52), transparent 24%),
        radial-gradient(circle at 86% 78%, rgba(200, 234, 223, 0.72), transparent 25%),
        var(--cream) !important;
    display: block;
    max-width: none !important;
    padding: 0 !important;
}

.route-confirmation .confirmation-main {
    align-items: center;
    display: flex;
    min-height: calc(100vh - 82px);
    padding: 136px 0 70px;
}

.route-confirmation .email-container {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 650px;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

.route-confirmation .confirmation-card-header {
    background: var(--ink);
    color: var(--white);
    padding: 38px 44px;
    text-align: left;
}

.route-confirmation .confirmation-card-header .logo {
    border-radius: 18px;
    height: 68px;
    margin: 0 0 24px;
    max-width: none;
    width: 68px;
}

.route-confirmation .confirmation-card-header .eyebrow {
    color: var(--yellow);
}

.route-confirmation .confirmation-card-header h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 7vw, 4.1rem);
    font-weight: 600;
    line-height: 1;
    margin: 15px 0 0;
}

.route-confirmation .confirmation-body {
    color: var(--ink-soft);
    min-height: 190px;
    padding: 38px 44px;
}

.route-confirmation .confirmation-status {
    align-items: flex-start;
    display: flex;
    gap: 16px;
}

.route-confirmation .confirmation-status > i {
    align-items: center;
    background: var(--cream);
    border-radius: 16px;
    color: var(--coral-dark);
    display: flex;
    flex: 0 0 50px;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.route-confirmation .confirmation-status p {
    margin: 0 0 10px;
}

.route-confirmation .btn-confirm {
    background: var(--ink);
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    margin: 18px 0 0;
    padding: 13px 22px;
}

.route-confirmation .btn-confirm:hover {
    background: var(--coral-dark);
}

.route-confirmation .confirmation-footer {
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.72rem;
    padding: 22px 44px;
    text-align: left;
}

.route-confirmation .confirmation-footer p {
    margin: 3px 0;
}

@media (max-width: 1024px) {
    .route-page .desktop-nav {
        display: none;
    }

    .route-promotions .catalog-hero-grid,
    .route-store .download-layout {
        gap: 42px;
        grid-template-columns: 1fr 0.72fr;
    }

    .route-promotions .promocoes-grid,
    .route-offer .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .route-promotions .filter-group {
        grid-template-columns: 1fr 1fr;
    }

    .route-promotions .filter-group input {
        grid-column: span 2;
    }

    .route-promotions .filter-group button {
        width: 100%;
    }

    .route-offer .oferta-details {
        padding: 40px;
    }

    .route-offer .oferta-image-container {
        padding: 40px;
    }
}

@media (max-width: 780px) {
    .route-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .route-page .header-inner {
        height: 72px;
    }

    .route-page .brand span {
        font-size: 0.92rem;
    }

    .route-page .button-small {
        font-size: 0;
        padding: 0;
        width: 44px;
    }

    .route-page .button-small i {
        font-size: 0.86rem;
    }

    .route-page .footer-grid {
        gap: 45px;
        grid-template-columns: 1fr;
    }

    .route-promotions .page-header {
        padding: 122px 0 58px;
    }

    .route-promotions .catalog-hero-grid,
    .route-store .download-layout {
        grid-template-columns: 1fr;
    }

    .route-promotions .page-header h1,
    .route-store .download-copy h1,
    .route-privacy .privacy-hero h1 {
        font-size: clamp(3.1rem, 14vw, 4.7rem);
    }

    .route-promotions .catalog-summary {
        max-width: 480px;
    }

    .route-promotions .catalog-content {
        padding-bottom: 76px;
        padding-top: 34px;
    }

    .route-promotions .coupon-stores-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .route-promotions .coupon-stores-heading > span {
        text-align: left;
    }

    .route-promotions .coupon-card {
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .route-promotions .coupon-card-actions {
        grid-template-columns: 1fr 1fr;
    }

    .route-promotions .coupon-go-store {
        grid-column: 1 / -1;
    }

    .route-offer .offer-main {
        padding: 108px 0 76px;
    }

    .route-offer .oferta-container {
        padding: 0 20px;
    }

    .route-offer .oferta-content {
        grid-template-columns: 1fr;
    }

    .route-offer .oferta-image-container {
        min-height: 430px;
    }

    .route-store .store-main {
        padding: 116px 0 65px;
    }

    .route-store .download-card-route {
        margin: 0 auto;
        max-width: 520px;
    }

    .route-privacy .privacy-main {
        padding-top: 72px;
    }

    .route-privacy .privacy-hero {
        padding: 60px 0;
    }

    .route-privacy .privacy-content-wrap {
        padding-bottom: 75px;
        padding-top: 32px;
    }

    .route-confirmation .confirmation-main {
        min-height: calc(100vh - 72px);
        padding: 110px 20px 50px;
    }
}

@media (max-width: 560px) {
    .route-page .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .route-page .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

    .route-promotions .stats-info,
    .route-promotions .filter-group,
    .route-promotions .promocoes-grid,
    .route-offer .related-grid {
        grid-template-columns: 1fr;
    }

    .route-promotions .filter-group input {
        grid-column: auto;
    }

    .route-promotions .filters {
        padding: 18px;
    }

    .route-promotions .coupon-stores-section {
        padding: 18px;
    }

    .route-promotions .coupon-store-list {
        grid-auto-columns: minmax(190px, 82%);
    }

    .route-promotions .coupon-card {
        grid-template-columns: 1fr;
    }

    .route-promotions .coupon-store-panel {
        align-items: center;
        border-bottom: 1px solid rgba(226, 91, 74, 0.2);
        border-right: 0;
        display: grid;
        gap: 2px 13px;
        grid-template-columns: 72px minmax(0, 1fr);
        justify-items: start;
        padding: 17px 18px;
        text-align: left;
    }

    .route-promotions .coupon-store-kicker {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }

    .route-promotions .coupon-card-store-logo {
        grid-row: 2 / 4;
        height: 62px;
        margin: 0;
        width: 72px;
    }

    .route-promotions .coupon-card-main {
        padding: 19px 18px;
    }

    .route-promotions .coupon-card-benefit {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .route-promotions .coupon-card-actions {
        grid-template-columns: 1fr;
    }

    .route-promotions .coupon-go-store {
        grid-column: auto;
    }

    .route-promotions .promo-actions {
        grid-template-columns: 1fr;
    }

    .route-offer .oferta-image-container {
        min-height: 340px;
        padding: 34px 22px;
    }

    .route-offer .oferta-details {
        padding: 28px 22px;
    }

    .route-offer .oferta-title {
        font-size: 2.25rem;
    }

    .route-offer .related-section {
        margin-top: 58px;
    }

    .route-store .download-card-route {
        padding: 30px 22px;
    }

    .route-privacy .content-box {
        border-radius: 24px;
        padding: 34px 22px;
    }

    .route-confirmation .confirmation-card-header,
    .route-confirmation .confirmation-body,
    .route-confirmation .confirmation-footer {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
