/* =========================================================================
   Guiga Moreno Semijoias — Camada de design moderna
   Carregada por último no bundle ~/Content/css, sobrescreve bootstrap.css
   e style.css sem precisar removê-los (views antigas continuam funcionando).
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ---------------------------------------------------------------------- */
:root {
    /* Marca (extraída da logomarca) */
    --gm-pink: #ce2082;
    --gm-pink-600: #b31a70;
    --gm-pink-700: #8f145a;
    --gm-pink-050: #fdeef6;
    --gm-pink-100: #f9d9ea;

    --gm-gold: #c9a46a;
    --gm-gold-soft: #efe0c9;

    --gm-ink: #2b2b2a;
    --gm-ink-2: #4a4a48;
    --gm-muted: #77776f;
    --gm-faint: #9c9c95;

    --gm-bg: #ffffff;
    --gm-cream: #fbf7f4;
    --gm-blush: #fdf4f8;
    --gm-line: rgba(43, 43, 42, .10);
    --gm-line-strong: rgba(43, 43, 42, .18);

    /* Tipografia */
    --gm-serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
    --gm-sans: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Formas */
    --gm-radius: 14px;
    --gm-radius-lg: 24px;
    --gm-radius-pill: 999px;

    /* Sombras */
    --gm-shadow-sm: 0 1px 2px rgba(43, 43, 42, .06), 0 2px 8px rgba(43, 43, 42, .05);
    --gm-shadow: 0 4px 12px rgba(43, 43, 42, .07), 0 14px 34px rgba(43, 43, 42, .07);
    --gm-shadow-lg: 0 10px 24px rgba(43, 43, 42, .09), 0 30px 60px rgba(43, 43, 42, .10);
    --gm-shadow-pink: 0 8px 20px rgba(206, 32, 130, .26);

    /* Ritmo */
    --gm-shell: 1180px;
    --gm-gutter: 24px;
    --gm-header-h: 78px;

    --gm-ease: cubic-bezier(.22, .61, .36, 1);
}

/* -------------------------------------------------------------------------
   2. Base
   ---------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

html, body {
    font-family: var(--gm-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gm-ink-2);
    background: var(--gm-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

img { max-width: 100%; height: auto; }

/* Ícones inline: todos trazem width/height no próprio SVG, então nunca caem no
   tamanho padrão de 300x150 se a folha de estilo demorar a carregar. As regras
   por componente abaixo apenas refinam esse tamanho. */
svg { vertical-align: middle; flex: none; }

a {
    color: var(--gm-pink);
    text-decoration: none;
    transition: color .25s var(--gm-ease);
}

a:hover, a:focus { color: var(--gm-pink-600); text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gm-serif);
    color: var(--gm-ink);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gm-pink-100); color: var(--gm-pink-700); }

:focus-visible {
    outline: 2px solid var(--gm-pink);
    outline-offset: 3px;
    border-radius: 4px;
}

.gm-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--gm-pink);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 var(--gm-radius) 0;
    font-weight: 600;
}
.gm-skip:focus { left: 0; color: #fff; }

/* -------------------------------------------------------------------------
   3. Layout utilitário
   ---------------------------------------------------------------------- */
.gm-shell {
    width: 100%;
    max-width: var(--gm-shell);
    margin: 0 auto;
    padding-left: var(--gm-gutter);
    padding-right: var(--gm-gutter);
}

.gm-shell--narrow { max-width: 840px; }

.gm-main { flex: 1 0 auto; }

.gm-section { padding: 84px 0; }
.gm-section--tight { padding: 56px 0; }
.gm-section--cream { background: var(--gm-cream); }
.gm-section--blush { background: var(--gm-blush); }

.gm-section__head {
    max-width: 660px;
    margin: 0 auto 52px;
    text-align: center;
}

.gm-section__head--left { margin-left: 0; text-align: left; }

.gm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--gm-sans);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gm-pink);
    margin-bottom: 16px;
}

.gm-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: .55;
}

.gm-section__head--center .gm-eyebrow::after,
.gm-section__head:not(.gm-section__head--left) .gm-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: .55;
}

.gm-title {
    font-size: clamp(1.85rem, 1.2rem + 2.1vw, 2.9rem);
    margin-bottom: 18px;
}

.gm-title em {
    font-style: italic;
    color: var(--gm-pink);
}

.gm-lead {
    font-size: 1.075rem;
    color: var(--gm-muted);
    line-height: 1.75;
}

.gm-center { text-align: center; }

/* -------------------------------------------------------------------------
   4. Botões
   ---------------------------------------------------------------------- */
.gm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--gm-sans);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1;
    padding: 16px 30px;
    border: 1px solid transparent;
    border-radius: var(--gm-radius-pill);
    cursor: pointer;
    text-align: center;
    transition: transform .25s var(--gm-ease), box-shadow .25s var(--gm-ease),
                background-color .25s var(--gm-ease), color .25s var(--gm-ease),
                border-color .25s var(--gm-ease);
}

.gm-btn svg { width: 18px; height: 18px; flex: none; }

.gm-btn:hover, .gm-btn:focus { transform: translateY(-2px); text-decoration: none; }
.gm-btn:active { transform: translateY(0); }

.gm-btn--primary {
    background: var(--gm-pink);
    color: #fff;
    box-shadow: var(--gm-shadow-pink);
}
.gm-btn--primary:hover, .gm-btn--primary:focus {
    background: var(--gm-pink-600);
    color: #fff;
    box-shadow: 0 12px 28px rgba(206, 32, 130, .34);
}

.gm-btn--ghost {
    background: transparent;
    color: var(--gm-ink);
    border-color: var(--gm-line-strong);
}
.gm-btn--ghost:hover, .gm-btn--ghost:focus {
    border-color: var(--gm-pink);
    color: var(--gm-pink);
    background: var(--gm-pink-050);
}

.gm-btn--light {
    background: #fff;
    color: var(--gm-pink);
    box-shadow: var(--gm-shadow);
}
.gm-btn--light:hover, .gm-btn--light:focus { color: var(--gm-pink-600); }

.gm-btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
}
.gm-btn--outline-light:hover, .gm-btn--outline-light:focus {
    background: rgba(255, 255, 255, .14);
    border-color: #fff;
    color: #fff;
}

.gm-btn--whats {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, .3);
}
.gm-btn--whats:hover, .gm-btn--whats:focus { background: #1fb757; color: #fff; }

.gm-btn--block { width: 100%; }
.gm-btn--sm { padding: 12px 22px; font-size: .875rem; }

.gm-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.gm-btn-row--center { justify-content: center; }

/* Link com seta */
.gm-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--gm-pink);
}
.gm-link svg { width: 16px; height: 16px; transition: transform .25s var(--gm-ease); }
.gm-link:hover svg { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   5. Barra superior + Cabeçalho
   ---------------------------------------------------------------------- */
.gm-topbar {
    background: var(--gm-ink);
    color: rgba(255, 255, 255, .8);
    font-size: .8rem;
    letter-spacing: .02em;
}

.gm-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 40px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.gm-topbar__list {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.gm-topbar__list a,
.gm-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .8);
}
.gm-topbar__list a:hover { color: #fff; }
.gm-topbar svg { width: 15px; height: 15px; opacity: .85; flex: none; }

.gm-topbar__socials { display: flex; align-items: center; gap: 8px; }

.gm-topbar__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}
.gm-topbar__socials a:hover { background: var(--gm-pink); }
.gm-topbar__socials svg { width: 14px; height: 14px; opacity: 1; }

.gm-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .88);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--gm-line);
    transition: box-shadow .3s var(--gm-ease), background-color .3s var(--gm-ease);
}

.gm-header.is-stuck {
    box-shadow: 0 6px 26px rgba(43, 43, 42, .09);
    background: rgba(255, 255, 255, .96);
}

.gm-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--gm-header-h);
}

.gm-logo { display: inline-flex; align-items: center; flex: none; }
.gm-logo img {
    height: 46px;
    width: auto;
    display: block;
    transition: height .3s var(--gm-ease);
}
.gm-header.is-stuck .gm-logo img { height: 40px; }

.gm-header__actions { display: flex; align-items: center; gap: 12px; }

.gm-header__cta { display: none; }

/* Ícone/contador do carrinho */
.gm-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--gm-ink);
    background: transparent;
    transition: background-color .25s var(--gm-ease), color .25s var(--gm-ease);
}
.gm-cart:hover { background: var(--gm-pink-050); color: var(--gm-pink); }
.gm-cart svg { width: 21px; height: 21px; }
.gm-cart__count {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: var(--gm-radius-pill);
    background: var(--gm-pink);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

/* Botão hambúrguer */
.gm-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 11px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.gm-burger span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: var(--gm-ink);
    transition: transform .3s var(--gm-ease), opacity .2s linear;
}
.gm-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gm-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gm-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   6. Navegação
   ---------------------------------------------------------------------- */
.gm-nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gm-nav__list > li > a {
    position: relative;
    display: block;
    padding: 10px 16px;
    font-size: .93rem;
    font-weight: 500;
    color: var(--gm-ink-2);
    white-space: nowrap;
}

.gm-nav__list > li > a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 1.5px;
    background: var(--gm-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--gm-ease);
}

.gm-nav__list > li > a:hover,
.gm-nav__list > li.is-active > a { color: var(--gm-pink); }
.gm-nav__list > li > a:hover::after,
.gm-nav__list > li.is-active > a::after { transform: scaleX(1); }

/* Submenu */
.gm-nav__list li.has-sub { position: relative; }

.gm-subnav {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--gm-line);
    border-radius: var(--gm-radius);
    box-shadow: var(--gm-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s var(--gm-ease), transform .22s var(--gm-ease), visibility .22s;
}

.gm-nav__list li.has-sub:hover > .gm-subnav,
.gm-nav__list li.has-sub:focus-within > .gm-subnav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gm-subnav a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: .9rem;
    color: var(--gm-ink-2);
}
.gm-subnav a:hover { background: var(--gm-pink-050); color: var(--gm-pink); }

/* CTA exibido apenas dentro do drawer mobile */
.gm-nav__mobile-cta { display: none; }

/* Drawer mobile */
/* z-index abaixo do .gm-header (900) de propósito: o drawer é filho do header,
   então vive no contexto de empilhamento dele. Se o backdrop ficasse acima de
   900, cobriria o próprio menu. */
.gm-nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(43, 43, 42, .42);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--gm-ease), visibility .3s;
    z-index: 890;
}
body.gm-nav-open .gm-nav__backdrop { opacity: 1; visibility: visible; }
body.gm-nav-open { overflow: hidden; }

/* -------------------------------------------------------------------------
   7. Hero
   ---------------------------------------------------------------------- */
.gm-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1100px 520px at 88% -8%, var(--gm-pink-050) 0%, rgba(253, 238, 246, 0) 62%),
        linear-gradient(180deg, #fff 0%, var(--gm-cream) 100%);
    padding: 72px 0 84px;
}

.gm-hero::before,
.gm-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.gm-hero::before {
    width: 460px;
    height: 460px;
    right: -140px;
    top: -160px;
    border: 1px solid rgba(206, 32, 130, .16);
}

.gm-hero::after {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: -130px;
    border: 1px solid rgba(201, 164, 106, .3);
}

.gm-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: center;
}

.gm-hero__title {
    font-size: clamp(2.15rem, 1.2rem + 3.3vw, 3.7rem);
    line-height: 1.08;
    margin-bottom: 20px;
}

.gm-hero__title em { font-style: italic; color: var(--gm-pink); }

.gm-hero__lead {
    font-size: 1.12rem;
    color: var(--gm-muted);
    max-width: 30em;
    margin-bottom: 32px;
}

.gm-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 40px;
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid var(--gm-line);
}

.gm-stat__value {
    display: block;
    font-family: var(--gm-serif);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--gm-pink);
    line-height: 1.1;
}

.gm-stat__label {
    display: block;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gm-faint);
    margin-top: 4px;
}

/* Moldura da imagem */
.gm-hero__media { position: relative; }

.gm-frame {
    position: relative;
    border-radius: var(--gm-radius-lg);
    overflow: hidden;
    box-shadow: var(--gm-shadow-lg);
    background: #fff;
}

.gm-frame img { display: block; width: 100%; }

.gm-frame--outlined::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: calc(var(--gm-radius-lg) - 8px);
    pointer-events: none;
}

.gm-hero__badge {
    position: absolute;
    left: -26px;
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px 14px 16px;
    background: #fff;
    border-radius: var(--gm-radius-pill);
    box-shadow: var(--gm-shadow);
}

.gm-hero__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gm-pink-050);
    color: var(--gm-pink);
    flex: none;
}
.gm-hero__badge-icon svg { width: 20px; height: 20px; }

.gm-hero__badge-text strong {
    display: block;
    font-size: .92rem;
    color: var(--gm-ink);
    line-height: 1.25;
}
.gm-hero__badge-text span {
    font-size: .78rem;
    color: var(--gm-faint);
}

/* -------------------------------------------------------------------------
   8. Cabeçalho de página interna
   ---------------------------------------------------------------------- */
.gm-pagehead {
    position: relative;
    padding: 58px 0 48px;
    background:
        radial-gradient(760px 320px at 78% 0%, var(--gm-pink-050) 0%, rgba(253, 238, 246, 0) 68%),
        var(--gm-cream);
    border-bottom: 1px solid var(--gm-line);
    text-align: center;
}

.gm-pagehead__title {
    font-size: clamp(1.85rem, 1.2rem + 2vw, 2.75rem);
    margin-bottom: 12px;
}

.gm-pagehead__lead {
    max-width: 640px;
    margin: 0 auto;
    color: var(--gm-muted);
}

.gm-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    font-size: .82rem;
    color: var(--gm-faint);
}
.gm-breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .6; }
.gm-breadcrumb a { color: var(--gm-muted); }
.gm-breadcrumb a:hover { color: var(--gm-pink); }

/* -------------------------------------------------------------------------
   9. Grades e cartões
   ---------------------------------------------------------------------- */
.gm-grid { display: grid; gap: 26px; }
.gm-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gm-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gm-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gm-card {
    position: relative;
    padding: 34px 30px;
    background: #fff;
    border: 1px solid var(--gm-line);
    border-radius: var(--gm-radius);
    box-shadow: var(--gm-shadow-sm);
    transition: transform .3s var(--gm-ease), box-shadow .3s var(--gm-ease), border-color .3s var(--gm-ease);
}

.gm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gm-shadow);
    border-color: var(--gm-pink-100);
}

.gm-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gm-pink-050), var(--gm-pink-100));
    color: var(--gm-pink);
}
.gm-card__icon svg { width: 25px; height: 25px; }

.gm-card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.gm-card__text {
    font-size: .95rem;
    color: var(--gm-muted);
    margin: 0;
}

/* Passos numerados */
.gm-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    counter-reset: gmstep;
}

.gm-step {
    position: relative;
    padding: 36px 30px 32px;
    background: #fff;
    border: 1px solid var(--gm-line);
    border-radius: var(--gm-radius);
    box-shadow: var(--gm-shadow-sm);
}

.gm-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--gm-pink);
    color: #fff;
    font-family: var(--gm-serif);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: var(--gm-shadow-pink);
}

.gm-step__title { font-size: 1.15rem; margin-bottom: 10px; }
.gm-step__text { font-size: .95rem; color: var(--gm-muted); margin: 0; }

/* Lista com marcador de check */
.gm-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.gm-checklist li {
    position: relative;
    padding-left: 36px;
    color: var(--gm-ink-2);
}

.gm-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gm-pink-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ce2082' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}

.gm-checklist--strong li { font-weight: 500; color: var(--gm-ink); }

/* Bloco de duas colunas texto + imagem */
.gm-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.gm-split--media-first .gm-split__media { order: -1; }

/* Faixa de destaque / CTA */
.gm-cta {
    position: relative;
    overflow: hidden;
    padding: 74px 0;
    background: linear-gradient(120deg, var(--gm-pink-700) 0%, var(--gm-pink) 55%, #e0559f 100%);
    color: #fff;
    text-align: center;
}

.gm-cta::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: -180px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
}

.gm-cta::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: -140px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
}

.gm-cta__inner { position: relative; z-index: 1; }
.gm-cta__title {
    color: #fff;
    font-size: clamp(1.8rem, 1.2rem + 2vw, 2.7rem);
    margin-bottom: 16px;
}
.gm-cta__text {
    max-width: 620px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, .92);
    font-size: 1.05rem;
}

/* Faixa de selos de qualidade */
.gm-marks {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    text-align: center;
}

.gm-mark__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    border-radius: 50%;
    border: 1px solid var(--gm-gold-soft);
    color: var(--gm-gold);
    background: #fff;
}
.gm-mark__icon svg { width: 24px; height: 24px; }
.gm-mark__title { font-size: 1.02rem; margin-bottom: 6px; }
.gm-mark__text { font-size: .88rem; color: var(--gm-muted); margin: 0; }

/* -------------------------------------------------------------------------
   10. Prosa (páginas institucionais)
   ---------------------------------------------------------------------- */
.gm-prose {
    max-width: 780px;
    margin: 0 auto;
    color: var(--gm-ink-2);
    font-size: 1.02rem;
    line-height: 1.8;
}

.gm-prose > * + * { margin-top: 1.15em; }

.gm-prose h2 {
    font-size: 1.6rem;
    margin-top: 2em;
    margin-bottom: .2em;
    padding-bottom: .35em;
    border-bottom: 1px solid var(--gm-line);
}

.gm-prose h3 {
    font-size: 1.22rem;
    color: var(--gm-pink);
    margin-top: 1.8em;
}

.gm-prose p { margin-bottom: 0; }
.gm-prose strong { color: var(--gm-ink); font-weight: 600; }

.gm-prose ul, .gm-prose ol { padding-left: 22px; }
.gm-prose li { margin-bottom: .5em; }
.gm-prose li::marker { color: var(--gm-pink); }

.gm-prose img { border-radius: var(--gm-radius); }

.gm-prose blockquote,
.gm-note {
    margin: 1.6em 0;
    padding: 20px 24px;
    background: var(--gm-blush);
    border-left: 3px solid var(--gm-pink);
    border-radius: 0 var(--gm-radius) var(--gm-radius) 0;
    color: var(--gm-ink-2);
}

/* Cartão de informação (endereço, atendimento…) */
.gm-info-card {
    display: flex;
    gap: 18px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--gm-line);
    border-radius: var(--gm-radius);
    box-shadow: var(--gm-shadow-sm);
    transition: transform .3s var(--gm-ease), box-shadow .3s var(--gm-ease);
}
.gm-info-card:hover { transform: translateY(-4px); box-shadow: var(--gm-shadow); }

.gm-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 14px;
    background: var(--gm-pink-050);
    color: var(--gm-pink);
}
.gm-info-card__icon svg { width: 21px; height: 21px; }

.gm-info-card__label {
    font-family: var(--gm-sans);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gm-faint);
    margin-bottom: 4px;
}

.gm-info-card__value {
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--gm-ink);
    word-break: break-word;
}
.gm-info-card__value a { color: var(--gm-ink); }
.gm-info-card__value a:hover { color: var(--gm-pink); }
.gm-info-card__hint { font-size: .86rem; color: var(--gm-muted); margin: 4px 0 0; }

/* -------------------------------------------------------------------------
   11. Formulários
   ---------------------------------------------------------------------- */
.gm-form-card {
    padding: 40px;
    background: #fff;
    border: 1px solid var(--gm-line);
    border-radius: var(--gm-radius-lg);
    box-shadow: var(--gm-shadow);
}

.gm-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.gm-field { display: flex; flex-direction: column; gap: 8px; }
.gm-field--full { grid-column: 1 / -1; }

.gm-field label {
    font-size: .86rem;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--gm-ink);
    margin: 0;
}

.gm-field .gm-field__hint {
    font-size: .8rem;
    font-weight: 400;
    color: var(--gm-faint);
}

.gm-field input[type="text"],
.gm-field input[type="email"],
.gm-field input[type="tel"],
.gm-field input[type="number"],
.gm-field input[type="password"],
.gm-field input[type="date"],
.gm-field select,
.gm-field textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--gm-sans);
    font-size: .95rem;
    line-height: 1.4;
    color: var(--gm-ink);
    background: var(--gm-cream);
    border: 1px solid var(--gm-line);
    border-radius: 10px;
    box-shadow: none;
    transition: border-color .25s var(--gm-ease), box-shadow .25s var(--gm-ease), background-color .25s var(--gm-ease);
}

/* Altura única para campos de uma linha. O height explícito também anula o
   height:34px que o .form-control do bootstrap impõe aos <select>. */
.gm-field input[type="text"],
.gm-field input[type="email"],
.gm-field input[type="tel"],
.gm-field input[type="number"],
.gm-field input[type="password"],
.gm-field input[type="date"],
.gm-field select {
    height: 52px;
}

/* Seta própria no lugar da nativa, para o combo combinar com os demais campos */
.gm-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 44px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2377776f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

.gm-field select::-ms-expand { display: none; }

.gm-field textarea { min-height: 140px; resize: vertical; }

.gm-field input:focus,
.gm-field select:focus,
.gm-field textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--gm-pink);
    box-shadow: 0 0 0 4px var(--gm-pink-050);
}

.gm-field input::placeholder,
.gm-field textarea::placeholder { color: var(--gm-faint); }

/* Opções de rádio.
   Os inputs são filhos DIRETOS de .gm-field, ao lado do rótulo principal —
   é assim que validarForm() (Scripts/formulario.js) encontra o label para
   destacar em vermelho. Não envolva os rádios em outro elemento. */
.gm-field--choice { display: block; }

.gm-field--choice > label:first-of-type {
    display: block;
    margin-bottom: 12px;
}

.gm-field--choice input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
    vertical-align: -4px;
    accent-color: var(--gm-pink);
    cursor: pointer;
}

.gm-field--choice .gm-choice {
    display: inline-block;
    margin: 0 30px 0 0;
    font-size: .95rem;
    font-weight: 400;
    color: var(--gm-ink-2);
    cursor: pointer;
}

/* Blocos temáticos dentro de um formulário longo */
.gm-formsection + .gm-formsection {
    margin-top: 38px;
    padding-top: 34px;
    border-top: 1px solid var(--gm-line);
}

.gm-formsection__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--gm-sans);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gm-pink);
    margin-bottom: 22px;
}

.gm-formsection__title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--gm-line);
}

.gm-form__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--gm-line);
}

.gm-form__note { font-size: .86rem; color: var(--gm-faint); margin: 0; }

/* Botão de envio nativo dos formulários existentes */
.gm-form input[type="submit"],
.gm-form-card input[type="submit"],
.gm-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    font-family: var(--gm-sans);
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    background: var(--gm-pink);
    border: 0;
    border-radius: var(--gm-radius-pill);
    box-shadow: var(--gm-shadow-pink);
    cursor: pointer;
    transition: transform .25s var(--gm-ease), background-color .25s var(--gm-ease), box-shadow .25s var(--gm-ease);
}

.gm-form input[type="submit"]:hover,
.gm-form-card input[type="submit"]:hover,
.gm-submit:hover {
    background: var(--gm-pink-600);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(206, 32, 130, .34);
}

/* -------------------------------------------------------------------------
   12. Produtos
   ---------------------------------------------------------------------- */
.gm-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.gm-product {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--gm-line);
    border-radius: var(--gm-radius);
    overflow: hidden;
    transition: transform .3s var(--gm-ease), box-shadow .3s var(--gm-ease), border-color .3s var(--gm-ease);
}

.gm-product:hover {
    transform: translateY(-6px);
    box-shadow: var(--gm-shadow);
    border-color: var(--gm-pink-100);
}

.gm-product__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--gm-cream);
    overflow: hidden;
}

.gm-product__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    transition: transform .5s var(--gm-ease);
}

.gm-product:hover .gm-product__media img { transform: scale(1.06); }

.gm-product__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: var(--gm-radius-pill);
    background: var(--gm-pink);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gm-product__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    padding: 20px 20px 22px;
    text-align: center;
}

.gm-product__name {
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
    min-height: 2.7em;
}
.gm-product__name a { color: var(--gm-ink); }
.gm-product__name a:hover { color: var(--gm-pink); }

.gm-product__prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: auto;
}

.gm-price-old {
    font-size: .86rem;
    color: var(--gm-faint);
    text-decoration: line-through;
}

.gm-price {
    font-family: var(--gm-serif);
    font-size: 1.42rem;
    font-weight: 600;
    color: var(--gm-pink);
    line-height: 1.2;
}

.gm-product__btn {
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: var(--gm-radius-pill);
    background: var(--gm-cream);
    color: var(--gm-ink);
    font-size: .88rem;
    font-weight: 600;
    border: 1px solid var(--gm-line);
    transition: background-color .25s var(--gm-ease), color .25s var(--gm-ease), border-color .25s var(--gm-ease);
}
.gm-product__btn:hover {
    background: var(--gm-pink);
    border-color: var(--gm-pink);
    color: #fff;
}

/* Busca */
.gm-search {
    display: flex;
    gap: 10px;
    max-width: 620px;
    margin: 0 0 34px;
}

.gm-search input[type="text"] {
    flex: 1;
    height: 52px;
    padding: 0 20px;
    font-size: .98rem;
    color: var(--gm-ink);
    background: var(--gm-cream);
    border: 1px solid var(--gm-line);
    border-radius: var(--gm-radius-pill);
    transition: border-color .25s var(--gm-ease), box-shadow .25s var(--gm-ease), background-color .25s var(--gm-ease);
}
.gm-search input[type="text"]:focus {
    outline: none;
    background: #fff;
    border-color: var(--gm-pink);
    box-shadow: 0 0 0 4px var(--gm-pink-050);
}

.gm-search__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: none;
    border-radius: 50%;
    background: var(--gm-pink);
    color: #fff;
    box-shadow: var(--gm-shadow-pink);
    transition: background-color .25s var(--gm-ease), transform .25s var(--gm-ease);
}
.gm-search__btn:hover { background: var(--gm-pink-600); color: #fff; transform: translateY(-2px); }
.gm-search__btn svg { width: 20px; height: 20px; }

/* Layout com barra lateral */
.gm-shop {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}

.gm-sidebar {
    position: sticky;
    top: calc(var(--gm-header-h) + 20px);
    padding: 26px;
    background: var(--gm-cream);
    border: 1px solid var(--gm-line);
    border-radius: var(--gm-radius);
}

.gm-sidebar h4 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gm-pink);
    font-family: var(--gm-sans);
    margin: 0 0 12px;
}

.gm-sidebar section + section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gm-line);
}

.gm-sidebar label {
    display: block;
    font-weight: 400;
    margin: 0;
}

.gm-sidebar a {
    display: block;
    padding: 7px 0;
    font-size: .93rem;
    color: var(--gm-ink-2);
}
.gm-sidebar a:hover { color: var(--gm-pink); padding-left: 5px; }

/* Detalhe do produto */
.gm-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
}

/* O carrossel (#slideshow) é montado pelo craftyslide, que define tamanhos
   inline — aqui só damos a moldura ao redor. */
.gm-detail__gallery {
    display: flex;
    justify-content: center;
    padding: 24px;
    border-radius: var(--gm-radius-lg);
    background: var(--gm-cream);
    border: 1px solid var(--gm-line);
}
.gm-detail__gallery ul { list-style: none; margin: 0; padding: 0; }
.gm-detail__gallery img { max-width: 100%; display: block; cursor: zoom-in; }

.gm-detail__title { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem); margin-bottom: 12px; }

.gm-detail__availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    color: #1f9d55;
    margin-bottom: 20px;
}
.gm-detail__availability::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.gm-detail__price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gm-line);
}
.gm-detail__price .gm-price { font-size: 2.1rem; }

.gm-detail__section-title {
    font-family: var(--gm-sans);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gm-faint);
    margin-bottom: 10px;
}

.gm-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.gm-sizes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    padding: 10px 16px;
    border: 1px solid var(--gm-line-strong);
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gm-ink);
    cursor: pointer;
    transition: all .22s var(--gm-ease);
}
.gm-sizes a:hover { border-color: var(--gm-pink); color: var(--gm-pink); }

/* .tamanhoSelecionado é aplicada por Scripts/detalhes.js — não renomear. */
.gm-sizes a.tamanhoSelecionado {
    background: var(--gm-pink);
    border-color: var(--gm-pink);
    color: #fff;
    box-shadow: var(--gm-shadow-pink);
}

/* Paginação */
.gm-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 48px 0 0;
    padding: 0;
}

.gm-pagination li a,
.gm-pagination li.active a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--gm-line);
    border-radius: 10px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--gm-ink-2);
    background: #fff;
    transition: all .22s var(--gm-ease);
}
.gm-pagination li a:hover { border-color: var(--gm-pink); color: var(--gm-pink); }
.gm-pagination li.active a {
    background: var(--gm-pink);
    border-color: var(--gm-pink);
    color: #fff;
    cursor: default;
}

/* -------------------------------------------------------------------------
   13. Carrinho
   ---------------------------------------------------------------------- */
.gm-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
}

.gm-cart-list {
    background: #fff;
    border: 1px solid var(--gm-line);
    border-radius: var(--gm-radius);
    overflow: hidden;
}

.gm-cart-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 22px;
}
.gm-cart-item + .gm-cart-item { border-top: 1px solid var(--gm-line); }

.gm-cart-item__thumb {
    width: 92px;
    height: 92px;
    border-radius: 12px;
    background: var(--gm-cream);
    overflow: hidden;
}
.gm-cart-item__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.gm-cart-item__name { font-size: 1.05rem; margin-bottom: 6px; }
.gm-cart-item__name a { color: var(--gm-ink); }
.gm-cart-item__name a:hover { color: var(--gm-pink); }
.gm-cart-item__meta { font-size: .86rem; color: var(--gm-faint); }

.gm-cart-item__controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gm-cart-item input.quantidade,
.gm-qty {
    width: 70px;
    height: 42px;
    padding: 0 12px;
    text-align: center;
    font-size: .95rem;
    color: var(--gm-ink);
    background: var(--gm-cream);
    border: 1px solid var(--gm-line);
    border-radius: 10px;
}

.gm-cart-item__total {
    font-family: var(--gm-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gm-ink);
    white-space: nowrap;
}

.gm-remove {
    font-size: .84rem;
    color: var(--gm-faint);
    border-bottom: 1px solid transparent;
}
.gm-remove:hover { color: #d33; border-bottom-color: currentColor; }

.gm-summary {
    position: sticky;
    top: calc(var(--gm-header-h) + 20px);
    padding: 28px;
    background: var(--gm-cream);
    border: 1px solid var(--gm-line);
    border-radius: var(--gm-radius);
}

.gm-summary h3 { font-size: 1.25rem; margin-bottom: 20px; }

.gm-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    font-size: .95rem;
    color: var(--gm-ink-2);
}

.gm-summary__row--total {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--gm-line-strong);
    font-size: 1.05rem;
    color: var(--gm-ink);
    font-weight: 600;
}
.gm-summary__row--total strong {
    font-family: var(--gm-serif);
    font-size: 1.55rem;
    color: var(--gm-pink);
    font-weight: 600;
}

.gm-summary .gm-cep-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 12px 0 4px;
}

.gm-summary input.cep,
.gm-cep-row input {
    flex: 1;
    height: 42px;
    padding: 0 14px;
    text-align: left;
    font-size: .95rem;
    background: #fff;
    border: 1px solid var(--gm-line);
    border-radius: 10px;
    color: var(--gm-ink);
}

.gm-empty {
    padding: 70px 30px;
    text-align: center;
    background: var(--gm-cream);
    border: 1px dashed var(--gm-line-strong);
    border-radius: var(--gm-radius-lg);
}
.gm-empty svg { width: 54px; height: 54px; color: var(--gm-pink-100); margin-bottom: 18px; }
.gm-empty h3 { font-size: 1.4rem; margin-bottom: 10px; }
.gm-empty p { color: var(--gm-muted); margin-bottom: 24px; }

.gm-alert {
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: var(--gm-radius);
    background: #fff4f4;
    border: 1px solid #f3c9c9;
    color: #a33;
    font-size: .93rem;
}

.gm-alert strong { display: inline; }
.gm-alert a { color: inherit; text-decoration: underline; }

.gm-alert--ok {
    background: #eefaf1;
    border-color: #bfe5cb;
    color: #1f7a44;
}

/* -------------------------------------------------------------------------
   14. Rodapé
   ---------------------------------------------------------------------- */
.gm-footer {
    flex: none;
    background: var(--gm-ink);
    color: rgba(255, 255, 255, .72);
    font-size: .93rem;
    padding-top: 66px;
}

.gm-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
    gap: 44px;
    padding-bottom: 52px;
}

.gm-footer__logo {
    display: inline-block;
    margin-bottom: 20px;
    padding: 14px 18px;
    background: #fff;
    border-radius: var(--gm-radius);
}
.gm-footer__logo img { height: 40px; width: auto; display: block; }

.gm-footer__about { max-width: 34ch; line-height: 1.75; }

.gm-footer__title {
    font-family: var(--gm-sans);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.gm-footer__list { list-style: none; margin: 0; padding: 0; }
.gm-footer__list li + li { margin-top: 11px; }
.gm-footer__list a { color: rgba(255, 255, 255, .72); }
.gm-footer__list a:hover { color: #fff; padding-left: 4px; }

.gm-footer__contact { list-style: none; margin: 0; padding: 0; }
.gm-footer__contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
}
.gm-footer__contact li + li { margin-top: 14px; }
.gm-footer__contact svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--gm-pink); }
.gm-footer__contact a { color: rgba(255, 255, 255, .72); }
.gm-footer__contact a:hover { color: #fff; }

.gm-socials {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.gm-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: background-color .25s var(--gm-ease), transform .25s var(--gm-ease);
}
.gm-socials a:hover { background: var(--gm-pink); transform: translateY(-3px); color: #fff; }
.gm-socials svg { width: 18px; height: 18px; }

.gm-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .84rem;
    color: rgba(255, 255, 255, .55);
}
.gm-footer__bottom a { color: rgba(255, 255, 255, .7); }
.gm-footer__bottom a:hover { color: #fff; }

/* -------------------------------------------------------------------------
   15. Elementos flutuantes
   ---------------------------------------------------------------------- */
.gm-whats {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 26px rgba(37, 211, 102, .42);
    transition: transform .25s var(--gm-ease), box-shadow .25s var(--gm-ease);
}
.gm-whats:hover { transform: scale(1.07); color: #fff; box-shadow: 0 14px 32px rgba(37, 211, 102, .5); }
.gm-whats svg { width: 30px; height: 30px; }

.gm-whats::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .55);
    animation: gm-pulse 2.6s infinite;
}

@keyframes gm-pulse {
    0%   { transform: scale(1); opacity: .8; }
    70%  { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

.gm-totop {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 799;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gm-line);
    border-radius: 50%;
    background: #fff;
    color: var(--gm-ink);
    box-shadow: var(--gm-shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s var(--gm-ease), transform .3s var(--gm-ease), visibility .3s;
    cursor: pointer;
}
.gm-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.gm-totop:hover { color: var(--gm-pink); border-color: var(--gm-pink); }
.gm-totop svg { width: 18px; height: 18px; }

/* -------------------------------------------------------------------------
   16. Animação de entrada
   ---------------------------------------------------------------------- */
/* O estado escondido só existe quando o modern.js confirma que vai animar
   (classe gm-anim no <html>). Sem JS, com JS bloqueado ou se o observer
   falhar, o conteúdo nasce visível — nunca uma página em branco. */
.gm-reveal { transition: opacity .7s var(--gm-ease), transform .7s var(--gm-ease); }

html.gm-anim .gm-reveal {
    opacity: 0;
    transform: translateY(24px);
    will-change: opacity, transform;
}

html.gm-anim .gm-reveal.is-in { opacity: 1; transform: none; }

.gm-reveal[data-delay="1"] { transition-delay: .08s; }
.gm-reveal[data-delay="2"] { transition-delay: .16s; }
.gm-reveal[data-delay="3"] { transition-delay: .24s; }
.gm-reveal[data-delay="4"] { transition-delay: .32s; }
.gm-reveal[data-delay="5"] { transition-delay: .40s; }

/* -------------------------------------------------------------------------
   17. Responsivo
   ---------------------------------------------------------------------- */
@media (min-width: 993px) {
    .gm-header__cta { display: inline-flex; }
    .gm-burger { display: none; }
}

@media (max-width: 1100px) {
    .gm-hero__grid { gap: 44px; }
    .gm-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .gm-footer__col--contact { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
    /* Sem backdrop-filter aqui. Ele criaria um bloco de contenção e o drawer,
       que é fixed e filho do header, passaria a se posicionar em relação ao
       header em vez da janela — abrindo como uma faixa de ~80px. */
    .gm-header,
    .gm-header.is-stuck {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: #fff;
    }

    /* Mantém o botão acima do drawer para virar o "X" de fechar. */
    .gm-header__actions {
        position: relative;
        z-index: 960;
    }

    .gm-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 950;
        width: min(340px, 86vw);
        height: 100%;
        padding: 90px 26px 34px;
        background: #fff;
        box-shadow: -14px 0 44px rgba(43, 43, 42, .16);
        overflow-y: auto;
        transform: translateX(105%);
        transition: transform .34s var(--gm-ease);
    }

    body.gm-nav-open .gm-nav { transform: translateX(0); }

    .gm-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }

    .gm-nav__list > li > a {
        padding: 14px 12px;
        font-size: 1rem;
        border-bottom: 1px solid var(--gm-line);
    }
    .gm-nav__list > li > a::after { display: none; }
    .gm-nav__list > li:last-child > a { border-bottom: 0; }

    .gm-subnav {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 8px 12px;
        min-width: 0;
    }

    .gm-nav__mobile-cta { margin-top: 24px; display: block; }
    .gm-nav__mobile-cta .gm-btn { width: 100%; }

    .gm-hero { padding: 56px 0 66px; }
    .gm-hero__grid { grid-template-columns: 1fr; gap: 44px; }
    .gm-hero__media { max-width: 560px; }
    .gm-hero__badge { left: 12px; }

    .gm-split { grid-template-columns: 1fr; gap: 36px; }
    .gm-split--media-first .gm-split__media { order: 0; }

    .gm-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gm-marks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; }

    .gm-shop { grid-template-columns: 1fr; gap: 32px; }
    .gm-sidebar { position: static; }

    .gm-detail { grid-template-columns: 1fr; gap: 32px; }

    .gm-cart-layout { grid-template-columns: 1fr; }
    .gm-summary { position: static; }
}

@media (max-width: 860px) {
    .gm-section { padding: 62px 0; }
    .gm-grid--3, .gm-steps { grid-template-columns: 1fr; }
    .gm-grid--2 { grid-template-columns: 1fr; }
    .gm-topbar__inner { justify-content: center; }
    .gm-topbar__list--contact { display: none; }
    .gm-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
    .gm-footer__col--brand { grid-column: 1 / -1; }
    .gm-footer__col--contact { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    :root { --gm-gutter: 18px; }

    .gm-topbar__item { display: none; }

    .gm-section { padding: 52px 0; }
    .gm-section__head { margin-bottom: 36px; }

    .gm-card, .gm-step { padding: 26px 22px; }
    .gm-form-card { padding: 26px 20px; }
    .gm-form__grid { grid-template-columns: 1fr; gap: 18px; }

    .gm-hero__stats { gap: 20px 30px; }
    .gm-stat__value { font-size: 1.55rem; }
    .gm-hero__badge { position: static; margin-top: 18px; }

    .gm-btn { width: 100%; }
    .gm-btn-row { flex-direction: column; align-items: stretch; }
    .gm-form__footer .gm-submit { width: 100%; }

    .gm-products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .gm-product__body { padding: 14px 12px 16px; }
    .gm-product__name { font-size: .92rem; }
    .gm-price { font-size: 1.2rem; }

    .gm-cart-item { grid-template-columns: 68px minmax(0, 1fr); gap: 14px; }
    .gm-cart-item__thumb { width: 68px; height: 68px; }
    .gm-cart-item__total { grid-column: 1 / -1; text-align: right; }

    .gm-footer__grid { grid-template-columns: 1fr; }
    .gm-footer__col--brand, .gm-footer__col--contact { grid-column: auto; }
    .gm-footer__bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    html.gm-anim .gm-reveal { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------
   18. Impressão
   ---------------------------------------------------------------------- */
@media print {
    .gm-topbar, .gm-header, .gm-footer, .gm-whats, .gm-totop, .gm-cta { display: none !important; }
    .gm-reveal { opacity: 1 !important; transform: none !important; }
    body { color: #000; }
}

/* -------------------------------------------------------------------------
   19. Compatibilidade com marcação legada
   Views antigas ainda usam estas classes; aqui elas ganham o visual novo.
   ---------------------------------------------------------------------- */
.titleM {
    font-family: var(--gm-serif);
    font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem);
    color: var(--gm-ink);
    font-weight: 600;
    line-height: 1.2;
}

.titleH2 {
    font-family: var(--gm-serif);
    font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.1rem);
    color: var(--gm-ink);
    font-weight: 600;
}

.titleP { font-family: var(--gm-sans); color: var(--gm-muted); }
.titleLi { font-family: var(--gm-sans); color: var(--gm-muted); }

.text-muted { color: var(--gm-muted) !important; }

.reducedfrom {
    color: var(--gm-faint);
    text-decoration: line-through;
    font-size: .88rem;
}

.item_price, .preco { color: var(--gm-pink); font-weight: 600; }

/* Neutraliza espaçamentos herdados do tema antigo dentro do novo shell */
.gm-main .products { padding: 0; }
.gm-main .banner { background: none; padding: 0; }
