:root {
    --plt-bg: #ece8df;
    --plt-paper: #f7f3eb;
    --plt-surface: rgba(255, 255, 255, 0.62);
    --plt-surface-strong: rgba(255, 255, 255, 0.82);
    --plt-ink: #171612;
    --plt-ink-soft: #5e584f;
    --plt-muted: #8f877b;
    --plt-line: rgba(23, 22, 18, 0.08);
    --plt-line-strong: rgba(23, 22, 18, 0.14);
    --plt-accent: #213070;
    --plt-accent-soft: #4866c8;
    --plt-dark: #111317;
    --plt-dark-soft: #1d2128;
    --plt-white: #ffffff;
    --plt-success: #335f4a;

    --plt-radius-xs: 14px;
    --plt-radius-sm: 20px;
    --plt-radius-md: 32px;
    --plt-radius-lg: 48px;

    --plt-shadow-sm: 0 16px 40px rgba(17, 19, 23, 0.08);
    --plt-shadow-md: 0 30px 90px rgba(17, 19, 23, 0.12);
    --plt-shadow-lg: 0 36px 120px rgba(17, 19, 23, 0.18);

    --font-display: 'Ramabhadra', sans-serif;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-max: 1320px;
    --container-pad: 28px;

    --ease: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.loja-body {
    background:
        radial-gradient(circle at top left, rgba(72, 102, 200, 0.08), transparent 30%),
        linear-gradient(180deg, #f6f2e9 0%, #ece7dd 100%);
    color: var(--plt-ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.loja-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.loja-main {
    min-height: 60vh;
    padding-bottom: 96px;
}

.loja-section {
    padding: 96px 0;
}

.loja-section-quiet {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.18)),
        rgba(255, 255, 255, 0.2);
    border-top: 1px solid var(--plt-line);
    border-bottom: 1px solid var(--plt-line);
}

.loja-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--plt-accent);
    margin-bottom: 14px;
}

.loja-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.45;
}

.loja-section-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.loja-section-title,
.loja-page-head h1,
.loja-pitch h2,
.shop-listing-title,
.shop-pdp-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    font-weight: 900;
    margin: 0;
}

.loja-section-copy,
.loja-page-head p,
.loja-pitch p,
.shop-listing-desc,
.shop-pdp-short,
.shop-pdp-description p {
    font-size: 1rem;
    color: var(--plt-ink-soft);
    max-width: 640px;
    margin: 16px 0 0;
}

.loja-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition:
        transform var(--ease),
        background var(--ease),
        color var(--ease),
        border-color var(--ease),
        box-shadow var(--ease);
    cursor: pointer;
}

.loja-btn:hover {
    transform: translateY(-2px);
}

.loja-btn-primary {
    background: var(--plt-dark);
    color: var(--plt-white);
    box-shadow: 0 18px 36px rgba(17, 19, 23, 0.14);
}

.loja-btn-primary:hover {
    background: var(--plt-accent);
}

.loja-btn-ghost {
    background: transparent;
    color: var(--plt-ink);
    border-color: var(--plt-line-strong);
}

.loja-btn-ghost:hover {
    border-color: var(--plt-accent);
    color: var(--plt-accent);
}

.loja-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding-top: 14px;
}

.loja-header-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: rgba(247, 243, 235, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--plt-shadow-sm);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 999px;
    padding: 10px 20px;
}

.loja-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.loja-brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--plt-dark);
    color: var(--plt-white);
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    box-shadow: 0 12px 30px rgba(17, 19, 23, 0.16);
    flex-shrink: 0;
}

.loja-brand-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.loja-brand-name {
    font-family: var(--font-display);
    font-size: 1.08rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.loja-brand-subtitle {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plt-muted);
}

.loja-header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex: 1;
}

.loja-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 220px;
    max-width: 300px;
    width: 100%;
}

.loja-search-icon {
    position: absolute;
    left: 14px;
    width: 14px;
    height: 14px;
    color: var(--plt-muted);
    pointer-events: none;
}

.loja-search-input {
    width: 100%;
    height: 40px;
    padding: 0 14px 0 38px;
    border: 1px solid var(--plt-line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--plt-ink);
    outline: none;
    font-size: 0.9rem;
    transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.loja-search-input:focus {
    border-color: rgba(33, 48, 112, 0.35);
    box-shadow: 0 0 0 4px rgba(33, 48, 112, 0.08);
    background: var(--plt-white);
}

.loja-link-institucional {
    font-size: 0.74rem;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--plt-accent);
    white-space: nowrap;
}

.loja-link-institucional:hover {
    color: var(--plt-accent-soft);
}

.loja-hero {
    padding: 72px 0 48px;
}

.loja-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.loja-hero-copyblock {
    padding: 24px 0;
}

.loja-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.8rem, 6.5vw, 6.4rem);
    line-height: 0.88;
    letter-spacing: -0.08em;
    font-weight: 900;
    margin: 0;
    max-width: 7ch;
}

.loja-hero-copy {
    margin: 20px 0 0;
    max-width: 520px;
    font-size: 1rem;
    color: var(--plt-ink-soft);
}

.loja-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.loja-hero-stage {
    position: relative;
    display: flex;
    align-items: stretch;
}

.loja-hero-stage-frame {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    width: 100%;
    min-height: 580px;
    padding: 32px;
    border-radius: 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(72, 102, 200, 0.26), transparent 28%),
        linear-gradient(180deg, #1a1d23 0%, #0f1114 100%);
    color: var(--plt-white);
    box-shadow: var(--plt-shadow-lg);
}

.loja-hero-stage-copy {
    position: relative;
    z-index: 2;
    max-width: 220px;
}

.loja-hero-stage-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.loja-hero-stage-copy strong {
    display: block;
    font-size: 1.12rem;
    line-height: 1.1;
}

.loja-hero-stage-copy p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
}

.loja-hero-object {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.loja-hero-object::before,
.loja-hero-object::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
}

.loja-hero-object::before {
    width: min(82%, 420px);
    height: min(62%, 320px);
    background: rgba(255, 255, 255, 0.06);
}

.loja-hero-object::after {
    width: min(66%, 300px);
    height: 28px;
    bottom: 92px;
    background: rgba(0, 0, 0, 0.28);
    filter: blur(18px);
}

.loja-hero-object img {
    position: relative;
    z-index: 2;
    max-height: 390px;
    width: auto;
    object-fit: contain;
}

.loja-hero-object-placeholder {
    position: relative;
    z-index: 2;
    width: min(78%, 380px);
    aspect-ratio: 0.92;
    border-radius: 40px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 30% 20%, rgba(72, 102, 200, 0.45), transparent 36%),
        radial-gradient(circle at 70% 80%, rgba(229, 184, 75, 0.16), transparent 32%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
}

.loja-hero-object-placeholder::before {
    content: "";
    position: absolute;
    inset: 14%;
    border-radius: 28px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(17, 19, 23, 0.3));
}

.loja-hero-object-placeholder span {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 8vw, 4.8rem);
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.76);
}

.shop-grid {
    display: grid;
    gap: 28px;
}

.shop-grid-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 28px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--plt-shadow-sm);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--plt-shadow-md);
    border-color: rgba(33, 48, 112, 0.18);
}

.shop-card-media {
    position: relative;
    aspect-ratio: 1 / 1.08;
    border-radius: 20px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(232, 226, 214, 0.68)),
        var(--plt-paper);
}

.shop-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-card-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(72, 102, 200, 0.16), transparent 30%),
        linear-gradient(180deg, #f7f4ed 0%, #e6dfd2 100%);
    color: rgba(23, 22, 18, 0.38);
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 0.18em;
}

.shop-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px 2px 2px;
    flex: 1;
}

.shop-card-body p {
    margin: 0;
    color: var(--plt-ink-soft);
    font-size: 0.94rem;
}

.shop-card-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.shop-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.shop-card-price {
    text-align: right;
    flex-shrink: 0;
}

.shop-card-price strong {
    display: block;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
}

.shop-card-price-old {
    display: block;
    margin-bottom: 6px;
    font-size: 0.78rem;
    color: var(--plt-muted);
    text-decoration: line-through;
}

.shop-empty {
    padding: 30px;
    border-radius: 28px;
    border: 1px dashed var(--plt-line-strong);
    text-align: center;
    background: rgba(255, 255, 255, 0.32);
}

.shop-empty p {
    margin: 0 0 14px;
    color: var(--plt-ink-soft);
}

.shop-empty-search {
    margin-top: 24px;
}

.loja-promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, minmax(240px, auto));
    gap: 24px;
}

.loja-promo-card {
    position: relative;
    min-height: 240px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--plt-shadow-sm);
}

.loja-promo-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.loja-promo-card h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.loja-promo-card p {
    margin: 14px 0 0;
    max-width: 30ch;
    font-size: 0.92rem;
}

.loja-promo-card:first-child {
    grid-row: 1 / span 2;
}

.loja-promo-card-dark {
    background:
        radial-gradient(circle at top right, rgba(72, 102, 200, 0.34), transparent 34%),
        linear-gradient(180deg, #1a1e24 0%, #111317 100%);
    color: var(--plt-white);
}

.loja-promo-card-dark .loja-kicker,
.loja-promo-card-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.loja-promo-card-dark .loja-kicker::before {
    opacity: 0.26;
}

.loja-promo-card-light {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
        var(--plt-paper);
}

.loja-promo-card-image {
    background:
        linear-gradient(0deg, rgba(17, 19, 23, 0.56), rgba(17, 19, 23, 0.08)),
        var(--promo-image, linear-gradient(180deg, rgba(72, 102, 200, 0.32), rgba(17, 19, 23, 0.8)));
    background-position: center;
    background-size: cover;
    color: var(--plt-white);
}

.loja-promo-card-image .loja-kicker,
.loja-promo-card-image p {
    color: rgba(255, 255, 255, 0.82);
}

.loja-promo-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 19, 23, 0.05), rgba(17, 19, 23, 0.58));
}

.shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.shop-category-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding: 10px 18px 10px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(17, 19, 23, 0.06);
}

.shop-category-chip span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
}

.shop-category-chip-img {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.loja-pitch {
    text-align: center;
}

.loja-pitch .loja-kicker,
.loja-pitch p {
    justify-content: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.loja-pitch .loja-btn {
    margin-top: 24px;
}

.loja-footer {
    padding-bottom: 28px;
}

.loja-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid var(--plt-line);
}

.loja-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.loja-footer-brand strong {
    display: block;
}

.loja-footer-brand small {
    display: block;
    margin-top: 4px;
    color: var(--plt-ink-soft);
}

.loja-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--plt-ink-soft);
}

.loja-footer-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--plt-ink-soft);
}

.loja-page-head {
    padding: 72px 0 20px;
}

.loja-page-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.loja-two-col,
.loja-contact-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.loja-two-col > div,
.loja-contact-card {
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--plt-shadow-sm);
}

.loja-two-col h2,
.loja-contact-card h3 {
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.loja-two-col p,
.loja-contact-card p {
    margin: 12px 0 0;
    color: var(--plt-ink-soft);
}

.loja-contact-card-quiet {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56)),
        var(--plt-paper);
}

.shop-listing-hero {
    padding: 72px 0 28px;
}

.shop-listing-hero-cover {
    position: relative;
    overflow: hidden;
}

.shop-listing-hero-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 19, 23, 0.56), rgba(17, 19, 23, 0.36)),
        var(--shop-cover);
    background-size: cover;
    background-position: center;
}

.shop-listing-hero-cover .loja-container {
    position: relative;
    z-index: 2;
    color: var(--plt-white);
}

.shop-listing-hero-cover .loja-kicker,
.shop-listing-hero-cover .shop-listing-desc,
.shop-listing-hero-cover .shop-breadcrumb {
    color: rgba(255, 255, 255, 0.8);
}

.shop-listing-hero-cover .loja-kicker::before {
    opacity: 0.24;
}

.shop-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--plt-muted);
    font-size: 0.88rem;
}

.shop-pdp {
    padding: 72px 0 24px;
}

.shop-pdp-inner {
    display: block;
}

.shop-pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 30px;
    align-items: start;
    margin-top: 20px;
}

.shop-pdp-main {
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46)),
        var(--plt-paper);
    box-shadow: var(--plt-shadow-sm);
    aspect-ratio: 1 / 1.05;
}

.shop-pdp-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-pdp-main-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plt-muted);
    font-size: 1.1rem;
}

.shop-pdp-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.shop-pdp-thumb {
    width: 88px;
    height: 88px;
    border: 1px solid var(--plt-line);
    border-radius: 22px;
    overflow: hidden;
    padding: 0;
    background: rgba(255, 255, 255, 0.68);
    cursor: pointer;
}

.shop-pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-pdp-thumb.is-active {
    border-color: rgba(33, 48, 112, 0.35);
    box-shadow: 0 0 0 4px rgba(33, 48, 112, 0.08);
}

.shop-pdp-info {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--plt-shadow-sm);
}

.shop-pdp-price {
    margin-top: 22px;
}

.shop-pdp-price strong {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.shop-pdp-price-old {
    display: inline-block;
    margin-right: 10px;
    color: var(--plt-muted);
    text-decoration: line-through;
}

.shop-pdp-price-soon {
    color: var(--plt-success);
    font-weight: 700;
}

.shop-pdp-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.shop-pdp-description {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--plt-line);
}

.shop-pdp-description h2 {
    margin: 0;
    font-size: 1.1rem;
}

.shop-pdp-collections {
    margin-top: 28px;
}

.shop-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
}

@media (max-width: 1100px) {
    .loja-hero-grid,
    .shop-pdp-grid,
    .loja-footer-inner {
        grid-template-columns: 1fr;
    }

    .loja-hero-copyblock {
        padding-top: 30px;
    }

    .loja-hero-stage-frame {
        min-height: 500px;
    }

    .shop-grid-home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .loja-promo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .loja-promo-card:first-child {
        grid-row: auto;
    }

    .loja-two-col,
    .loja-contact-grid {
        grid-template-columns: 1fr;
    }

    .loja-footer-nav,
    .loja-footer-copy {
        justify-content: flex-start;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    :root {
        --container-pad: 18px;
    }

    .loja-header {
        padding-top: 10px;
    }

    .loja-header-inner {
        border-radius: 22px;
        gap: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .loja-header-tools {
        width: 100%;
        justify-content: space-between;
    }

    .loja-search {
        min-width: 0;
        max-width: 100%;
    }

    .loja-link-institucional {
        text-align: left;
    }

    .loja-hero {
        padding-top: 34px;
    }

    .loja-hero-title {
        font-size: clamp(2.9rem, 12vw, 4.3rem);
        max-width: none;
    }

    .loja-hero-stage-frame {
        min-height: 420px;
        padding: 22px;
    }

    .shop-grid-home {
        grid-template-columns: 1fr;
    }

    .loja-section,
    .loja-page-head,
    .shop-listing-hero,
    .shop-pdp {
        padding-top: 58px;
        padding-bottom: 22px;
    }

    .shop-pdp-info,
    .loja-two-col > div,
    .loja-contact-card {
        padding: 24px;
    }
}
