/* ================================================================
   PC STATION — SITE INSTITUCIONAL V0.3

   Direção visual:
   - fundo branco em todas as telas;
   - logo oficial centralizada;
   - títulos mais discretos e proporcionais;
   - linguagem visual próxima das artes institucionais enviadas;
   - azul como destaque, linhas finas e bastante espaço em branco;
   - navegação horizontal sem bibliotecas externas.
   ================================================================ */

:root {
    --brand-900: #061d72;
    --brand-800: #08278f;
    --brand-700: #003399;
    --brand-600: #1647d5;
    --brand-500: #2458e8;
    --brand-100: #f2f5ff;

    --ink-950: #101722;
    --ink-800: #202a38;
    --ink-700: #46505f;
    --paper: #ffffff;
    --line: rgba(0, 51, 153, 0.18);
    --line-soft: rgba(0, 51, 153, 0.08);

    --header-height: 104px;
    --controls-height: 72px;
    --content-width: 1120px;
    --ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--paper);
    color: var(--ink-950);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    min-width: 320px;
    margin: 0;
    overflow: hidden;
    background: var(--paper);
}

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

button {
    font: inherit;
}

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

p,
h1,
h2,
h3,
figure {
    margin-top: 0;
}

p {
    color: var(--ink-700);
    font-size: clamp(0.98rem, 1.18vw, 1.1rem);
    line-height: 1.62;
}

strong {
    color: var(--brand-700);
}

:focus-visible {
    outline: 3px solid #6f8cff;
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    transform: translateY(-150%);
    border-radius: 10px;
    background: var(--ink-950);
    color: #fff;
    text-decoration: none;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* ----------------------------------------------------------------
   CABEÇALHO
   ---------------------------------------------------------------- */
.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    display: grid;
    place-items: center;
    padding:
        max(16px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) 10px max(24px, env(safe-area-inset-left));
    pointer-events: none;
}

.site-header>* {
    pointer-events: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.brand img {
    width: clamp(185px, 20vw, 278px);
    height: auto;
}

/* ----------------------------------------------------------------
   ESTRUTURA HORIZONTAL
   ---------------------------------------------------------------- */
.slider {
    display: flex;
    width: 100vw;
    height: 100dvh;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
}

.slider::-webkit-scrollbar {
    display: none;
}

.panel {
    position: relative;
    flex: 0 0 100vw;
    min-width: 100vw;
    min-height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    background: var(--paper);
    padding:
        calc(var(--header-height) + 24px) max(28px, env(safe-area-inset-right)) calc(var(--controls-height) + 28px) max(28px, env(safe-area-inset-left));
}

.panel::before {
    content: none;
}

.panel--motif::after {
    content: "";
    position: absolute;
    right: -90px;
    top: 18%;
    width: 310px;
    height: 170px;
    border: 2px solid rgba(36, 88, 232, 0.18);
    border-radius: 74px;
    pointer-events: none;
}

.panel__content {
    position: relative;
    z-index: 1;
    width: min(100%, var(--content-width));
    height: 100%;
    min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 52px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--brand-700);
    font-size: clamp(0.72rem, 0.85vw, 0.82rem);
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h2 {
    max-width: 750px;
    margin-bottom: 20px;
    color: var(--ink-950);
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h3 {
    margin-bottom: 6px;
    color: var(--brand-700);
    font-size: clamp(1.02rem, 1.35vw, 1.22rem);
    line-height: 1.25;
}

.lead {
    max-width: 760px;
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.62;
}

.lead--compact {
    max-width: 650px;
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 42px;
}

.section-copy {
    max-width: 760px;
}

.section-copy--wide {
    max-width: 930px;
}

/* ----------------------------------------------------------------
   ABERTURA
   ---------------------------------------------------------------- */
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.64fr);
    align-items: center;
    gap: clamp(32px, 6vw, 78px);
}

.hero-copy {
    max-width: 720px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 24px;
    color: var(--ink-950);
    font-size: clamp(1.95rem, 3.25vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.hero-title span {
    display: inline-block;
}

.hero-title__highlight {
    padding: 7px 14px 9px;
    border-radius: 9px;
    background: var(--brand-700);
    color: #fff;
}

.hero-title__blue {
    color: var(--brand-600);
}

.swipe-hint,
.restart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 48px;
    margin-top: 16px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(6, 29, 114, 0.08);
    color: var(--ink-950);
    cursor: pointer;
    font-size: 0.93rem;
    font-weight: 750;
    transition: transform 180ms var(--ease-fluid), box-shadow 180ms var(--ease-fluid);
}

.swipe-hint span,
.restart-button span {
    color: var(--brand-700);
    font-size: 1.25em;
}

.swipe-hint:hover,
.restart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(6, 29, 114, 0.12);
}

.circuit {
    position: relative;
    width: min(36vw, 450px);
    justify-self: end;
    color: var(--brand-700);
}

.circuit svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.circuit path,
.circuit rect,
.circuit circle {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.circuit__soft path {
    stroke-width: 2;
    opacity: 0.15;
}

.circuit__main path {
    stroke-width: 4;
    stroke-dasharray: 18 13;
    animation: circuit-flow 9s linear infinite;
}

.circuit__nodes circle {
    fill: #fff;
    stroke-width: 3;
    animation: node-pulse 2.6s ease-in-out infinite;
}

.circuit__nodes circle:nth-child(2n) {
    animation-delay: -1.3s;
}

.circuit__core {
    fill: #fff;
    stroke-width: 5;
    filter: drop-shadow(0 20px 28px rgba(6, 29, 114, 0.12));
    animation: core-float 4.8s ease-in-out infinite;
    transform-origin: center;
}

.circuit__pulse {
    stroke-width: 6;
    animation: pulse-line 2.2s ease-in-out infinite;
}

/* ----------------------------------------------------------------
   HISTÓRIA
   ---------------------------------------------------------------- */
.editorial-layout {
    justify-content: center;
}

.timeline-list {
    max-width: 920px;
    border-top: 1px solid var(--line);
}

.timeline-item {
    display: grid;
    grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
    gap: 34px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.timeline-item p {
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
   TRANSIÇÃO ENTRE TELAS
   ---------------------------------------------------------------- */
.page-dissolve {
    position: fixed;
    z-index: 25;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at 22% 38%, rgba(0, 51, 153, 0.24), transparent 28%),
        radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.98), transparent 34%),
        radial-gradient(circle at 54% 72%, rgba(22, 71, 213, 0.16), transparent 30%),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(0, 51, 153, 0.16) 45%,
            rgba(255, 255, 255, 0.96) 54%,
            rgba(0, 51, 153, 0.10) 66%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(8px) saturate(1.08);
    transform: scale(1);
}

body.is-dissolving .page-dissolve {
    animation: dissolve-wash 560ms ease both;
}

/* ----------------------------------------------------------------
   HISTÓRIA — LAYOUT INSPIRADO NA ARTE ENVIADA
   ---------------------------------------------------------------- */
.panel--story {
    padding-top: calc(var(--header-height) + 18px);
}

.story-layout {
    justify-content: center;
    align-items: center;
    max-width: 900px;
}

.story-heading {
    width: 100%;
    margin-bottom: 16px;
}

.story-title {
    margin-bottom: 0;
    text-align: left;
}

.story-title__highlight,
.story-title__line {
    display: block;
}

.story-title__highlight {
    width: fit-content;
    margin-bottom: 12px;
    padding: 9px 20px 12px;
    border-radius: 18px;
    background: var(--brand-600);
    color: #fff;
    font-size: clamp(1.7rem, 4.1vw, 3.1rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.story-title__line {
    color: var(--brand-600);
    font-size: clamp(2.35rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.story-list {
    width: 100%;
}

.story-row {
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.story-row+.story-row {
    margin-top: 16px;
}

.story-row__icon {
    display: grid;
    place-items: center;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--brand-600), var(--brand-700));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.story-row__icon svg {
    width: 64px;
    height: 64px;
}

.story-row__icon path,
.story-row__icon rect {
    fill: none;
    stroke: #fff;
    stroke-width: 3.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.story-row__icon text {
    fill: #fff;
    font-size: 17px;
    font-weight: 800;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.story-row__content {
    min-width: 0;
    padding-left: 28px;
    border-left: 2px solid rgba(0, 51, 153, 0.7);
}

.story-row__content h3 {
    margin-bottom: 4px;
    color: var(--brand-600);
    font-size: clamp(1rem, 1.7vw, 1.42rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.story-row__content p {
    margin-bottom: 0;
    max-width: 560px;
    color: #151515;
    font-size: clamp(0.96rem, 1.28vw, 1.12rem);
    line-height: 1.36;
}

.story-row__content strong {
    color: var(--brand-600);
}

.story-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    padding: 16px 28px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(16, 23, 34, 0.09);
    color: var(--brand-600);
    font-size: clamp(0.92rem, 1.25vw, 1.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.story-badge__icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--brand-600);
    font-size: 1rem;
}

.story-arrow {
    width: 120px;
    margin-top: 10px;
    color: var(--brand-600);
}

.story-arrow svg {
    width: 100%;
    height: auto;
}

.story-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ----------------------------------------------------------------
   QUEM ESTÁ POR TRÁS
   ---------------------------------------------------------------- */
/* ----------------------------------------------------------------
   LOJA FÍSICA
   ---------------------------------------------------------------- */
.store-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.7fr);
    align-items: center;
    gap: clamp(40px, 7vw, 96px);
}

.store-illustration {
    justify-self: end;
    width: min(38vw, 420px);
    color: var(--brand-700);
    text-align: center;
}

.store-illustration svg {
    width: 100%;
}

.store-illustration path {
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.store-illustration__soft {
    opacity: 0.45;
}

.store-illustration span {
    display: inline-block;
    margin-top: 6px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--brand-700);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.09em;
}

.statement {
    max-width: 710px;
    margin: 24px 0 0;
    padding: 17px 20px;
    border-left: 3px solid var(--brand-600);
    background: var(--brand-100);
    color: var(--ink-950);
    font-weight: 700;
}


/* ----------------------------------------------------------------
   ENDEREÇO DA LOJA FÍSICA
   ---------------------------------------------------------------- */
.store-address {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 720px;
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(6, 29, 114, 0.07);
    color: var(--ink-950);
    font-style: normal;
}

.store-address__icon {
    display: grid;
    flex: 0 0 42px;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-700);
    color: #fff;
}

.store-address__icon svg {
    width: 24px;
    height: 24px;
}

.store-address__icon path,
.store-address__icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.store-address__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.store-address__text span {
    color: var(--brand-700);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.store-address__text strong {
    color: var(--ink-950);
    font-size: clamp(0.92rem, 1.12vw, 1.03rem);
    line-height: 1.42;
}

.panel--store .statement {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--brand-600);
    border-radius: 0 16px 16px 0;
}

/* ----------------------------------------------------------------
   PRODUTOS
   ---------------------------------------------------------------- */
.products-content {
    justify-content: center;
}

.products-intro {
    max-width: 390px;
    margin-bottom: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    min-width: 0;
}

.product-card__image {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(145deg, #fff, var(--brand-100));
}

.product-card__image::before {
    content: "";
    position: absolute;
    width: 52%;
    aspect-ratio: 1;
    border: 1px solid rgba(0, 51, 153, 0.16);
    border-radius: 50%;
}

.product-card__image span {
    position: relative;
    z-index: 1;
    padding: 7px 11px;
    border-radius: 99px;
    background: #fff;
    color: var(--brand-700);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-card h3 {
    margin-bottom: 0;
    color: var(--ink-950);
}

/* ----------------------------------------------------------------
   CONTATO
   ---------------------------------------------------------------- */
.contact-content {
    align-items: center;
    text-align: center;
}

.contact-content h2,
.contact-content .lead {
    max-width: 820px;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 56px;
    margin-top: 8px;
    padding: 0 26px;
    border-radius: 999px;
    background: var(--brand-700);
    box-shadow: 0 14px 30px rgba(6, 29, 114, 0.2);
    color: #fff;
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms var(--ease-fluid), box-shadow 180ms var(--ease-fluid);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(6, 29, 114, 0.24);
}

.restart-button {
    margin-top: 16px;
    border: 0;
    box-shadow: none;
    color: var(--brand-700);
}

/* ----------------------------------------------------------------
   CONTROLES
   ---------------------------------------------------------------- */
.slider-controls {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: var(--controls-height);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding:
        9px max(20px, env(safe-area-inset-right)) max(13px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
    pointer-events: none;
}

.slider-controls>* {
    pointer-events: auto;
}

.arrow-button {
    display: grid;
    place-items: center;
    width: 44px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 20px rgba(6, 29, 114, 0.08);
    color: var(--brand-700);
    cursor: pointer;
    font-size: 1.08rem;
    backdrop-filter: blur(12px);
    transition: transform 180ms var(--ease-fluid), opacity 180ms ease;
}

.arrow-button:hover:not(:disabled) {
    transform: scale(1.06);
}

.arrow-button:disabled {
    cursor: default;
    opacity: 0.25;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 20px rgba(6, 29, 114, 0.07);
    backdrop-filter: blur(12px);
}

.pagination__button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: #c0c7d8;
    cursor: pointer;
    transition: width 240ms var(--ease-fluid), background 240ms ease;
}

.pagination__button[aria-current="true"] {
    width: 22px;
    background: var(--brand-700);
}

.noscript-message {
    position: fixed;
    z-index: 50;
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--ink-950);
    color: #fff;
    text-align: center;
}

/* ----------------------------------------------------------------
   ENTRADA DAS TELAS
   ---------------------------------------------------------------- */
.js .panel .panel__content>* {
    opacity: 0;
    transform: translateX(22px);
}

.js .panel.is-active .panel__content>* {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 560ms var(--ease-fluid),
        transform 560ms var(--ease-fluid);
}

.js .panel.is-active .panel__content>*:nth-child(2) {
    transition-delay: 70ms;
}

@keyframes dissolve-wash {
    0% {
        opacity: 0;
        transform: translateX(-1.5%) scale(1);
    }

    38% {
        opacity: 0.58;
        transform: translateX(0) scale(1.008);
    }

    72% {
        opacity: 0.34;
        transform: translateX(1.5%) scale(1.012);
    }

    100% {
        opacity: 0;
        transform: translateX(3%) scale(1.018);
    }
}

@keyframes circuit-flow {
    to {
        stroke-dashoffset: -124;
    }
}

@keyframes node-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes core-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-7px) rotate(2deg);
    }
}

@keyframes pulse-line {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* ----------------------------------------------------------------
   RESPONSIVIDADE
   ---------------------------------------------------------------- */
@media (max-width: 940px) {
    .story-layout {
        max-width: 760px;
    }

    .story-row {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 16px;
    }

    .story-row__icon {
        width: 78px;
        height: 78px;
    }

    .story-row__icon svg {
        width: 50px;
        height: 50px;
    }

    .story-row__icon text {
        font-size: 14px;
    }

    .story-row__content {
        padding-left: 18px;
    }
}

@media (max-width: 940px) {
    :root {
        --header-height: 94px;
        --controls-height: 72px;
    }

    .panel {
        padding-top: calc(var(--header-height) + 14px);
        padding-bottom: calc(var(--controls-height) + 26px);
    }

    .hero-layout,
    .store-layout,
    .person-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero-layout {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .circuit {
        position: absolute;
        right: -70px;
        bottom: 8vh;
        width: min(46vw, 360px);
        opacity: 0.16;
    }

    .person-photo {
        width: min(64vw, 360px);
        justify-self: center;
        order: -1;
    }

    .store-illustration {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(46vw, 280px);
        justify-self: center;
        margin-top: 4px;
        opacity: 1;
    }

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

    .section-heading--row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 560px) {
    .panel--story {
        padding-top: calc(var(--header-height) + 12px);
    }

    .story-layout {
        align-items: stretch;
        justify-content: flex-start;
    }

    .story-heading {
        margin-bottom: 12px;
    }

    .story-title__highlight {
        margin-bottom: 8px;
        padding: 8px 14px 9px;
        border-radius: 12px;
        font-size: clamp(1.4rem, 8vw, 2rem);
    }

    .story-title__line {
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 0.98;
    }

    .story-row {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
        align-items: flex-start;
    }

    .story-row+.story-row {
        margin-top: 12px;
    }

    .story-row__icon {
        width: 62px;
        height: 62px;
    }

    .story-row__icon svg {
        width: 40px;
        height: 40px;
    }

    .story-row__icon text {
        font-size: 11px;
    }

    .story-row__icon path,
    .story-row__icon rect {
        stroke-width: 3;
    }

    .story-row__content {
        padding-left: 12px;
    }

    .story-row__content h3 {
        font-size: 1rem;
    }

    .story-row__content p {
        font-size: 0.92rem;
        line-height: 1.28;
    }

    .story-badge {
        gap: 8px;
        margin-top: 16px;
        padding: 12px 16px;
        font-size: 0.84rem;
        text-align: center;
    }

    .story-badge__icon {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }

    .story-arrow {
        width: 88px;
        margin-top: 6px;
    }
}

@media (max-width: 560px) {
    :root {
        --header-height: 84px;
        --controls-height: 68px;
    }

    .site-header {
        padding-right: 18px;
        padding-left: 18px;
    }

    .brand img {
        width: 184px;
    }

    .panel {
        padding-right: 20px;
        padding-left: 20px;
    }

    .panel--motif::after {
        right: -170px;
        top: 14%;
    }

    .hero-title {
        max-width: 350px;
        font-size: clamp(1.68rem, 7.45vw, 2.15rem);
        gap: 4px;
    }

    .hero-title__highlight {
        padding: 6px 10px 7px;
        border-radius: 7px;
    }

    h2 {
        font-size: clamp(1.85rem, 8.8vw, 2.65rem);
    }

    .lead {
        font-size: 1rem;
    }

    .circuit {
        right: -34px;
        bottom: 90px;
        width: 178px;
        opacity: 0.24;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 16px 0;
    }

    .person-photo {
        width: min(58vw, 225px);
        aspect-ratio: 0.86;
    }

    .person-signature {
        margin-top: 20px;
    }

    .store-illustration {
        width: min(48vw, 190px);
        margin-top: 6px;
    }

    .store-illustration span {
        display: inline-block;
        margin-top: 4px;
        padding: 5px 9px;
        font-size: 0.62rem;
    }

    .store-address {
        gap: 11px;
        margin-top: 14px;
        padding: 13px 14px;
        border-radius: 15px;
    }

    .store-address__icon {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .store-address__icon svg {
        width: 21px;
        height: 21px;
    }

    .products-grid {
        gap: 12px;
    }

    .product-card__image {
        margin-bottom: 8px;
        border-radius: 12px;
    }

    .product-card h3 {
        font-size: 0.96rem;
    }

    .arrow-button {
        width: 42px;
    }
}

@media (max-height: 730px) and (max-width: 940px) {
    .panel {
        padding-top: calc(var(--header-height) + 8px);
    }

    .person-photo {
        width: min(45vw, 245px);
    }

    .hero-title {
        font-size: clamp(1.62rem, 6.8vw, 2.2rem);
    }

    h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .timeline-item {
        padding: 13px 0;
    }
}

@media (prefers-reduced-motion: reduce) {

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

/* Sem JavaScript, as seções ficam empilhadas verticalmente. */
.no-js body {
    overflow: auto;
}

.no-js .slider {
    display: block;
    height: auto;
    overflow: visible;
}

.no-js .panel {
    min-height: 100vh;
}

/* =========================================================
   BOTÃO FIXO DO WHATSAPP
   ---------------------------------------------------------
   Fica visível em todas as telas/seções do site.
   Como está com position: fixed, ele não depende da seção atual.
   ========================================================= */

.whatsapp-sticker {
    position: fixed;
    right: calc(18px + env(safe-area-inset-right));
    bottom: calc(86px + env(safe-area-inset-bottom));

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;
    color: #ffffff;
    border-radius: 999px;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    z-index: 999;

    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.whatsapp-sticker:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    background: #20bd5a;
}

.whatsapp-sticker:active {
    transform: scale(0.96);
}

.whatsapp-sticker:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.35);
    outline-offset: 4px;
}

.whatsapp-sticker__icon {
    width: 33px;
    height: 33px;
    fill: currentColor;
}

/* Ajuste para telas pequenas */
@media (max-width: 480px) {
    .whatsapp-sticker {
        width: 54px;
        height: 54px;
        right: calc(14px + env(safe-area-inset-right));
        bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .whatsapp-sticker__icon {
        width: 31px;
        height: 31px;
    }
}

/* ----------------------------------------------------------------
   PÁGINAS INTERNAS NO MESMO ESTILO DA HISTÓRIA
   ---------------------------------------------------------------- */
.story-title__line--blue {
    color: var(--brand-600);
}

.people-list {
    max-width: 780px;
}

.people-row {
    grid-template-columns: 122px minmax(0, 1fr);
}

.people-photo {
    display: grid;
    place-items: center;
    width: 148px;
    height: 148px;
    margin: 0;
    overflow: hidden;
    border-radius: 50%;

    /* Remove o fundo azul do oval */
    background: transparent;

    /* Mantém apenas uma borda branca fina ao redor da foto */
    border: 3px solid #ffffff;

    /* Sombra leve para destacar a foto no fundo branco */
    box-shadow: 0 5px 12px rgba(6, 29, 114, 0.12);
}

.people-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 24%;
}

.people-photo--placeholder {
    background: transparent;
    border: 2px solid rgba(0, 51, 153, 0.18);
    box-shadow: none;
}

.products-grid--story {
    width: 100%;
    max-width: 880px;
}

.product-card--story {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(6, 29, 114, 0.06);
}

.product-card--story h3 {
    color: var(--brand-600);
    font-weight: 900;
    text-align: center;
}

.primary-cta--story {
    margin-top: 22px;
}

.contact-story-layout {
    align-items: center;
}

.contact-story-layout .story-heading,
.contact-story-layout .story-list {
    width: min(100%, 760px);
}

.story-row__icon--gps path,
.story-row__icon--gps circle {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Ajuste extra para páginas internas sem logo fixa */
.panel--story .panel__content {
    min-height: calc(100dvh - var(--controls-height) - 76px);
}


@media (max-width: 940px) {
    .people-row {
        grid-template-columns: 136px minmax(0, 1fr);
    }

    .people-photo {
        width: 118px;
        height: 118px;
    }

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

@media (max-width: 560px) {


    .people-row {
        grid-template-columns: 108px minmax(0, 1fr);
    }

    .people-photo {
        width: 96px;
        height: 96px;
    }

    .people-photo--placeholder span {
        font-size: 1.35rem;
    }

    .product-card--story {
        padding: 8px;
        border-radius: 15px;
    }
}


/* ----------------------------------------------------------------
   CORREÇÃO — LOGO VISÍVEL SOMENTE NA PRIMEIRA PÁGINA
   ---------------------------------------------------------------- */
.site-header {
    z-index: 60;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: none;
}

.site-header .brand {
    pointer-events: auto;
}


@media (max-width: 390px) {
    .people-row {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 10px;
    }

    .people-photo {
        width: 82px;
        height: 82px;
    }

    .people-photo--placeholder span {
        font-size: 1.15rem;
    }
}


/* =========================================================
   AJUSTE FINAL — LOGO EM TODAS AS PÁGINAS SEM SOBREPOR CONTEÚDO
   ---------------------------------------------------------
   Este bloco fica no final do CSS para preservar os ajustes manuais
   existentes e apenas corrigir o espaçamento superior das telas.
   ========================================================= */

/* A logo fica fixa e visível em todas as telas. */
.site-header {
    z-index: 60;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;
}

/* Apenas o clique diretamente na logo fica ativo. */
.site-header .brand {
    pointer-events: auto;
}

/* Reserva espaço no topo para a logo não invadir os títulos/conteúdo. */
.panel {
    padding-top: calc(var(--header-height) + 24px);
}

/* Mantém a primeira tela com um respiro parecido, mas sem quebrar o layout. */
.panel.panel--hero {
    padding-top: calc(var(--header-height) + 24px);
}

/* Nas páginas com o estilo da página 2, o conteúdo começa abaixo da logo. */
.panel--story {
    padding-top: calc(var(--header-height) + 18px);
}

/* Como agora existe logo em todas as páginas, a área útil precisa descontar o cabeçalho. */
.panel--story .panel__content {
    min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 48px);
}

/* Ajustes para celular: reduz a logo e o respiro sem causar sobreposição. */
@media (max-width: 560px) {
    .brand img {
        width: 168px;
    }

    .panel,
    .panel.panel--hero,
    .panel--story {
        padding-top: calc(var(--header-height) + 14px);
    }

    .panel--story .panel__content {
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 36px);
    }
}

/* Ajuste para telas baixas: compacta o topo mantendo a logo fora do conteúdo. */
@media (max-height: 730px) and (max-width: 940px) {

    .panel,
    .panel.panel--hero,
    .panel--story {
        padding-top: calc(var(--header-height) + 8px);
    }
}


/* =========================================================
   ATALHOS DA PÁGINA INICIAL
   ---------------------------------------------------------
   Botões discretos abaixo da logo, somente na primeira tela.
   ========================================================= */

.home-shortcuts {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    width: min(100%, 760px);
    margin: 0 0 clamp(24px, 4vh, 42px);
}

.panel--hero .home-shortcuts .home-shortcuts__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(0, 51, 153, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--brand-700);
    box-shadow: 0 8px 18px rgba(6, 29, 114, 0.04);
    font-size: clamp(0.86rem, 1vw, 0.95rem);
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease,
        background-color 180ms ease;
}

.home-shortcuts__button:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 51, 153, 0.34);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(6, 29, 114, 0.08);
}

.home-shortcuts__button:active {
    transform: translateY(0);
}

@media (max-width: 760px) {
    .home-shortcuts {
        justify-content: center;
        width: 100%;
        gap: 8px;
        margin-bottom: 24px;
    }

    .home-shortcuts__button {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.82rem;
    }
}

@media (max-width: 430px) {
    .home-shortcuts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 330px;
        margin-inline: auto;
    }

    .home-shortcuts__button {
        width: 100%;
    }
}


/* =========================================================
   AJUSTE FINAL — BOTÕES DA HOME E CIRCUITO
   ---------------------------------------------------------
   Mantém os botões em linha única, afina o texto para 500
   e deixa o circuito mais discreto, ao fundo e próximo da logo.
   ========================================================= */

/* Botões superiores da página inicial */
.home-shortcuts {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 1.2vw, 10px);
    width: min(100%, 760px);
    max-width: 100%;
    margin: 0 auto clamp(22px, 3.4vh, 38px);
    overflow: visible;
}

.home-shortcuts__button {
    flex: 0 1 auto;
    min-width: 0;
    min-height: clamp(32px, 5.8vw, 42px);
    padding-inline: clamp(9px, 1.8vw, 18px);
    border-radius: 999px;

    /* Texto mais fino, conforme solicitado */
    font-weight: 500 !important;

    font-size: clamp(0.68rem, 2.15vw, 0.95rem);
    letter-spacing: 0;
    white-space: nowrap;
}

/* Mantém uma linha única mesmo em celulares pequenos. */
@media (max-width: 430px) {
    .home-shortcuts {
        display: flex !important;
        grid-template-columns: none !important;
        flex-wrap: nowrap !important;
        gap: 5px;
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
    }

    .home-shortcuts__button {
        width: auto !important;
        min-height: 32px;
        padding-inline: 8px;
        font-size: clamp(0.62rem, 2.75vw, 0.72rem);
        line-height: 1;
    }
}

@media (max-width: 360px) {
    .home-shortcuts {
        gap: 4px;
    }

    .home-shortcuts__button {
        padding-inline: 6px;
        font-size: 0.6rem;
    }
}

/* Circuito da primeira página: mais discreto e mais próximo da logo. */
.panel--hero .circuit {
    position: absolute;
    top: calc(var(--header-height) - 12px);
    right: clamp(18px, 8vw, 130px);
    width: clamp(190px, 27vw, 360px);
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.panel--hero .hero-copy {
    position: relative;
    z-index: 2;
}

.panel--hero .circuit__main path {
    stroke-width: 3;
}

.panel--hero .circuit__soft path {
    stroke-width: 1.5;
    opacity: 0.12;
}

.panel--hero .circuit__nodes circle {
    stroke-width: 2;
}

.panel--hero .circuit__core {
    stroke-width: 3;
    filter: none;
}

.panel--hero .circuit__pulse {
    stroke-width: 4;
}

/* No celular, o circuito fica como textura de fundo perto do topo. */
@media (max-width: 940px) {
    .panel--hero .circuit {
        position: absolute;
        top: calc(var(--header-height) - 10px);
        right: -42px;
        bottom: auto;
        width: clamp(190px, 48vw, 310px);
        opacity: 0.10;
    }
}

@media (max-width: 560px) {
    .panel--hero .circuit {
        top: calc(var(--header-height) - 6px);
        right: -68px;
        width: 235px;
        opacity: 0.085;
    }
}


/* =========================================================
   AJUSTE FINAL — 10 PRODUTOS E CENTRALIZAÇÃO DAS PÁGINAS
   ---------------------------------------------------------
   Alterações adicionadas no final do CSS para preservar
   os ajustes manuais anteriores.
   ========================================================= */

/* As páginas internas ficam um pouco mais distantes da logo. */
.panel:not(.panel--hero) {
    padding-top: calc(var(--header-height) + 34px);
}

/* Exceto a página 2, que mantém o comportamento visual próprio da história. */
#historia.panel {
    padding-top: calc(var(--header-height) + 18px);
}

/* Centraliza o conteúdo no eixo da página nas telas internas, exceto página 2. */
.panel:not(.panel--hero):not(#historia) .panel__content {
    justify-content: center;
    align-items: center;
    min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 82px);
}

/* Garante que os blocos internos fiquem alinhados ao centro da largura útil. */
.panel:not(.panel--hero):not(#historia) .story-heading,
.panel:not(.panel--hero):not(#historia) .story-list,
.panel:not(.panel--hero):not(#historia) .products-grid--story {
    margin-left: auto;
    margin-right: auto;
}

/* A página de produtos agora comporta 10 itens em 5 colunas por 2 linhas no desktop. */
.products-grid--story {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(10px, 1.35vw, 16px);
    width: min(100%, 980px);
    max-width: 980px;
}

/* Cards mais compactos para permitir 10 produtos sem pesar o layout. */
.product-card--story {
    padding: clamp(7px, 0.85vw, 11px);
    border-radius: 16px;
}

.product-card--story .product-card__image {
    margin-bottom: 8px;
    border-radius: 12px;
}

.product-card--story h3 {
    font-size: clamp(0.78rem, 0.95vw, 0.95rem);
    line-height: 1.18;
}

/* Em telas médias, usa 5 colunas se couber; reduz espaçamentos. */
@media (max-width: 940px) {
    .panel:not(.panel--hero) {
        padding-top: calc(var(--header-height) + 24px);
    }

    #historia.panel {
        padding-top: calc(var(--header-height) + 12px);
    }

    .panel:not(.panel--hero):not(#historia) .panel__content {
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 58px);
    }

    .products-grid--story {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 8px;
        max-width: 760px;
    }

    .product-card--story {
        padding: 7px;
        border-radius: 13px;
    }

    .product-card--story h3 {
        font-size: 0.78rem;
    }
}

/* No celular, mantém os 10 produtos visíveis em 2 colunas por 5 linhas. */
@media (max-width: 560px) {
    .panel:not(.panel--hero) {
        padding-top: calc(var(--header-height) + 18px);
    }

    #historia.panel {
        padding-top: calc(var(--header-height) + 8px);
    }

    .panel:not(.panel--hero):not(#historia) .panel__content {
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 46px);
    }

    .products-grid--story {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        max-width: 340px;
    }

    .product-card--story {
        padding: 6px;
        border-radius: 12px;
    }

    .product-card--story .product-card__image {
        aspect-ratio: 1.55;
        margin-bottom: 5px;
    }

    .product-card--story h3 {
        font-size: 0.72rem;
        line-height: 1.1;
    }

    .panel--products .story-heading {
        margin-bottom: 10px;
    }

    .panel--products .story-badge {
        margin-top: 10px;
        padding: 10px 12px;
        font-size: 0.72rem;
    }
}

/* Em celulares muito baixos, compacta ainda mais a página de produtos. */
@media (max-height: 730px) and (max-width: 560px) {
    .products-grid--story {
        gap: 5px;
    }

    .product-card--story {
        padding: 5px;
    }

    .product-card--story .product-card__image {
        aspect-ratio: 1.9;
    }

    .product-card--story h3 {
        font-size: 0.68rem;
    }

    .panel--products .story-title__highlight {
        margin-bottom: 5px;
        padding-top: 6px;
        padding-bottom: 7px;
    }

    .panel--products .story-title__line {
        font-size: clamp(1.7rem, 9vw, 2.45rem);
    }
}


/* =========================================================
   AJUSTE FINAL — CIRCUITOS DISCRETOS E INSTAGRAM
   ---------------------------------------------------------
   - Circuitos no canto superior esquerdo e inferior direito.
   - Fotos da página de pessoas clicáveis para Instagram.
   - Botão de Instagram na última página.
   ========================================================= */

/* Circuitos decorativos da primeira página */
.panel--hero .circuit {
    position: absolute;
    width: clamp(180px, 24vw, 320px);
    opacity: 0.065;
    z-index: 0;
    pointer-events: none;
}

.panel--hero .circuit--top-left {
    top: calc(var(--header-height) - 22px);
    left: clamp(-42px, -3vw, -18px);
    right: auto;
    bottom: auto;
}

.panel--hero .circuit--bottom-right {
    right: clamp(-54px, -3vw, -18px);
    bottom: calc(var(--controls-height) - 28px);
    left: auto;
    top: auto;
    transform: rotate(180deg);
}

.panel--hero .circuit--bottom-right .circuit__main path {
    animation-direction: reverse;
}

.panel--hero .hero-copy {
    position: relative;
    z-index: 2;
}

.panel--hero .circuit__main path {
    stroke-width: 2.6;
}

.panel--hero .circuit__soft path {
    stroke-width: 1.3;
    opacity: 0.10;
}

.panel--hero .circuit__nodes circle {
    stroke-width: 1.8;
}

.panel--hero .circuit__core {
    stroke-width: 2.6;
    filter: none;
}

.panel--hero .circuit__pulse {
    stroke-width: 3.4;
}

/* Links nas fotos da página Sonhadores */
.people-photo-link {
    display: inline-grid;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 999px;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.people-photo-link:hover {
    transform: translateY(-2px) scale(1.015);
}

.people-photo-link:focus-visible {
    outline: 3px solid rgba(0, 51, 153, 0.25);
    outline-offset: 5px;
}

/* Botão Instagram na última página */
.primary-cta--instagram {
    margin-top: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 51, 153, 0.22);
    color: var(--brand-700);
    box-shadow: 0 12px 26px rgba(6, 29, 114, 0.08);
}

.primary-cta--instagram:hover {
    background: #ffffff;
    border-color: rgba(0, 51, 153, 0.36);
    box-shadow: 0 16px 32px rgba(6, 29, 114, 0.12);
}

@media (max-width: 940px) {
    .panel--hero .circuit {
        width: clamp(170px, 42vw, 280px);
        opacity: 0.055;
    }

    .panel--hero .circuit--top-left {
        top: calc(var(--header-height) - 16px);
        left: -76px;
    }

    .panel--hero .circuit--bottom-right {
        right: -86px;
        bottom: calc(var(--controls-height) - 20px);
    }
}

@media (max-width: 560px) {
    .panel--hero .circuit {
        width: 220px;
        opacity: 0.048;
    }

    .panel--hero .circuit--top-left {
        top: calc(var(--header-height) - 8px);
        left: -92px;
    }

    .panel--hero .circuit--bottom-right {
        right: -96px;
        bottom: calc(var(--controls-height) - 16px);
    }

    .primary-cta--instagram {
        margin-top: 10px;
    }
}


/* =========================================================
   AJUSTE FINAL — INSTAGRAM FLUTUANTE, PRODUTOS E POLIMENTO
   ---------------------------------------------------------
   - Instagram flutuante igual ao WhatsApp.
   - Produtos em lista vertical com 5 itens.
   - Azul único nos backgrounds dos títulos.
   - Circuitos nos cantos extremos e atrás de tudo.
   ========================================================= */

/* Azul único dos títulos, igual ao destaque da página inicial. */
.story-title__highlight,
.hero-title__highlight {
    background: var(--brand-700) !important;
}

/* Circuitos: bem nos extremos, atrás do conteúdo e sem tocar nos textos. */
.panel--hero {
    isolation: isolate;
}

.panel--hero .panel__content {
    overflow: visible;
}

.panel--hero .circuit {
    position: absolute !important;
    width: clamp(170px, 22vw, 300px) !important;
    opacity: 0.035 !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.panel--hero .circuit--top-left {
    top: -130px !important;
    left: -170px !important;
    right: auto !important;
    bottom: auto !important;
}

.panel--hero .circuit--bottom-right {
    right: -170px !important;
    bottom: -125px !important;
    left: auto !important;
    top: auto !important;
    transform: rotate(180deg) !important;
}

.panel--hero .hero-copy {
    position: relative;
    z-index: 2;
}

.panel--hero .circuit__main path {
    stroke-width: 2.2 !important;
}

.panel--hero .circuit__soft path {
    stroke-width: 1.2 !important;
    opacity: 0.08 !important;
}

.panel--hero .circuit__nodes circle {
    stroke-width: 1.5 !important;
}

.panel--hero .circuit__core {
    stroke-width: 2.2 !important;
    filter: none !important;
}

.panel--hero .circuit__pulse {
    stroke-width: 3 !important;
}

/* Página de produtos: 5 produtos em coluna, sem encostar na logo. */
.panel--products {
    padding-top: calc(var(--header-height) + 42px) !important;
}

.panel--products .panel__content {
    justify-content: center !important;
    align-items: center !important;
    min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 96px) !important;
}

.panel--products .story-heading {
    width: min(100%, 720px);
    margin: 0 auto 18px !important;
}

.products-grid--story {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: min(100%, 620px) !important;
    max-width: 620px !important;
    margin: 0 auto !important;
}

.product-card--story {
    display: grid !important;
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 9px 14px !important;
    border-radius: 16px !important;
}

.product-card--story .product-card__image {
    width: 86px;
    height: 58px;
    aspect-ratio: auto !important;
    margin-bottom: 0 !important;
    border-radius: 12px !important;
}

.product-card--story .product-card__image::before {
    width: 42%;
}

.product-card--story .product-card__image span {
    font-size: 0.58rem;
    padding: 5px 8px;
}

.product-card--story h3 {
    margin: 0 !important;
    text-align: left !important;
    font-size: clamp(0.9rem, 1.15vw, 1.02rem) !important;
    line-height: 1.15 !important;
}

.panel--products .story-badge {
    margin-top: 16px !important;
}

/* Botão fixo do Instagram, semelhante ao WhatsApp. */
.instagram-sticker {
    position: fixed;
    right: calc(18px + env(safe-area-inset-right));
    bottom: calc(156px + env(safe-area-inset-bottom));

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--brand-700);
    color: #ffffff;
    border-radius: 999px;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    z-index: 999;

    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.instagram-sticker:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    background: var(--brand-800);
}

.instagram-sticker:active {
    transform: scale(0.96);
}

.instagram-sticker:focus-visible {
    outline: 3px solid rgba(0, 51, 153, 0.26);
    outline-offset: 4px;
}

.instagram-sticker__icon {
    width: 32px;
    height: 32px;
}

.instagram-sticker__icon rect,
.instagram-sticker__icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Mobile */
@media (max-width: 560px) {
    .panel--hero .circuit {
        width: 190px !important;
        opacity: 0.028 !important;
    }

    .panel--hero .circuit--top-left {
        top: -92px !important;
        left: -112px !important;
    }

    .panel--hero .circuit--bottom-right {
        right: -112px !important;
        bottom: -84px !important;
    }

    .panel--products {
        padding-top: calc(var(--header-height) + 26px) !important;
    }

    .panel--products .panel__content {
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 62px) !important;
    }

    .panel--products .story-heading {
        margin-bottom: 10px !important;
    }

    .products-grid--story {
        width: min(100%, 340px) !important;
        gap: 7px !important;
    }

    .product-card--story {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 10px;
        min-height: 64px;
        padding: 7px 10px !important;
        border-radius: 13px !important;
    }

    .product-card--story .product-card__image {
        width: 72px;
        height: 46px;
    }

    .product-card--story h3 {
        font-size: 0.82rem !important;
    }

    .panel--products .story-badge {
        margin-top: 9px !important;
        padding: 9px 12px !important;
        font-size: 0.68rem !important;
    }

    .instagram-sticker {
        width: 54px;
        height: 54px;
        right: calc(14px + env(safe-area-inset-right));
        bottom: calc(140px + env(safe-area-inset-bottom));
    }

    .instagram-sticker__icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-height: 730px) and (max-width: 560px) {
    .panel--products {
        padding-top: calc(var(--header-height) + 14px) !important;
    }

    .product-card--story {
        min-height: 54px;
        padding: 5px 9px !important;
    }

    .product-card--story .product-card__image {
        width: 64px;
        height: 38px;
    }

    .products-grid--story {
        gap: 5px !important;
    }

    .panel--products .story-badge {
        display: none;
    }
}


/* =========================================================
   AJUSTE FINAL — AZUL ÚNICO, INSTAGRAM FINAL E PRODUTOS
   ---------------------------------------------------------
   - Azul institucional único aplicado nas variáveis do site.
   - Instagram flutuante aparece somente na página final.
   - Instagram fica no canto esquerdo com cores do Instagram.
   - Produtos em coluna, com texto centralizado abaixo da imagem.
   - Circuitos nos cantos extremos, atrás do conteúdo.
   ========================================================= */

/* Azul padrão único para todo o site. */
:root {
    --brand-900: #003399;
    --brand-800: #003399;
    --brand-700: #003399;
    --brand-600: #003399;
    --brand-500: #003399;
    --brand-100: #f2f5ff;
    --line: rgba(0, 51, 153, 0.18);
    --line-soft: rgba(0, 51, 153, 0.08);
}

/* Remove variações de azul nos principais fundos e elementos institucionais. */
.hero-title__highlight,
.story-title__highlight,
.story-row__icon,
.primary-cta,
.arrow-button,
.pagination__button[aria-current="true"],
.swipe-hint,
.story-badge__icon {
    background: #003399 !important;
    background-color: #003399 !important;
}

.hero-title__blue,
.eyebrow,
h3,
strong,
.story-title__line,
.home-shortcuts__button,
.restart-button {
    color: #003399 !important;
}

.story-title__highlight,
.hero-title__highlight {
    color: #ffffff !important;
}

/* Circuitos da página inicial: extremos, discretos e atrás de todo conteúdo. */
.panel--hero {
    isolation: isolate;
}

.panel--hero .panel__content {
    position: relative;
    z-index: 2;
    overflow: visible;
}

.panel--hero .hero-copy,
.panel--hero .home-shortcuts {
    position: relative;
    z-index: 3;
}

.panel--hero .circuit {
    position: absolute !important;
    width: clamp(180px, 23vw, 320px) !important;
    opacity: 0.028 !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.panel--hero .circuit--top-left {
    top: -210px !important;
    left: -230px !important;
    right: auto !important;
    bottom: auto !important;
}

.panel--hero .circuit--bottom-right {
    right: -230px !important;
    bottom: -205px !important;
    left: auto !important;
    top: auto !important;
    transform: rotate(180deg) !important;
}

.panel--hero .circuit__main path,
.panel--hero .circuit__soft path,
.panel--hero .circuit__nodes circle,
.panel--hero .circuit__core,
.panel--hero .circuit__pulse {
    stroke: #003399 !important;
    filter: none !important;
}

.panel--hero .circuit__main path {
    stroke-width: 2 !important;
}

.panel--hero .circuit__soft path {
    stroke-width: 1.1 !important;
    opacity: 0.07 !important;
}

.panel--hero .circuit__nodes circle {
    stroke-width: 1.4 !important;
}

.panel--hero .circuit__core {
    stroke-width: 2 !important;
}

.panel--hero .circuit__pulse {
    stroke-width: 2.8 !important;
}

/* Página de produtos: 5 produtos em coluna, sem encostar na logo. */
.panel--products {
    padding-top: calc(var(--header-height) + 48px) !important;
}

.panel--products .panel__content {
    justify-content: center !important;
    align-items: center !important;
    min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 104px) !important;
}

.panel--products .story-heading {
    width: min(100%, 720px);
    margin: 0 auto 16px !important;
    text-align: center;
}

.products-grid--story {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: min(100%, 480px) !important;
    max-width: 480px !important;
    margin: 0 auto !important;
}

.product-card--story {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    align-items: center !important;
    gap: 7px !important;
    min-height: auto !important;
    padding: 10px 14px !important;
    border-radius: 16px !important;
    text-align: center !important;
}

.product-card--story .product-card__image {
    width: min(100%, 180px) !important;
    height: 62px !important;
    aspect-ratio: auto !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
}

.product-card--story .product-card__image::before {
    width: 42%;
    background: #003399 !important;
}

.product-card--story .product-card__image span {
    font-size: 0.58rem;
    padding: 5px 8px;
}

.product-card--story h3 {
    width: 100%;
    margin: 0 !important;
    text-align: center !important;
    color: #003399 !important;
    font-size: clamp(0.88rem, 1.05vw, 0.98rem) !important;
    line-height: 1.16 !important;
}

.panel--products .story-badge {
    margin-top: 14px !important;
}

/* Instagram flutuante: somente na página final, no canto esquerdo. */
.instagram-sticker {
    position: fixed;
    left: calc(18px + env(safe-area-inset-left));
    right: auto;
    bottom: calc(86px + env(safe-area-inset-bottom));

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 62%, #285aeb 90%);
    color: #ffffff;
    border-radius: 999px;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    z-index: 999;

    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(0.96);
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}

body.is-contact-panel .instagram-sticker {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.instagram-sticker:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.instagram-sticker:active {
    transform: scale(0.96);
}

.instagram-sticker:focus-visible {
    outline: 3px solid rgba(0, 51, 153, 0.26);
    outline-offset: 4px;
}

.instagram-sticker__icon {
    width: 32px;
    height: 32px;
}

.instagram-sticker__icon rect,
.instagram-sticker__icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 560px) {
    .panel--hero .circuit {
        width: 180px !important;
        opacity: 0.024 !important;
    }

    .panel--hero .circuit--top-left {
        top: -128px !important;
        left: -138px !important;
    }

    .panel--hero .circuit--bottom-right {
        right: -138px !important;
        bottom: -118px !important;
    }

    .panel--products {
        padding-top: calc(var(--header-height) + 30px) !important;
    }

    .panel--products .panel__content {
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 68px) !important;
    }

    .panel--products .story-heading {
        margin-bottom: 10px !important;
    }

    .products-grid--story {
        width: min(100%, 330px) !important;
        gap: 7px !important;
    }

    .product-card--story {
        padding: 7px 10px !important;
        border-radius: 13px !important;
        gap: 5px !important;
    }

    .product-card--story .product-card__image {
        width: min(100%, 142px) !important;
        height: 44px !important;
    }

    .product-card--story h3 {
        font-size: 0.78rem !important;
    }

    .panel--products .story-badge {
        margin-top: 9px !important;
        padding: 9px 12px !important;
        font-size: 0.68rem !important;
    }

    .instagram-sticker {
        width: 54px;
        height: 54px;
        left: calc(14px + env(safe-area-inset-left));
        bottom: calc(86px + env(safe-area-inset-bottom));
    }

    .instagram-sticker__icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-height: 730px) and (max-width: 560px) {
    .panel--products {
        padding-top: calc(var(--header-height) + 18px) !important;
    }

    .products-grid--story {
        gap: 5px !important;
    }

    .product-card--story {
        padding: 5px 9px !important;
        gap: 4px !important;
    }

    .product-card--story .product-card__image {
        width: 122px !important;
        height: 34px !important;
    }

    .product-card--story h3 {
        font-size: 0.7rem !important;
    }

    .panel--products .story-badge {
        display: none;
    }
}


/* =========================================================
   AJUSTE FINAL — PRESERVAR CONTROLES ORIGINAIS
   ---------------------------------------------------------
   Mantém como eram:
   - setas de navegação;
   - botão "Arraste para o lado";
   - ícones de coração dos selos.
   ========================================================= */

/* Setas inferiores: continuam brancas, discretas e com ícone azul. */
.arrow-button {
    border: 1px solid var(--line) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    background-color: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 8px 20px rgba(6, 29, 114, 0.08) !important;
    color: var(--brand-700) !important;
    backdrop-filter: blur(12px);
}

.arrow-button:hover:not(:disabled) {
    transform: scale(1.06);
}

.arrow-button:disabled {
    cursor: default;
    opacity: 0.25;
}

/* Botão "Arraste para o lado": volta ao estilo claro original. */
.swipe-hint,
.restart-button {
    border: 1px solid var(--line) !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(6, 29, 114, 0.08) !important;
    color: var(--ink-950) !important;
}

.swipe-hint span,
.restart-button span {
    color: var(--brand-700) !important;
}

.swipe-hint:hover,
.restart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(6, 29, 114, 0.12) !important;
}

/* Ícones de coração dos selos: sem fundo azul, somente o coração azul como antes. */
.story-badge__icon {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    color: var(--brand-600) !important;
}

/* Garante que o selo continue branco e limpo. */
.story-badge {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: var(--brand-600) !important;
}


/* =========================================================
   AJUSTE FINAL — IMAGENS DOS PRODUTOS, CIRCUITO E INSTAGRAM
   ---------------------------------------------------------
   Preserva os ajustes manuais e corrige apenas:
   - caminhos das imagens dos produtos;
   - visibilidade do circuito nos cantos;
   - tamanho interno branco do ícone do Instagram.
   ========================================================= */

/* Produtos: imagem com caminho assets/produto1.png, produto2.png... e texto abaixo centralizado. */
.product-card--story {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
}

.product-card--story .product-card__image {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.product-card--story .product-card__image::before {
    content: none !important;
}

.product-card--story .product-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-card--story h3 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Circuito: volta a aparecer, mas continua atrás do conteúdo e nos cantos extremos da página inicial. */
.panel--hero {
    position: relative;
    isolation: isolate;
}

.panel--hero .panel__content {
    position: static !important;
    z-index: auto !important;
    overflow: visible !important;
}

.panel--hero .hero-copy,
.panel--hero .home-shortcuts {
    position: relative;
    z-index: 3 !important;
}

.panel--hero .circuit {
    position: absolute !important;
    display: block !important;
    visibility: visible !important;
    width: clamp(240px, 30vw, 430px) !important;
    opacity: 0.085 !important;
    color: var(--brand-700) !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.panel--hero .circuit--top-left {
    top: -112px !important;
    left: -132px !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
}

.panel--hero .circuit--bottom-right {
    right: -132px !important;
    bottom: -110px !important;
    left: auto !important;
    top: auto !important;
    transform: rotate(180deg) !important;
}

.panel--hero .circuit svg {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
}

.panel--hero .circuit path,
.panel--hero .circuit rect,
.panel--hero .circuit circle {
    stroke: currentColor !important;
    filter: none !important;
}

.panel--hero .circuit__main path {
    stroke-width: 2.4 !important;
}

.panel--hero .circuit__soft path {
    stroke-width: 1.25 !important;
    opacity: 0.18 !important;
}

.panel--hero .circuit__nodes circle {
    stroke-width: 1.8 !important;
}

.panel--hero .circuit__core {
    stroke-width: 2.4 !important;
}

.panel--hero .circuit__pulse {
    stroke-width: 3.2 !important;
}

/* Instagram: aumenta somente o desenho branco interno, sem aumentar o botão. */
.instagram-sticker__icon {
    width: 40px !important;
    height: 40px !important;
}

.instagram-sticker__icon rect,
.instagram-sticker__icon circle {
    stroke-width: 3 !important;
}

@media (max-width: 560px) {
    .panel--hero .circuit {
        width: 250px !important;
        opacity: 0.075 !important;
    }

    .panel--hero .circuit--top-left {
        top: -86px !important;
        left: -108px !important;
    }

    .panel--hero .circuit--bottom-right {
        right: -108px !important;
        bottom: -82px !important;
    }

    .instagram-sticker__icon {
        width: 37px !important;
        height: 37px !important;
    }

    .instagram-sticker__icon rect,
    .instagram-sticker__icon circle {
        stroke-width: 2.9 !important;
    }
}


/* =========================================================
   AJUSTE FINAL — PRODUTOS 100% E CIRCUITO VISÍVEL
   ---------------------------------------------------------
   Mantém os ajustes manuais e corrige apenas:
   - imagens dos produtos preenchendo 100% do espaço disponível;
   - circuito visível nos cantos da página inicial, atrás do conteúdo.
   ========================================================= */

/* Produtos: imagem ocupa 100% da área disponível e texto fica abaixo, centralizado. */
.product-card--story {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    text-align: center !important;
    gap: 8px !important;
}

.product-card--story .product-card__image {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: clamp(118px, 18vh, 185px) !important;
    min-height: 118px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 14px !important;
}

.product-card--story .product-card__image::before,
.product-card--story .product-card__image span {
    display: none !important;
    content: none !important;
}

.product-card--story .product-card__image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.product-card--story h3 {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 4px !important;
    text-align: center !important;
    line-height: 1.18 !important;
}

/* Circuito: agora fica fora do conteúdo da home, por isso aparece corretamente. */
.panel--hero {
    position: relative !important;
    isolation: isolate;
    overflow: hidden;
}

.panel--hero .panel__content {
    position: relative !important;
    z-index: 2 !important;
}

.panel--hero .hero-copy,
.panel--hero .home-shortcuts {
    position: relative !important;
    z-index: 3 !important;
}

.panel--hero .circuit {
    position: absolute !important;
    display: block !important;
    visibility: visible !important;
    width: clamp(220px, 28vw, 390px) !important;
    height: auto !important;
    color: var(--brand-700) !important;
    opacity: 0.105 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.panel--hero .circuit--top-left {
    top: clamp(8px, 1.5vw, 20px) !important;
    left: clamp(8px, 1.5vw, 20px) !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-34%, -34%) !important;
}

.panel--hero .circuit--bottom-right {
    right: clamp(8px, 1.5vw, 20px) !important;
    bottom: clamp(8px, 1.5vw, 20px) !important;
    left: auto !important;
    top: auto !important;
    transform: translate(34%, 34%) rotate(180deg) !important;
}

.panel--hero .circuit svg {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
}

.panel--hero .circuit path,
.panel--hero .circuit rect,
.panel--hero .circuit circle {
    stroke: currentColor !important;
    fill: none;
    filter: none !important;
}

.panel--hero .circuit__nodes circle {
    fill: #ffffff !important;
    stroke-width: 2 !important;
}

.panel--hero .circuit__main path {
    stroke-width: 3 !important;
    stroke-dasharray: 18 13 !important;
    animation: circuit-flow 9s linear infinite !important;
}

.panel--hero .circuit__soft path {
    stroke-width: 1.6 !important;
    opacity: 0.22 !important;
}

.panel--hero .circuit__core {
    stroke-width: 3 !important;
}

.panel--hero .circuit__pulse {
    stroke-width: 3.5 !important;
}

@media (max-width: 560px) {
    .product-card--story .product-card__image {
        height: clamp(96px, 15vh, 135px) !important;
        min-height: 96px !important;
        border-radius: 12px !important;
    }

    .panel--hero .circuit {
        width: 230px !important;
        opacity: 0.09 !important;
    }

    .panel--hero .circuit--top-left {
        transform: translate(-42%, -42%) !important;
    }

    .panel--hero .circuit--bottom-right {
        transform: translate(42%, 42%) rotate(180deg) !important;
    }
}


/* =========================================================
   AJUSTE FINAL — PRODUTOS COM IMAGEM ÚNICA E CIRCUITO VISÍVEL
   ---------------------------------------------------------
   Mantém os ajustes manuais existentes e aplica apenas:
   - página de produtos com uma única imagem e texto;
   - espaçamento seguro abaixo da logo;
   - circuito visível e discreto nos cantos da home.
   ========================================================= */

/* ---------- HOME / CIRCUITO ---------- */
.panel--hero {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
}

.panel--hero .panel__content {
    position: relative !important;
    z-index: 2 !important;
}

.panel--hero .hero-copy,
.panel--hero .home-shortcuts {
    position: relative !important;
    z-index: 3 !important;
}

/* Força os dois circuitos a aparecerem nos cantos, atrás do conteúdo. */
.panel--hero .circuit {
    position: absolute !important;
    display: block !important;
    visibility: visible !important;
    width: clamp(260px, 30vw, 420px) !important;
    height: auto !important;
    opacity: 0.14 !important;
    pointer-events: none !important;
    z-index: 1 !important;
    color: #2458e8 !important;
}

.panel--hero .circuit--top-left {
    top: -86px !important;
    left: -118px !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
}

.panel--hero .circuit--bottom-right {
    right: -118px !important;
    bottom: -92px !important;
    left: auto !important;
    top: auto !important;
    transform: rotate(180deg) !important;
}

.panel--hero .circuit svg {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
}

.panel--hero .circuit path,
.panel--hero .circuit rect,
.panel--hero .circuit circle {
    fill: none !important;
    stroke: currentColor !important;
    filter: none !important;
}

.panel--hero .circuit__soft path {
    stroke-width: 1.9 !important;
    opacity: 0.30 !important;
}

.panel--hero .circuit__main path {
    stroke-width: 3.2 !important;
    stroke-dasharray: 17 12 !important;
    animation: circuit-flow 8.5s linear infinite !important;
}

.panel--hero .circuit__nodes circle {
    fill: #ffffff !important;
    stroke-width: 2.2 !important;
}

.panel--hero .circuit__core {
    stroke-width: 3.3 !important;
}

.panel--hero .circuit__pulse {
    stroke-width: 3.8 !important;
}

@keyframes circuit-flow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -120;
    }
}

/* ---------- PRODUTOS ---------- */
.panel--products {
    padding-top: calc(var(--header-height) + 64px) !important;
}

.panel--products .panel__content {
    justify-content: flex-start !important;
    align-items: center !important;
    min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 120px) !important;
    width: min(100%, 820px) !important;
    margin: 0 auto !important;
}

.panel--products .story-heading {
    width: 100% !important;
    margin: 0 auto 22px !important;
}

.product-showcase {
    width: min(100%, 760px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-showcase__image {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(6, 29, 114, 0.08);
}

.product-showcase__image img {
    display: block;
    width: 100%;
    height: auto;
}

.product-showcase__text {
    width: min(100%, 700px);
    margin: 16px auto 0;
    text-align: center;
    color: var(--ink-950);
    font-size: clamp(0.95rem, 1.25vw, 1.12rem);
    line-height: 1.5;
}

/* Remove resíduos do layout antigo na página de produtos. */
.panel--products .products-grid,
.panel--products .product-card,
.panel--products .story-badge {
    display: none !important;
}

/* ---------- MOBILE ---------- */
@media (max-width: 560px) {
    .panel--hero .circuit {
        width: 230px !important;
        opacity: 0.12 !important;
    }

    .panel--hero .circuit--top-left {
        top: -68px !important;
        left: -92px !important;
    }

    .panel--hero .circuit--bottom-right {
        right: -92px !important;
        bottom: -70px !important;
    }

    .panel--products {
        padding-top: calc(var(--header-height) + 34px) !important;
    }

    .panel--products .panel__content {
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 70px) !important;
        width: min(100%, 360px) !important;
    }

    .panel--products .story-heading {
        margin-bottom: 12px !important;
    }

    .product-showcase__image {
        border-radius: 16px;
    }

    .product-showcase__text {
        margin-top: 12px;
        font-size: 0.88rem;
        line-height: 1.45;
    }
}


/* =========================================================
   AJUSTE FINAL — CONTATO COM 3 BOTÕES E CIRCUITOS EM TODAS AS PÁGINAS
   ---------------------------------------------------------
   Mantém os ajustes manuais e aplica:
   - sem botões flutuantes de WhatsApp/Instagram;
   - 3 botões centralizados na página final;
   - circuito decorativo discreto em todas as páginas.
   ========================================================= */

/* Garante que botões laterais/flutuantes não apareçam. */
.whatsapp-sticker,
.instagram-sticker {
    display: none !important;
}

/* Circuitos decorativos em todas as páginas */
.panel {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
}

.panel .panel__content {
    position: relative !important;
    z-index: 2 !important;
}

.panel .circuit {
    position: absolute !important;
    display: block !important;
    visibility: visible !important;
    width: clamp(230px, 28vw, 390px) !important;
    height: auto !important;
    opacity: 0.105 !important;
    pointer-events: none !important;
    z-index: 1 !important;
    color: var(--brand-700) !important;
}

.panel .circuit--top-left {
    top: -86px !important;
    left: -118px !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
}

.panel .circuit--bottom-right {
    right: -118px !important;
    bottom: -92px !important;
    left: auto !important;
    top: auto !important;
    transform: rotate(180deg) !important;
}

.panel .circuit svg {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
}

.panel .circuit path,
.panel .circuit rect,
.panel .circuit circle {
    fill: none !important;
    stroke: currentColor !important;
    filter: none !important;
}

.panel .circuit__soft path {
    stroke-width: 1.9 !important;
    opacity: 0.30 !important;
}

.panel .circuit__main path {
    stroke-width: 3.2 !important;
    stroke-dasharray: 17 12 !important;
    animation: circuit-flow 8.5s linear infinite !important;
}

.panel .circuit__nodes circle {
    fill: #ffffff !important;
    stroke-width: 2.2 !important;
}

.panel .circuit__core {
    stroke-width: 3.3 !important;
}

.panel .circuit__pulse {
    stroke-width: 3.8 !important;
}

@keyframes circuit-flow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -120;
    }
}

/* Botões centralizados da página final */
.contact-actions {
    width: min(100%, 760px);
    margin: 22px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-action {
    min-width: 158px;
    margin-top: 0 !important;
    justify-content: center;
    text-align: center;
}

/* Mantém WhatsApp como botão principal já existente. */
.contact-action--whatsapp {
    background: var(--brand-700);
    color: #ffffff;
}

/* Instagram com identidade própria, sem botão lateral. */
.contact-action--instagram {
    border: none;
    color: #ffffff;
    background:
        radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 13%, #fd5949 32%, #d6249f 58%, #285aeb 100%);
    box-shadow: 0 14px 30px rgba(214, 36, 159, 0.16);
}

/* Localização com visual limpo, institucional. */
.contact-action--location {
    background: #ffffff;
    color: var(--brand-700);
    border: 1px solid rgba(0, 51, 153, 0.22);
    box-shadow: 0 12px 26px rgba(6, 29, 114, 0.08);
}

.contact-action--location:hover {
    background: #ffffff;
    border-color: rgba(0, 51, 153, 0.36);
}

@media (max-width: 560px) {
    .panel .circuit {
        width: 220px !important;
        opacity: 0.085 !important;
    }

    .panel .circuit--top-left {
        top: -72px !important;
        left: -96px !important;
    }

    .panel .circuit--bottom-right {
        right: -96px !important;
        bottom: -76px !important;
    }

    .contact-actions {
        max-width: 320px;
        gap: 9px;
        margin-top: 16px;
    }

    .contact-action {
        width: 100%;
        min-width: 0;
    }
}


/* =========================================================
   AJUSTE FINAL — DEBUG MANUAL: PRODUTOS, LOCALIZAÇÃO E HOME
   ---------------------------------------------------------
   Mantém os ajustes manuais e corrige:
   - imagem/texto da página de produtos;
   - texto visível do botão Localização;
   - botões da home mais próximos da logo;
   - circuitos estáveis em todas as páginas.
   ========================================================= */

/* Botões da primeira página mais próximos do logo */
.panel--hero .home-shortcuts {
    margin-top: clamp(-68px, -1.8vh, -8px) !important;
    margin-bottom: clamp(68px, 2.8vh, 30px) !important;
}

/* Produtos: garante visibilidade, espaçamento da logo e imagem correta */
.panel--products {
    padding-top: calc(var(--header-height) + 72px) !important;
}

.panel--products .panel__content {
    justify-content: flex-start !important;
    align-items: center !important;
    min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 126px) !important;
    width: min(100%, 840px) !important;
    margin: 0 auto !important;
}

.panel--products .story-heading {
    width: 100% !important;
    margin: 0 auto 20px !important;
}

.product-showcase {
    display: flex !important;
    visibility: visible !important;
    width: min(100%, 760px) !important;
    margin: 0 auto !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
}

.product-showcase__image {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    max-height: min(52vh, 430px) !important;
    overflow: hidden !important;
    border-radius: 22px !important;
    border: 1px solid var(--line) !important;
    background: #ffffff !important;
    box-shadow: 0 14px 34px rgba(6, 29, 114, 0.08) !important;
}

.product-showcase__image img {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
}

.product-showcase__text {
    display: block !important;
    visibility: visible !important;
    width: min(100%, 700px) !important;
    margin: 16px auto 0 !important;
    text-align: center !important;
    color: var(--ink-950) !important;
    font-size: clamp(0.95rem, 1.25vw, 1.12rem) !important;
    line-height: 1.5 !important;
}

/* Oculta resíduos do layout antigo de cards, sem afetar a nova showcase */
.panel--products .products-grid,
.panel--products .product-card,
.panel--products .story-badge {
    display: none !important;
}

/* Botões da página final: garante texto visível */
.contact-actions {
    width: min(100%, 760px) !important;
    margin: 22px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.contact-action {
    display: inline-flex !important;
    min-width: 158px !important;
    margin-top: 0 !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    color: #ffffff;
}

.contact-action--location {
    background: #ffffff !important;
    color: var(--brand-700) !important;
    border: 1px solid rgba(0, 51, 153, 0.22) !important;
    box-shadow: 0 12px 26px rgba(6, 29, 114, 0.08) !important;
}

/* Circuito visível e consistente */
.panel {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
}

.panel .panel__content {
    position: relative !important;
    z-index: 2 !important;
}

.panel .circuit {
    position: absolute !important;
    display: block !important;
    visibility: visible !important;
    width: clamp(230px, 28vw, 390px) !important;
    height: auto !important;
    opacity: 0.105 !important;
    pointer-events: none !important;
    z-index: 1 !important;
    color: var(--brand-700) !important;
}

.panel .circuit--top-left {
    top: -86px !important;
    left: -118px !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
}

.panel .circuit--bottom-right {
    right: -118px !important;
    bottom: -92px !important;
    left: auto !important;
    top: auto !important;
    transform: rotate(180deg) !important;
}

.panel .circuit svg {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
}

.panel .circuit path,
.panel .circuit rect,
.panel .circuit circle {
    fill: none !important;
    stroke: currentColor !important;
    filter: none !important;
}

.panel .circuit__soft path {
    stroke-width: 1.9 !important;
    opacity: 0.30 !important;
}

.panel .circuit__main path {
    stroke-width: 3.2 !important;
    stroke-dasharray: 17 12 !important;
    animation: circuit-flow 8.5s linear infinite !important;
}

.panel .circuit__nodes circle {
    fill: #ffffff !important;
    stroke-width: 2.2 !important;
}

.panel .circuit__core {
    stroke-width: 3.3 !important;
}

.panel .circuit__pulse {
    stroke-width: 3.8 !important;
}

@keyframes circuit-flow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -120;
    }
}

@media (max-width: 560px) {
    .panel--hero .home-shortcuts {
        margin-top: -60px !important;
        margin-bottom: 66px !important;
    }

    .panel--products {
        padding-top: calc(var(--header-height) + 42px) !important;
    }

    .panel--products .panel__content {
        width: min(100%, 360px) !important;
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 74px) !important;
    }

    .product-showcase__image {
        max-height: 36vh !important;
        border-radius: 16px !important;
    }

    .product-showcase__text {
        margin-top: 12px !important;
        font-size: 0.88rem !important;
        line-height: 1.45 !important;
    }

    .contact-actions {
        max-width: 320px !important;
        gap: 9px !important;
        margin-top: 16px !important;
    }

    .contact-action {
        width: 100% !important;
        min-width: 0 !important;
    }

    .panel .circuit {
        width: 220px !important;
        opacity: 0.085 !important;
    }

    .panel .circuit--top-left {
        top: -72px !important;
        left: -96px !important;
    }

    .panel .circuit--bottom-right {
        right: -96px !important;
        bottom: -76px !important;
    }
}


/* =========================================================
   AJUSTE FINAL — WHATSAPP FLUTUANTE E LOCALIZAÇÃO AZUL
   ---------------------------------------------------------
   Mantém os ajustes manuais e corrige:
   - WhatsApp flutuante em todas as páginas, menos na última;
   - botão Localização azul com texto branco.
   ========================================================= */

/* Reativa o WhatsApp flutuante que havia sido ocultado por ajustes anteriores. */
.whatsapp-sticker {
    position: fixed !important;
    right: calc(18px + env(safe-area-inset-right)) !important;
    bottom: calc(86px + env(safe-area-inset-bottom)) !important;
    width: 58px !important;
    height: 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25d366 !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
    z-index: 999 !important;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.2s ease,
        visibility 0.2s ease !important;
}

.whatsapp-sticker:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22) !important;
}

.whatsapp-sticker:active {
    transform: scale(0.96);
}

.whatsapp-sticker__icon {
    width: 34px !important;
    height: 34px !important;
}

.whatsapp-sticker__icon path {
    fill: currentColor !important;
}

/* Na última página, o WhatsApp flutuante desaparece para não duplicar os botões centrais. */
body.is-last-panel .whatsapp-sticker {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Botão Localização igual aos outros: azul e texto branco. */
.contact-action--location {
    background: var(--brand-700) !important;
    background-color: var(--brand-700) !important;
    color: #ffffff !important;
    border: 1px solid var(--brand-700) !important;
    box-shadow: 0 14px 30px rgba(6, 29, 114, 0.16) !important;
}

.contact-action--location:hover {
    background: var(--brand-800) !important;
    background-color: var(--brand-800) !important;
    border-color: var(--brand-800) !important;
    color: #ffffff !important;
}

.contact-action--location span {
    color: #ffffff !important;
}

@media (max-width: 560px) {
    .whatsapp-sticker {
        width: 54px !important;
        height: 54px !important;
        right: calc(14px + env(safe-area-inset-right)) !important;
        bottom: calc(74px + env(safe-area-inset-bottom)) !important;
    }

    .whatsapp-sticker__icon {
        width: 31px !important;
        height: 31px !important;
    }
}


/* =========================================================
   AJUSTE FINAL — RESPONSIVIDADE DESKTOP PÁGINAS 2, 4 E 5
   ---------------------------------------------------------
   Mantém os ajustes manuais existentes e corrige apenas o
   tamanho/encaixe das páginas 2, 4 e 5 em navegador desktop,
   evitando sobreposição com a logo.
   ========================================================= */

/* Páginas-alvo: 2 História, 4 Evolução/Loja e 5 Produtos */
@media (min-width: 941px) {
    #historia.panel,
    #loja.panel,
    #produtos.panel {
        padding-top: calc(var(--header-height) + 34px) !important;
        padding-bottom: calc(var(--controls-height) + 22px) !important;
    }

    #historia .panel__content,
    #loja .panel__content,
    #produtos .panel__content {
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 76px) !important;
        height: auto !important;
        justify-content: center !important;
        overflow: visible !important;
    }

    #historia .story-title__highlight,
    #loja .story-title__highlight,
    #produtos .story-title__highlight {
        font-size: clamp(1.35rem, 2.25vw, 2.25rem) !important;
        padding: 8px 18px 10px !important;
        margin-bottom: 8px !important;
        border-radius: 16px !important;
        line-height: 1 !important;
    }

    #historia .story-title__line,
    #loja .story-title__line,
    #produtos .story-title__line {
        font-size: clamp(2rem, 4.4vw, 4.05rem) !important;
        line-height: 0.94 !important;
    }

    #historia .story-heading,
    #loja .story-heading,
    #produtos .story-heading {
        margin-bottom: 12px !important;
    }

    #historia .story-list,
    #loja .story-list {
        max-width: 850px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #historia .story-row,
    #loja .story-row {
        grid-template-columns: 128px minmax(0, 1fr) !important;
        gap: 18px !important;
        align-items: center !important;
    }

    #historia .story-row + .story-row,
    #loja .story-row + .story-row {
        margin-top: 10px !important;
    }

    #historia .story-row__icon,
    #loja .story-row__icon {
        width: 106px !important;
        height: 106px !important;
    }

    #historia .story-row__icon svg,
    #loja .story-row__icon svg {
        width: 48px !important;
        height: 48px !important;
    }

    #historia .story-row__content,
    #loja .story-row__content {
        padding-left: 20px !important;
    }

    #historia .story-row__content h3,
    #loja .story-row__content h3 {
        font-size: clamp(0.92rem, 1.18vw, 1.16rem) !important;
        margin-bottom: 2px !important;
        line-height: 1.08 !important;
    }

    #historia .story-row__content p,
    #loja .story-row__content p {
        font-size: clamp(0.82rem, 0.98vw, 0.98rem) !important;
        line-height: 1.32 !important;
        max-width: 620px !important;
    }

    #historia .story-badge,
    #loja .story-badge {
        margin-top: 12px !important;
        padding: 10px 16px !important;
        font-size: 0.78rem !important;
    }

    #produtos .panel__content {
        width: min(100%, 760px) !important;
    }

    #produtos .product-showcase {
        width: min(100%, 680px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #produtos .product-showcase__image {
        width: 100% !important;
        max-height: min(42vh, 335px) !important;
        border-radius: 18px !important;
    }

    #produtos .product-showcase__image img {
        width: 100% !important;
        height: auto !important;
        max-height: min(42vh, 335px) !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    #produtos .product-showcase__text {
        width: min(100%, 620px) !important;
        margin-top: 12px !important;
        font-size: clamp(0.86rem, 0.98vw, 0.98rem) !important;
        line-height: 1.38 !important;
        text-align: center !important;
    }
}

/* Ajuste extra para notebooks/telas desktop baixas */
@media (min-width: 941px) and (max-height: 820px) {
    #historia.panel,
    #loja.panel,
    #produtos.panel {
        padding-top: calc(var(--header-height) + 20px) !important;
        padding-bottom: calc(var(--controls-height) + 14px) !important;
    }

    #historia .panel__content,
    #loja .panel__content,
    #produtos .panel__content {
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 48px) !important;
    }

    #historia .story-title__highlight,
    #loja .story-title__highlight,
    #produtos .story-title__highlight {
        font-size: clamp(1.15rem, 1.85vw, 1.85rem) !important;
        padding: 7px 16px 9px !important;
        margin-bottom: 6px !important;
    }

    #historia .story-title__line,
    #loja .story-title__line,
    #produtos .story-title__line {
        font-size: clamp(1.8rem, 3.7vw, 3.35rem) !important;
    }

    #historia .story-heading,
    #loja .story-heading,
    #produtos .story-heading {
        margin-bottom: 8px !important;
    }

    #historia .story-row,
    #loja .story-row {
        grid-template-columns: 104px minmax(0, 1fr) !important;
        gap: 14px !important;
    }

    #historia .story-row + .story-row,
    #loja .story-row + .story-row {
        margin-top: 7px !important;
    }

    #historia .story-row__icon,
    #loja .story-row__icon {
        width: 86px !important;
        height: 86px !important;
    }

    #historia .story-row__icon svg,
    #loja .story-row__icon svg {
        width: 40px !important;
        height: 40px !important;
    }

    #historia .story-row__content,
    #loja .story-row__content {
        padding-left: 16px !important;
    }

    #historia .story-row__content h3,
    #loja .story-row__content h3 {
        font-size: 0.92rem !important;
        margin-bottom: 1px !important;
    }

    #historia .story-row__content p,
    #loja .story-row__content p {
        font-size: 0.78rem !important;
        line-height: 1.24 !important;
    }

    #historia .story-badge,
    #loja .story-badge {
        margin-top: 8px !important;
        padding: 8px 13px !important;
        font-size: 0.68rem !important;
    }

    #produtos .product-showcase {
        width: min(100%, 600px) !important;
    }

    #produtos .product-showcase__image,
    #produtos .product-showcase__image img {
        max-height: min(34vh, 250px) !important;
    }

    #produtos .product-showcase__text {
        margin-top: 9px !important;
        font-size: 0.82rem !important;
        line-height: 1.3 !important;
    }
}

@media (min-width: 1440px) {
    #historia .story-list,
    #loja .story-list {
        max-width: 880px !important;
    }

    #produtos .product-showcase {
        max-width: 720px !important;
    }
}


/* =========================================================
   AJUSTE FINAL — CORREÇÃO ESPECÍFICA PÁGINA 2 DESKTOP
   ---------------------------------------------------------
   Mantém os ajustes manuais e corrige somente a página 2
   no navegador desktop, evitando conteúdo grande demais e
   sobreposição com a logo.
   ========================================================= */

@media (min-width: 941px) {
    /* Página 2 — História */
    #historia.panel {
        padding-top: calc(var(--header-height) + 26px) !important;
        padding-bottom: calc(var(--controls-height) + 18px) !important;
    }

    #historia .panel__content {
        width: min(100%, 820px) !important;
        max-width: 820px !important;
        height: auto !important;
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 62px) !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: visible !important;
    }

    #historia .story-layout {
        max-width: 820px !important;
    }

    #historia .story-heading {
        width: 100% !important;
        margin: 0 auto 10px !important;
    }

    #historia .story-title {
        margin: 0 !important;
    }

    #historia .story-title__highlight {
        font-size: clamp(1.1rem, 1.75vw, 1.78rem) !important;
        padding: 7px 16px 9px !important;
        margin-bottom: 6px !important;
        border-radius: 14px !important;
        line-height: 1 !important;
    }

    #historia .story-title__line {
        font-size: clamp(1.65rem, 3.35vw, 3rem) !important;
        line-height: 0.94 !important;
        letter-spacing: -0.05em !important;
    }

    #historia .story-list {
        width: min(100%, 800px) !important;
        max-width: 800px !important;
        margin: 0 auto !important;
    }

    #historia .story-row {
        grid-template-columns: 92px minmax(0, 1fr) !important;
        gap: 14px !important;
        align-items: center !important;
    }

    #historia .story-row + .story-row {
        margin-top: 7px !important;
    }

    #historia .story-row__icon {
        width: 78px !important;
        height: 78px !important;
        min-width: 78px !important;
    }

    #historia .story-row__icon svg {
        width: 36px !important;
        height: 36px !important;
    }

    #historia .story-row__content {
        padding-left: 14px !important;
        border-left-width: 2px !important;
    }

    #historia .story-row__content h3 {
        font-size: clamp(0.82rem, 1vw, 1rem) !important;
        margin-bottom: 1px !important;
        line-height: 1.05 !important;
    }

    #historia .story-row__content p {
        max-width: 590px !important;
        font-size: clamp(0.74rem, 0.86vw, 0.88rem) !important;
        line-height: 1.23 !important;
    }

    #historia .story-badge {
        margin-top: 9px !important;
        padding: 8px 13px !important;
        font-size: 0.68rem !important;
        line-height: 1.1 !important;
    }

    #historia .story-arrow {
        display: none !important;
    }
}

/* Ajuste ainda mais compacto para notebooks ou janelas baixas */
@media (min-width: 941px) and (max-height: 760px) {
    #historia.panel {
        padding-top: calc(var(--header-height) + 12px) !important;
        padding-bottom: calc(var(--controls-height) + 10px) !important;
    }

    #historia .panel__content {
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 34px) !important;
        transform: translateY(-4px);
    }

    #historia .story-heading {
        margin-bottom: 6px !important;
    }

    #historia .story-title__highlight {
        font-size: clamp(1rem, 1.48vw, 1.45rem) !important;
        padding: 6px 14px 8px !important;
        margin-bottom: 5px !important;
    }

    #historia .story-title__line {
        font-size: clamp(1.45rem, 2.85vw, 2.55rem) !important;
    }

    #historia .story-row {
        grid-template-columns: 76px minmax(0, 1fr) !important;
        gap: 10px !important;
    }

    #historia .story-row + .story-row {
        margin-top: 5px !important;
    }

    #historia .story-row__icon {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
    }

    #historia .story-row__icon svg {
        width: 30px !important;
        height: 30px !important;
    }

    #historia .story-row__content {
        padding-left: 12px !important;
    }

    #historia .story-row__content h3 {
        font-size: 0.78rem !important;
    }

    #historia .story-row__content p {
        font-size: 0.69rem !important;
        line-height: 1.16 !important;
    }

    #historia .story-badge {
        margin-top: 6px !important;
        padding: 7px 11px !important;
        font-size: 0.61rem !important;
    }
}

/* Desktop estreito, mas ainda web: evita largura excessiva */
@media (min-width: 941px) and (max-width: 1180px) {
    #historia .panel__content {
        width: min(100%, 760px) !important;
        max-width: 760px !important;
    }

    #historia .story-list {
        max-width: 740px !important;
    }

    #historia .story-row__content p {
        max-width: 540px !important;
    }
}


/* =========================================================
   AJUSTE FINAL — CORREÇÃO ESPECÍFICA PÁGINA 3 DESKTOP
   ---------------------------------------------------------
   Mantém os ajustes manuais e corrige somente a página 3
   no navegador desktop, evitando conteúdo grande demais e
   sobreposição com a logo.
   ========================================================= */

@media (min-width: 941px) {
    /* Página 3 — Sonhadores / Quem está por trás */
    #pessoas.panel {
        padding-top: calc(var(--header-height) + 28px) !important;
        padding-bottom: calc(var(--controls-height) + 18px) !important;
    }

    #pessoas .panel__content {
        width: min(100%, 850px) !important;
        max-width: 850px !important;
        height: auto !important;
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 64px) !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: visible !important;
    }

    #pessoas .story-layout {
        max-width: 850px !important;
    }

    #pessoas .story-heading {
        width: 100% !important;
        margin: 0 auto 14px !important;
    }

    #pessoas .story-title {
        margin: 0 !important;
    }

    #pessoas .story-title__highlight {
        font-size: clamp(1.14rem, 1.85vw, 1.9rem) !important;
        padding: 7px 16px 9px !important;
        margin-bottom: 6px !important;
        border-radius: 14px !important;
        line-height: 1 !important;
    }

    #pessoas .story-title__line {
        font-size: clamp(1.75rem, 3.6vw, 3.35rem) !important;
        line-height: 0.94 !important;
        letter-spacing: -0.05em !important;
    }

    #pessoas .story-list,
    #pessoas .people-list {
        width: min(100%, 820px) !important;
        max-width: 820px !important;
        margin: 0 auto !important;
    }

    #pessoas .story-row,
    #pessoas .people-row {
        grid-template-columns: 118px minmax(0, 1fr) !important;
        gap: 18px !important;
        align-items: center !important;
    }

    #pessoas .story-row + .story-row,
    #pessoas .people-row + .people-row {
        margin-top: 12px !important;
    }

    #pessoas .people-photo,
    #pessoas .story-row__icon {
        width: 104px !important;
        height: 104px !important;
        min-width: 104px !important;
    }

    #pessoas .people-photo img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    #pessoas .people-photo--placeholder span {
        font-size: 1.45rem !important;
    }

    #pessoas .story-row__content,
    #pessoas .people-content {
        padding-left: 20px !important;
        border-left-width: 2px !important;
    }

    #pessoas .story-row__content h3,
    #pessoas .people-content h3 {
        font-size: clamp(0.92rem, 1.18vw, 1.12rem) !important;
        margin-bottom: 3px !important;
        line-height: 1.08 !important;
    }

    #pessoas .story-row__content p,
    #pessoas .people-content p {
        max-width: 610px !important;
        font-size: clamp(0.8rem, 0.96vw, 0.94rem) !important;
        line-height: 1.3 !important;
    }

    #pessoas .story-badge {
        margin-top: 13px !important;
        padding: 9px 14px !important;
        font-size: 0.72rem !important;
        line-height: 1.12 !important;
    }

    #pessoas .story-arrow {
        display: none !important;
    }
}

/* Ajuste ainda mais compacto para notebooks ou janelas baixas */
@media (min-width: 941px) and (max-height: 760px) {
    #pessoas.panel {
        padding-top: calc(var(--header-height) + 12px) !important;
        padding-bottom: calc(var(--controls-height) + 10px) !important;
    }

    #pessoas .panel__content {
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 34px) !important;
        width: min(100%, 760px) !important;
        max-width: 760px !important;
        transform: translateY(-4px);
    }

    #pessoas .story-heading {
        margin-bottom: 7px !important;
    }

    #pessoas .story-title__highlight {
        font-size: clamp(1rem, 1.5vw, 1.48rem) !important;
        padding: 6px 14px 8px !important;
        margin-bottom: 5px !important;
    }

    #pessoas .story-title__line {
        font-size: clamp(1.5rem, 2.95vw, 2.65rem) !important;
    }

    #pessoas .story-row,
    #pessoas .people-row {
        grid-template-columns: 86px minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    #pessoas .story-row + .story-row,
    #pessoas .people-row + .people-row {
        margin-top: 7px !important;
    }

    #pessoas .people-photo,
    #pessoas .story-row__icon {
        width: 74px !important;
        height: 74px !important;
        min-width: 74px !important;
    }

    #pessoas .people-photo--placeholder span {
        font-size: 1.1rem !important;
    }

    #pessoas .story-row__content,
    #pessoas .people-content {
        padding-left: 14px !important;
    }

    #pessoas .story-row__content h3,
    #pessoas .people-content h3 {
        font-size: 0.82rem !important;
        margin-bottom: 1px !important;
    }

    #pessoas .story-row__content p,
    #pessoas .people-content p {
        font-size: 0.72rem !important;
        line-height: 1.18 !important;
    }

    #pessoas .story-badge {
        margin-top: 7px !important;
        padding: 7px 11px !important;
        font-size: 0.62rem !important;
    }
}

/* Desktop estreito, mas ainda web */
@media (min-width: 941px) and (max-width: 1180px) {
    #pessoas .panel__content {
        width: min(100%, 780px) !important;
        max-width: 780px !important;
    }

    #pessoas .story-list,
    #pessoas .people-list {
        max-width: 760px !important;
    }

    #pessoas .story-row__content p,
    #pessoas .people-content p {
        max-width: 540px !important;
    }
}


/* =========================================================
   AJUSTE FINAL — PADRÃO ÚNICO DESKTOP PARA TODAS AS PÁGINAS
   ---------------------------------------------------------
   Mantém os ajustes manuais existentes e padroniza o desktop
   das páginas internas para seguirem a mesma linguagem visual.
   Páginas alvo: 2, 3, 4, 5 e 6.
   ========================================================= */

/* ------------------------------
   PADRÃO DESKTOP GERAL
   ------------------------------ */
@media (min-width: 941px) {
    /* Estrutura geral das páginas internas */
    #historia.panel,
    #pessoas.panel,
    #loja.panel,
    #produtos.panel,
    #contato.panel {
        padding-top: calc(var(--header-height) + 28px) !important;
        padding-bottom: calc(var(--controls-height) + 18px) !important;
    }

    #historia .panel__content,
    #pessoas .panel__content,
    #loja .panel__content,
    #produtos .panel__content,
    #contato .panel__content {
        width: min(100%, 840px) !important;
        max-width: 840px !important;
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 64px) !important;
        height: auto !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: visible !important;
        margin: 0 auto !important;
    }

    #historia .story-layout,
    #pessoas .story-layout,
    #loja .story-layout,
    #produtos .story-layout,
    #contato .story-layout {
        width: 100% !important;
        max-width: 840px !important;
    }

    /* Títulos em padrão único */
    #historia .story-heading,
    #pessoas .story-heading,
    #loja .story-heading,
    #produtos .story-heading,
    #contato .story-heading {
        width: 100% !important;
        margin: 0 auto 12px !important;
    }

    #historia .story-title,
    #pessoas .story-title,
    #loja .story-title,
    #produtos .story-title,
    #contato .story-title {
        margin: 0 !important;
    }

    #historia .story-title__highlight,
    #pessoas .story-title__highlight,
    #loja .story-title__highlight,
    #produtos .story-title__highlight,
    #contato .story-title__highlight {
        font-size: clamp(1.12rem, 1.8vw, 1.85rem) !important;
        padding: 7px 16px 9px !important;
        margin-bottom: 6px !important;
        border-radius: 14px !important;
        line-height: 1 !important;
    }

    #historia .story-title__line,
    #pessoas .story-title__line,
    #loja .story-title__line,
    #produtos .story-title__line,
    #contato .story-title__line {
        font-size: clamp(1.7rem, 3.45vw, 3.15rem) !important;
        line-height: 0.94 !important;
        letter-spacing: -0.05em !important;
    }

    /* Padrão de listas / blocos textuais */
    #historia .story-list,
    #pessoas .story-list,
    #pessoas .people-list,
    #loja .story-list,
    #contato .story-list {
        width: min(100%, 810px) !important;
        max-width: 810px !important;
        margin: 0 auto !important;
    }

    #historia .story-row,
    #pessoas .story-row,
    #pessoas .people-row,
    #loja .story-row,
    #contato .story-row {
        grid-template-columns: 100px minmax(0, 1fr) !important;
        gap: 16px !important;
        align-items: center !important;
    }

    #historia .story-row + .story-row,
    #pessoas .story-row + .story-row,
    #pessoas .people-row + .people-row,
    #loja .story-row + .story-row,
    #contato .story-row + .story-row {
        margin-top: 8px !important;
    }

    #historia .story-row__icon,
    #pessoas .story-row__icon,
    #loja .story-row__icon,
    #contato .story-row__icon,
    #pessoas .people-photo {
        width: 84px !important;
        height: 84px !important;
        min-width: 84px !important;
    }

    #historia .story-row__icon svg,
    #pessoas .story-row__icon svg,
    #loja .story-row__icon svg,
    #contato .story-row__icon svg {
        width: 38px !important;
        height: 38px !important;
    }

    #pessoas .people-photo img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    #pessoas .people-photo--placeholder span {
        font-size: 1.2rem !important;
    }

    #historia .story-row__content,
    #pessoas .story-row__content,
    #pessoas .people-content,
    #loja .story-row__content,
    #contato .story-row__content {
        padding-left: 16px !important;
        border-left-width: 2px !important;
    }

    #historia .story-row__content h3,
    #pessoas .story-row__content h3,
    #pessoas .people-content h3,
    #loja .story-row__content h3,
    #contato .story-row__content h3 {
        font-size: clamp(0.84rem, 1.02vw, 1.02rem) !important;
        margin-bottom: 1px !important;
        line-height: 1.08 !important;
    }

    #historia .story-row__content p,
    #pessoas .story-row__content p,
    #pessoas .people-content p,
    #loja .story-row__content p,
    #contato .story-row__content p {
        max-width: 580px !important;
        font-size: clamp(0.74rem, 0.9vw, 0.9rem) !important;
        line-height: 1.25 !important;
    }

    #historia .story-badge,
    #pessoas .story-badge,
    #loja .story-badge,
    #contato .story-badge {
        margin-top: 9px !important;
        padding: 8px 13px !important;
        font-size: 0.68rem !important;
        line-height: 1.12 !important;
    }

    /* Página de produtos no mesmo padrão */
    #produtos .panel__content {
        width: min(100%, 760px) !important;
        max-width: 760px !important;
    }

    #produtos .product-showcase {
        width: min(100%, 660px) !important;
        max-width: 660px !important;
        margin: 0 auto !important;
    }

    #produtos .product-showcase__image {
        width: 100% !important;
        max-height: min(40vh, 315px) !important;
        border-radius: 18px !important;
    }

    #produtos .product-showcase__image img {
        width: 100% !important;
        height: auto !important;
        max-height: min(40vh, 315px) !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    #produtos .product-showcase__text {
        width: min(100%, 600px) !important;
        margin-top: 12px !important;
        font-size: clamp(0.82rem, 0.95vw, 0.96rem) !important;
        line-height: 1.34 !important;
        text-align: center !important;
    }

    /* Página de contato no mesmo padrão */
    #contato .contact-actions {
        width: min(100%, 760px) !important;
        margin: 18px auto 0 !important;
        gap: 10px !important;
        justify-content: center !important;
    }

    #contato .contact-action {
        min-width: 150px !important;
        font-size: 0.92rem !important;
    }

    /* Remove setas internas decorativas caso existam nessas páginas */
    #historia .story-arrow,
    #pessoas .story-arrow,
    #loja .story-arrow,
    #contato .story-arrow {
        display: none !important;
    }
}

/* ------------------------------
   DESKTOP BAIXO / NOTEBOOK
   ------------------------------ */
@media (min-width: 941px) and (max-height: 820px) {
    #historia.panel,
    #pessoas.panel,
    #loja.panel,
    #produtos.panel,
    #contato.panel {
        padding-top: calc(var(--header-height) + 14px) !important;
        padding-bottom: calc(var(--controls-height) + 10px) !important;
    }

    #historia .panel__content,
    #pessoas .panel__content,
    #loja .panel__content,
    #produtos .panel__content,
    #contato .panel__content {
        min-height: calc(100dvh - var(--header-height) - var(--controls-height) - 38px) !important;
        transform: translateY(-3px);
    }

    #historia .story-heading,
    #pessoas .story-heading,
    #loja .story-heading,
    #produtos .story-heading,
    #contato .story-heading {
        margin-bottom: 7px !important;
    }

    #historia .story-title__highlight,
    #pessoas .story-title__highlight,
    #loja .story-title__highlight,
    #produtos .story-title__highlight,
    #contato .story-title__highlight {
        font-size: clamp(1rem, 1.48vw, 1.45rem) !important;
        padding: 6px 14px 8px !important;
        margin-bottom: 5px !important;
    }

    #historia .story-title__line,
    #pessoas .story-title__line,
    #loja .story-title__line,
    #produtos .story-title__line,
    #contato .story-title__line {
        font-size: clamp(1.45rem, 2.9vw, 2.6rem) !important;
    }

    #historia .story-row,
    #pessoas .story-row,
    #pessoas .people-row,
    #loja .story-row,
    #contato .story-row {
        grid-template-columns: 82px minmax(0, 1fr) !important;
        gap: 11px !important;
    }

    #historia .story-row + .story-row,
    #pessoas .story-row + .story-row,
    #pessoas .people-row + .people-row,
    #loja .story-row + .story-row,
    #contato .story-row + .story-row {
        margin-top: 6px !important;
    }

    #historia .story-row__icon,
    #pessoas .story-row__icon,
    #loja .story-row__icon,
    #contato .story-row__icon,
    #pessoas .people-photo {
        width: 68px !important;
        height: 68px !important;
        min-width: 68px !important;
    }

    #historia .story-row__icon svg,
    #pessoas .story-row__icon svg,
    #loja .story-row__icon svg,
    #contato .story-row__icon svg {
        width: 31px !important;
        height: 31px !important;
    }

    #pessoas .people-photo--placeholder span {
        font-size: 1rem !important;
    }

    #historia .story-row__content,
    #pessoas .story-row__content,
    #pessoas .people-content,
    #loja .story-row__content,
    #contato .story-row__content {
        padding-left: 13px !important;
    }

    #historia .story-row__content h3,
    #pessoas .story-row__content h3,
    #pessoas .people-content h3,
    #loja .story-row__content h3,
    #contato .story-row__content h3 {
        font-size: 0.79rem !important;
    }

    #historia .story-row__content p,
    #pessoas .story-row__content p,
    #pessoas .people-content p,
    #loja .story-row__content p,
    #contato .story-row__content p {
        font-size: 0.7rem !important;
        line-height: 1.17 !important;
    }

    #historia .story-badge,
    #pessoas .story-badge,
    #loja .story-badge,
    #contato .story-badge {
        margin-top: 6px !important;
        padding: 7px 11px !important;
        font-size: 0.61rem !important;
    }

    #produtos .product-showcase {
        width: min(100%, 580px) !important;
    }

    #produtos .product-showcase__image,
    #produtos .product-showcase__image img {
        max-height: min(32vh, 232px) !important;
    }

    #produtos .product-showcase__text {
        margin-top: 9px !important;
        font-size: 0.8rem !important;
        line-height: 1.28 !important;
    }

    #contato .contact-actions {
        margin-top: 14px !important;
        gap: 8px !important;
    }

    #contato .contact-action {
        min-width: 142px !important;
        font-size: 0.84rem !important;
    }
}

/* ------------------------------
   DESKTOP MAIS ESTREITO
   ------------------------------ */
@media (min-width: 941px) and (max-width: 1180px) {
    #historia .panel__content,
    #pessoas .panel__content,
    #loja .panel__content,
    #contato .panel__content {
        width: min(100%, 760px) !important;
        max-width: 760px !important;
    }

    #historia .story-list,
    #pessoas .story-list,
    #pessoas .people-list,
    #loja .story-list,
    #contato .story-list {
        max-width: 740px !important;
    }

    #historia .story-row__content p,
    #pessoas .story-row__content p,
    #pessoas .people-content p,
    #loja .story-row__content p,
    #contato .story-row__content p {
        max-width: 520px !important;
    }

    #produtos .product-showcase {
        max-width: 610px !important;
    }
}

/* ------------------------------
   DESKTOP MUITO LARGO
   ------------------------------ */
@media (min-width: 1440px) {
    #historia .story-list,
    #pessoas .story-list,
    #pessoas .people-list,
    #loja .story-list,
    #contato .story-list {
        max-width: 840px !important;
    }

    #produtos .product-showcase {
        max-width: 680px !important;
    }
}


/* =========================================================
   AJUSTE FINAL — TEXTO CONTATO E TÍTULO PRODUTOS
   ---------------------------------------------------------
   Mantém os ajustes manuais e corrige:
   - texto da página Contato maior;
   - título da página Produtos alinhado ao mesmo padrão
     visual das demais páginas no desktop.
   ========================================================= */

/* Texto da página final maior e mais legível */
@media (min-width: 941px) {
    #contato .story-row__content p,
    #contato .people-content p {
        font-size: clamp(0.92rem, 1.12vw, 1.12rem) !important;
        line-height: 1.42 !important;
        max-width: 650px !important;
    }

    #contato .story-row__content h3 {
        font-size: clamp(0.98rem, 1.18vw, 1.18rem) !important;
        margin-bottom: 5px !important;
    }

    /* Produtos: título com a mesma largura/alinhamento das demais páginas */
    #produtos .panel__content {
        width: min(100%, 840px) !important;
        max-width: 840px !important;
        align-items: center !important;
    }

    #produtos .story-heading {
        width: min(100%, 810px) !important;
        max-width: 810px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 12px !important;
        text-align: left !important;
        align-self: center !important;
    }

    #produtos .story-title {
        width: 100% !important;
        text-align: left !important;
    }

    #produtos .story-title__highlight {
        margin-left: 0 !important;
        margin-right: auto !important;
        text-align: left !important;
    }

    #produtos .product-showcase {
        width: min(100%, 660px) !important;
        max-width: 660px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Em notebook/tela baixa, mantém o texto maior sem estourar */
@media (min-width: 941px) and (max-height: 820px) {
    #contato .story-row__content p,
    #contato .people-content p {
        font-size: 0.86rem !important;
        line-height: 1.32 !important;
    }

    #contato .story-row__content h3 {
        font-size: 0.9rem !important;
        margin-bottom: 3px !important;
    }

    #produtos .story-heading {
        width: min(100%, 760px) !important;
        max-width: 760px !important;
        margin-bottom: 8px !important;
    }
}

/* Em telas menores que desktop, preserva o padrão responsivo já existente */
@media (max-width: 940px) {
    #contato .story-row__content p {
        font-size: 0.95rem !important;
        line-height: 1.42 !important;
    }

    #produtos .story-heading,
    #produtos .story-title {
        text-align: left !important;
    }

    #produtos .story-title__highlight {
        margin-left: 0 !important;
        margin-right: auto !important;
    }
}

