* { margin: 0; padding: 0; box-sizing: border-box; }

    :root { --page-x: 120px; }

    body {
      font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
      background: #fff;
      color: #111;
    }

    body.drawerOpen {
      overflow: hidden;
    }

    /* HEADER */
    header {
      height: 78px;
      background: #000000;
      border-radius: 0;
      margin: 0;
      width: 100%;
      margin-left: 0;
      display: flex;
      align-items: center;
      position: relative;
      top: 0;
      z-index: 1000;
      font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    }

    header * {
      font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    }

    .headerInner {
      width: 100%;
      margin: 0;
      padding: 0 var(--page-x);
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    .logo {
      display: block;
      height: 28px;
      width: auto;
    }

    .logoLink {
      position: absolute;
      left: 50vw;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      line-height: 0;
      text-decoration: none;
      z-index: 1;
    }

    .logoLink:hover {
      opacity: 1 !important;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex: 1;
      position: relative;
    }

    .navCenter {
      position: static;
      transform: none;
      display: flex;
      align-items: center;
      gap: 44px;
      margin-right: auto;
    }

    nav a {
      color: rgba(255, 255, 255);
      text-decoration: none;
      margin-left: 0;
      font-size: 14px;
      font-weight: 220;
      letter-spacing: .2px;
      transition: .3s;
    }

    nav a:hover { color: #fff; }

    .menuTrigger {
      color: #fff;
      background: none;
      border: 0;
      margin-left: 0;
      font-size: 14px;
      font-weight: 220;
      letter-spacing: .2px;
      font-family: inherit;
      cursor: pointer;
      transition: .3s;
    }

    .menuTrigger:hover { color: #fff; }

    .headerEnterBtn {
      margin-left: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 220;
      letter-spacing: .2px;
      line-height: 1;
      text-decoration: none;
      color: #fff !important;
      background: none;
      border: none;
      padding: 0;
      transition: opacity .2s ease;
    }

    .headerCartBtn {
      margin-left: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      line-height: 0;
      transition: opacity .2s ease;
    }

    .headerCartBtn:hover { opacity: .75; }

    .headerCartBtn svg {
      width: 20px;
      height: 20px;
    }

    .headerEnterBtn:hover {
      opacity: 0.6;
    }

    .slide {
      flex: 0 0 100%;
      min-width: 100%;
      position: relative;
      height: 100%;
      overflow: hidden;
    }

    /* ===== MEGA MENU ===== */
    .megaMenu {
      position: fixed;
      top: 78px;
      left: 0;
      right: 0;
      background: #000;
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

    .megaMenu.isOpen {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .megaMenuInner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      padding: 40px var(--page-x) 24px;
      border-top: none;
    }

    .megaMenuCol {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding-right: 48px;
    }

    .megaMenuLink {
      color: transparent;
      background-image: linear-gradient(to right, rgba(255,255,255,0.35) 50%, #fff 50%);
      background-size: 200% 100%;
      background-position: right center;
      -webkit-background-clip: text;
      background-clip: text;
      text-decoration: none;
      font-size: 22px;
      font-weight: 300;
      letter-spacing: -.01em;
      padding: 0;
      margin: 5px 0;
      display: inline-block;
      line-height: 1.4;
      transition: background-position .7s ease;
    }

    .megaMenuLink:hover {
      background-position: left center;
    }

    .megaMenuLink--highlight {
      font-weight: 200;
      font-size: 18px;
      margin-top: 0;
    }

    .megaMenuDivider {
      height: 1px;
      background: rgba(255, 255, 255, 0.15);
      margin: 12px 0;
    }

    /* SLIDER */
    .slider {
      position: relative;
      width: 100%;
      height: min(91vh, 920px);
      overflow: hidden;
      background: #111;
    }

    .slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform .7s ease-in-out;
      will-change: transform;
    }

    .slide {
      flex: 0 0 100%;
      min-width: 100%;
      position: relative;
      height: 100%;
      overflow: hidden;
    }

    .slide--image { background: #171717; }

    .slide--image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    .slide--tone-2 { background: #6d6d6d; }
    .slide--tone-3 { background: #b3b3b3; }

    .dots {
      position: absolute;
      left: 50%;
      bottom: 28px;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 2;
    }

    .dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      border: 0;
      background: rgba(255, 255, 255, .45);
      cursor: pointer;
    }

    .dot.active { background: #fff; }

    .sliderProgress {
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 100%;
      height: 2px;
      background: rgba(255, 255, 255, .25);
      overflow: hidden;
      z-index: 2;
    }

    .sliderProgress span {
      display: block;
      height: 100%;
      width: 100%;
      background: #fff;
      transform-origin: left center;
      transform: scaleX(0);
    }

    .sliderProgress span.isRunning {
      animation: sliderProgress 10s linear infinite;
    }

    @keyframes sliderProgress {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    /* CATEGORIES */
    .categorySection {
      padding: 90px var(--page-x) 50px;
      background: #fff;
    }

    .manifestoSection {
      background: #fff;
      padding: 104px var(--page-x);
    }

    .manifestoText {
      max-width: 980px;
      margin: 0;
      padding: 0;
      text-align: left;
      font-size: 40px;
      font-weight: 200;
      line-height: 1.08;
      letter-spacing: -.01em;
    }

    .manifestoLine {
      display: block;
      opacity: 1;
      transform: none;
    }

    .revealOnScroll { opacity: 1; transform: none; }

    html.reveal-enabled .revealOnScroll {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 1.1s ease, transform 1.1s ease;
      will-change: opacity, transform;
    }

    html.reveal-enabled .revealOnScroll.isVisible,
    html.reveal-enabled .revealOnScroll.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    html.reveal-enabled .manifestoText.revealOnScroll { opacity: 1; transform: none; transition: none; }

    html.reveal-enabled .manifestoLine {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 1.1s ease, transform 1.1s ease;
    }

    html.reveal-enabled .manifestoText.isVisible .manifestoLine,
    html.reveal-enabled .manifestoText.is-visible .manifestoLine {
      opacity: 1;
      transform: translateY(0);
    }

    html.reveal-enabled .manifestoText.isVisible .manifestoLine:nth-child(2),
    html.reveal-enabled .manifestoText.is-visible .manifestoLine:nth-child(2) {
      transition-delay: .22s;
    }

    .endImageText.revealOnScroll { opacity: 1; transform: translate(-50%, -50%); }
    html.reveal-enabled .endImageText.revealOnScroll { opacity: 0; transform: translate(-50%, calc(-50% + 18px)); }
    html.reveal-enabled .endImageText.revealOnScroll.isVisible,
    html.reveal-enabled .endImageText.revealOnScroll.is-visible { opacity: 1; transform: translate(-50%, -50%); }

    .endNotebookCta.revealOnScroll { opacity: 1; transform: translate(-50%, -50%); }
    html.reveal-enabled .endNotebookCta.revealOnScroll { opacity: 0; transform: translate(-50%, calc(-50% + 18px)); }
    html.reveal-enabled .endNotebookCta.revealOnScroll.isVisible,
    html.reveal-enabled .endNotebookCta.revealOnScroll.is-visible { opacity: 1; transform: translate(-50%, -50%); }
    html.reveal-enabled .endNotebookCta.revealOnScroll.isVisible:hover,
    html.reveal-enabled .endNotebookCta.revealOnScroll.is-visible:hover { transform: translate(-50%, calc(-50% - 4px)); }

    .manifestoSection + .categorySection { margin-top: 0; }

    .categoryHeader {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 36px;
    }

    .categoryHeader h2 { font-size: 28px; font-weight: 400; line-height: 1.1; }
    .categoryHeader p { margin-top: 10px; color: #6d6d6d; font-size: 16px; line-height: 1.4; }

    .carouselWrap { position: relative; }

    .carouselNextBtn {
      position: absolute;
      right: 10px;
      top: 190px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.7);
      background: rgba(0, 0, 0, 0.2);
      display: inline-grid;
      place-items: center;
      padding: 0;
      cursor: pointer;
      z-index: 5;
      transition: opacity .2s ease, border-color .2s ease, background .2s ease;
    }

    .carouselNextBtn::before {
      content: "";
      width: 8px;
      height: 8px;
      border-top: 1.8px solid #fff;
      border-right: 1.8px solid #fff;
      transform: translateX(-1px) rotate(45deg);
    }

    .carouselPrevBtn { left: 10px; right: auto; }

    .categoryRailWrap .carouselNextBtn,
    .categoryRailWrap .carouselPrevBtn {
      top: calc(50% - 120px);
      transform: translateY(-50%);
    }

    .carouselPrevBtn::before { transform: translateX(1px) rotate(-135deg); }

    .carouselNextBtn:hover {
      border-color: #fff;
      background: rgba(0, 0, 0, 0.32);
    }

    .carouselNextBtn[hidden] { opacity: 0; pointer-events: none; }

    .carouselWrap::before,
    .carouselWrap::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 12px;
      width: 90px;
      pointer-events: none;
      z-index: 1;
      opacity: 0;
      transition: opacity .3s;
    }

    .carouselWrap::before { left: -1px; background: linear-gradient(to right, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 100%); }
    .carouselWrap::after { right: -1px; background: linear-gradient(to left, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%); }
    .carouselWrap.carouselWrap--fadeLeft::before { opacity: 1; }
    .carouselWrap.carouselWrap--fadeRight::after { opacity: 1; }

    .categoryCarousel {
      display: flex;
      gap: 28px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 12px;
      scrollbar-width: none;
      cursor: grab;
      user-select: none;
    }

    .categoryCarousel.isDragging { cursor: grabbing; }
    .categoryCarousel::-webkit-scrollbar { display: none; }

    .categoryCard {
      flex: 0 0 auto;
      width: 236px;
      text-align: center;
      text-decoration: none;
      color: inherit;
      transition: transform .3s;
    }

    .categoryCard figure {
      width: 236px;
      height: 236px;
      border-radius: 9px;
      background: #f4f4f4;
      border: 1px solid #ededed;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .categoryCard img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
    .categoryCard span { font-size: 15px; letter-spacing: .01em; transition: transform .25s ease, color .25s ease; display: inline-block; }
    .categoryCard:hover img { transform: scale(1.06); }
    .categoryCard:hover span { transform: translateY(-6px); color: inherit; }
    .categoryCard--all figure { background: #111; color: #fff; border-color: #111; }
    .categoryCard--all span { font-weight: 600; }
    .categoryCard--all svg { width: 26px; height: 26px; }

    .categorySection--ap {
      background: #050505;
      color: #f3f3f3;
      padding: 0;
      min-height: unset;
      overflow: hidden;
    }

    .categoryShell {
      display: grid;
      grid-template-columns: minmax(280px, 430px) 1fr;
      gap: 34px;
      align-items: start;
      padding: 240px var(--page-x) 0;
    }

    .categoryRailWrap {
      position: relative;
      min-width: 0;
      padding-bottom: 240px;
    }

    .categoryIntro { position: static; top: auto; }

    .categoryKicker {
      display: block;
      font-size: 13px;
      font-weight: 300;
      letter-spacing: .24em;
      color: rgba(255, 255, 255, .65);
      margin-bottom: 14px;
      text-transform: uppercase;
    }

    .categorySection--ap .categoryIntro h2 {
      font-size: 62px;
      line-height: .96;
      font-weight: 100;
      letter-spacing: -.02em;
      margin-bottom: 18px;
    }

    .categoryCta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      text-decoration: none;
      font-size: 20px;
      font-weight: 300;
    }

    .categoryCta::before { content: ""; width: 52px; height: 1px; background: rgba(255,255,255,.75); transition: width .25s ease; }
    .categoryCta:hover::before { width: 68px; }

    .categoryRailWrap::before,
    .categoryRailWrap::after { display: none; }

    .categoryRail {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding-bottom: 10px;
      cursor: grab;
      user-select: none;
    }

    .categoryRail::-webkit-scrollbar { display: none; }
    .categoryRail.isDragging { cursor: grabbing; }

    /* ===== CATEGORY ITEMS ===== */
    .categoryItem {
      flex: 0 0 440px;
      color: #f5f5f5;
      text-decoration: none;
      position: relative;
    }

    .categoryItemFigure {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 0;
      background: #cfcfcf;
      margin-bottom: 0;
      position: relative;
    }

    .categoryItemFigure::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.28);
      pointer-events: none;
      z-index: 1;
    }

    .categoryItemFigure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
    .categoryItem[href*="categoria=cabeceiras"] .categoryItemFigure img { object-position: center 40%; }

    .categoryItemTitle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 28px;
      line-height: 1.05;
      font-weight: 300;
      letter-spacing: -.01em;
      color: #fff;
      text-align: center;
      z-index: 2;
      pointer-events: none;
      width: 90%;
    }

    .categoryItemText, .categoryItemMore { display: none; }
    .categoryItem:hover .categoryItemFigure img { transform: scale(1.06); }

    /* READY SECTION */
    .readySection { padding: 150px var(--page-x) 150px; background: #fff; }

    .endImageSection {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      width: 100vw;
      padding: 0;
      background: #fff;
    }

    .endImageHolder {
      width: 100vw;
      height: 570px;
      background:
        radial-gradient(52% 42% at 8% 0%, rgba(246,238,232,0.72) 0%, rgba(246,238,232,0.38) 32%, rgba(246,238,232,0) 84%),
        radial-gradient(52% 42% at 92% 0%, rgba(246,238,232,0.72) 0%, rgba(246,238,232,0.38) 32%, rgba(246,238,232,0) 84%),
        radial-gradient(140% 95% at 50% -8%, #b7d1df 0%, #6f9fb8 34%, #0a3c68 66%, #041f3a 84%, #010814 100%);
      position: relative;
      overflow: hidden;
    }

    .endWhiteGuide { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; height: 570px; background: #fff; }

    .storiesTitleSection { padding: 93px var(--page-x) 55px; background: #fff; text-align: center; }
    .storiesTitle { font-size: 48px; font-weight: 200; line-height: 1.05; letter-spacing: -.01em; }
    .storiesCarouselSection { padding: 0 var(--page-x) 52px; background: #fff; }

    .blackBandSection {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      width: 100vw;
      margin-top: 46px;
      background: #000;
      min-height: 540px;
      display: grid;
      grid-template-rows: 1fr 2fr;
      padding: 0 var(--page-x);
      color: #fff;
    }

    .blackBandTop { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 56px 0; }
    .blackBandText { max-width: 980px; font-size: 28px; font-weight: 200; line-height: 1.16; letter-spacing: -.01em; }

    .blackBandCta {
      position: static;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      height: 42.5px;
      padding: 0 18.7px;
      border-radius: 999px;
      background: #fff;
      color: #111;
      text-decoration: none;
      font-size: 13.6px;
      font-weight: 400;
      white-space: nowrap;
      transition: transform .22s ease;
      flex-shrink: 0;
    }

    .blackBandCta:hover { transform: translateY(-4px); }

    .blackBandCtaIcon { width: 15.3px; height: 15.3px; display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
    .blackBandCtaIcon svg { width: 15.3px; height: 15.3px; fill: #111; display: block; }
    .blackBandTextStrongLine { display: block; font-weight: 600; }
    .blackBandTextLine { display: block; font-weight: 150; }
    .blackBandHighlight { display: inline-block; background: #054f77; color: #fff; padding: 1px 6px 2px; line-height: 1.05; }
    .blackBandFooter { position: relative; padding-top: 22px; }
    .blackBandDivider { height: 1px; background: rgba(255,255,255,0.42); width: 100%; margin: 0; }
    .blackBandFooterGrid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 48px; padding: 80px 0 90px; }
    .blackBandFooterGrid > div { display: flex; flex-direction: column; align-items: flex-start; }
    .blackBandColTitle { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-bottom: 20px; }
    .blackBandSocial { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
    .blackBandSocialItem { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: #fff; line-height: 0; transition: color .2s ease; }
    .blackBandSocialItem svg { width: 30px; height: 30px; fill: currentColor; display: block; }
    .blackBandSocial:hover .blackBandSocialItem { color: #4a4a4a; }
    .blackBandSocial .blackBandSocialItem:hover { color: #fff; }
    .blackBandNewsLead { font-size: 28px; font-weight: 250; line-height: 1.06; max-width: 520px; margin-bottom: 20px; letter-spacing: -.01em; }
    .blackBandNewsBtn { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 20px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.4); color: #fff; text-decoration: none; font-size: 15px; font-weight: 300; }

    .blackBandLinks { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; width: 100%; margin: 0; padding: 0; }
    .blackBandLinks a { color: #fff; text-decoration: none; font-size: 23px; font-weight: 250; line-height: 1.06; letter-spacing: -.01em; width: 100%; margin-left: 0 !important; display: block; }
    .blackBandLinks a:hover { opacity: .8; }

    .storiesCarouselSection {
      padding: 0 0 80px;
      background: #fff;
      overflow: hidden;
    }

    .storiesTrack {
      display: flex;
      gap: 20px;
      animation: storiesScroll 28s linear infinite;
      width: max-content;
    }

    @keyframes storiesScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .storiesCard {
      flex: 0 0 420px;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 0;
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 440px;
      gap: 24px;
    }

    .storiesCardTag {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #999;
    }

    .storiesCardQuote {
      font-size: 26px;
      font-weight: 200;
      line-height: 1.6;
      color: #111;
      flex: 1;
    }

    .storiesCardMeta {
      margin-top: auto;
    }

    .storiesCardAuthor {
      font-size: 15px;
      font-weight: 500;
      color: #111;
      margin-bottom: 2px;
    }

    .storiesCardProduct {
      font-size: 13px;
      font-weight: 300;
      color: #999;
    }

    .endImageHolder::after {
      content: "";
      position: absolute;
      inset: 0;
      background: url("IKI-Club.svg") 50% 16%/contain no-repeat;
      background-size: min(276px, 43vw);
      pointer-events: none;
      filter: brightness(0) invert(1);
      z-index: 1;
    }

    .endImageText {
      position: absolute;
      left: 50%;
      top: 34%;
      transform: translate(-50%, -50%);
      width: min(1100px, calc(100vw - (var(--page-x) * 2)));
      max-width: calc(100vw - (var(--page-x) * 2));
      text-align: center;
      color: #fff;
      font-size: 34px;
      font-weight: 200;
      line-height: 1.25;
      letter-spacing: .2px;
      white-space: normal;
      z-index: 2;
    }

    .endImageTextStrong { font-weight: inherit; font-style: italic; }

    .endNotebookOutline {
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: min(640px, 58vw);
      height: min(300px, 52%);
      border: 0;
      border-radius: 16px 16px 0 0;
      background: #111;
      pointer-events: none;
      z-index: 2;
    }

    .endNotebookScreen {
      position: absolute;
      left: 7px; right: 7px; top: 7px; bottom: 0;
      border: 0;
      border-radius: 10px 10px 0 0;
      background: #f3f3f1;
      overflow: hidden;
      pointer-events: auto;
    }

    .endNotebookScreen::before {
      content: "";
      position: absolute;
      left: 50%;
      top: -1px;
      transform: translateX(-50%);
      width: 70px;
      height: 12px;
      border-radius: 0 0 6px 6px;
      background: #111;
      z-index: 2;
    }

    .endNotebookScreen::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(to bottom, rgba(255,255,255,0.24), rgba(255,255,255,0.08)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg stroke='%23e7e7e7' stroke-width='1'%3E%3Cline x1='12' y1='8' x2='12' y2='16'/%3E%3Cline x1='8' y1='12' x2='16' y2='12'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat, repeat;
      background-size: 100% 100%, 24px 24px;
      opacity: 0.9;
      z-index: 1;
      pointer-events: none;
    }

    .endNotebookGridFocus {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg stroke='%23303030' stroke-width='1'%3E%3Cline x1='12' y1='8' x2='12' y2='16'/%3E%3Cline x1='8' y1='12' x2='16' y2='12'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 24px 24px;
      opacity: 0;
      transition: opacity .18s ease;
      z-index: 1;
      pointer-events: none;
      -webkit-mask-image: radial-gradient(circle 72px at var(--grid-x, 50%) var(--grid-y, 50%), rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0) 100%);
      mask-image: radial-gradient(circle 72px at var(--grid-x, 50%) var(--grid-y, 50%), rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0) 100%);
    }

    .endNotebookScreen.isHovering .endNotebookGridFocus { opacity: 1; }

    .endNotebookShade {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.08) 34%, rgba(0,0,0,0) 68%);
      z-index: 1;
      pointer-events: none;
    }

    .endNotebookCta {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      padding: 0 28px;
      border-radius: 999px;
      background: #111;
      color: #fff;
      font-size: 16px;
      font-weight: 300;
      line-height: 1;
      letter-spacing: .2px;
      white-space: nowrap;
      z-index: 3;
      pointer-events: auto;
      transition: transform .22s ease;
      text-decoration: none;
    }

    .endNotebookCta:hover { transform: translate(-50%, calc(-50% - 4px)); }

    /* ===== FEATURE IMAGE (original) ===== */
    .featureImage {
      padding: 0 0 40px;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      margin-top: 0;
      background: #fff;
      position: relative;
      z-index: 2;
    }

    .featureImageInner { display: flex; width: 100vw; height: 660px; }

    .featureImagePane { flex: 1 1 50%; height: 100%; position: relative; }
    .featureImagePane--left { --pane-bg: #bcbcbc; }
    .featureImagePane--left.featureImagePaneCard::before { filter: none; animation: featureLeftImageCycle 2s steps(1, end) infinite; }
    .featureImagePane--right { --pane-bg: url("feature-right-custom.jfif"); }

    .featureImagePaneCard { position: relative; overflow: hidden; }

    .featureImagePaneCard::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--pane-bg, #2f2f2f);
      background-position: center;
      background-size: cover;
      filter: grayscale(100%);
      transition: transform .45s ease;
      transform: scale(1);
    }

    .featureImagePaneCard::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0) 100%), rgba(0,0,0,0.62);
      pointer-events: none;
      z-index: 1;
    }

    .featureImagePaneCard:hover::before { transform: scale(1.04); }
    .featureImagePane--left.featureImagePaneCard:hover::before { transform: none; }
    .featureImagePane--left.featureImagePaneCard::after { background: linear-gradient(to top, rgba(0,0,0,0.44) 0%, rgba(0,0,0,0.16) 45%, rgba(0,0,0,0) 100%), rgba(0,0,0,0.4); }

    @keyframes featureLeftImageCycle {
      0%, 24.99% { background-image: url("feature-left-1.jpg"); background-position: center 62%; }
      25%, 49.99% { background-image: url("feature-left-2.jpg"); background-position: center; }
      50%, 74.99% { background-image: url("feature-left-3.jpg"); background-position: center; }
      75%, 100% { background-image: url("feature-left-4.jpg"); background-position: center; }
    }

    .featureImageLabel {
      position: absolute;
      bottom: 28px;
      color: #fff;
      font-size: 42px;
      font-weight: 200;
      letter-spacing: .2px;
      line-height: 1;
      pointer-events: none;
      z-index: 2;
      transition: transform .3s ease;
    }

    .featureImagePaneCard:hover .featureImageLabel { transform: translateY(-6px); }
    .featureImageLabel--right { right: var(--page-x); text-align: right; }
    .featureImageLabel--left { left: var(--page-x); text-align: left; }

    .featureImageLabel--center {
      position: static;
      left: auto; top: auto; bottom: auto; right: auto;
      transform: none !important;
      text-align: center;
      width: 100%;
      max-width: 86%;
    }

    .featureImageContentCenter {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      width: 100%;
      max-width: 86%;
      z-index: 2;
    }

    .featureImageEyebrow { display: block; color: #fff; font-size: 14px; font-weight: 100; letter-spacing: .06em; margin-bottom: 6px; }
    .featureImageLabelLine { display: block; }
    .featureImageLabelLine--top { font-weight: 100; }
    .featureImageLabelLine--bottom { font-weight: 300; }
    .featureImageLabelItalic { font-style: italic; }

    .featureImageCta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 18px;
      padding: 10px 22px;
      border-radius: 999px;
      background: #fff;
      color: #111;
      text-decoration: none;
      font-size: 15px;
      font-weight: 300;
      line-height: 1;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .featureImageCta:hover { transform: translateY(-4px); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }

    /* ===== FEATURE IMAGE FULL WIDTH ===== */
    .featureImageFull {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      height: 660px;
      position: relative;
      display: block;
      overflow: hidden;
    }

    .featureImageFull .featureImagePane {
      width: 100%;
      height: 100%;
      flex: none;
    }

    /* ===== SCROLL VIDEO ===== */
    #scrollVideo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .featureImageFull .featureImageContentCenter {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      text-align: center;
      width: 100%;
      max-width: 86%;
    }

    /* READY */
    .readyHeader { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 30px; }
    .readyHeader h2 { font-size: 28px; font-weight: 400; line-height: 1.1; }

    .readyLink { text-decoration: none; color: #7a7a7a; font-weight: 500; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; }
    .readyLink::after { content: "\2192"; font-size: 16px; transition: transform .3s; }
    .readyLink:hover::after { transform: translateX(4px); }

    .readyCarousel {
      display: flex;
      gap: 28px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 12px;
      scrollbar-width: none;
      cursor: grab;
      user-select: none;
    }

    .readyCarouselWrap::before, .readyCarouselWrap::after { display: none; }
    .readyCarousel::-webkit-scrollbar { display: none; }
    .readyCarousel.isDragging { cursor: grabbing; }

    .readyCarousel .categoryCard:not(.categoryCard--wide),
    .readyCarousel .categoryCard:not(.categoryCard--wide) figure { width: 484px; }
    .readyCarousel .categoryCard:not(.categoryCard--wide) figure { height: 484px; border-radius: 0; }
    .readyCarousel .categoryCard:not(.categoryCard--wide) figure img { object-fit: cover; width: 100%; height: 100%; }

    .readyProductCard { display: flex; flex-direction: column; gap: 12px; text-align: left; height: 484px; }
    .readyProductCard:hover { transform: translateY(-5px); }
    .readyProductCard:hover span { color: inherit; transform: none; }
    .readyProductCard:hover .oldPrice { color: #b0b6bf; }
    .readyProductCard:hover .newPrice { color: #d62828; }
    .readyProductCard:hover .offBadge { color: #fff; transform: none; }

    .readyProductCard .image { width: 100%; flex: 1 1 auto; background: #ddd center/cover no-repeat; position: relative; overflow: hidden; }
    .readyProductCard .info { margin-top: auto; padding: 0; }
    .readyProductCard .title { font-size: 24px; margin-bottom: 5px; }
    .readyProductCard .price { font-weight: 200; }
    .readyProductCard .priceRow { display: flex; align-items: center; gap: 10px; }
    .readyProductCard .oldPrice { color: #b0b6bf; text-decoration: line-through; text-decoration-thickness: 1px; font-weight: 300; }
    .readyProductCard .newPrice { color: #d62828; font-weight: 400; }

    .readyProductCard .offBadge { position: absolute; left: 12px; background: #111; color: #fff; font-size: 12px; font-weight: 300; padding: 4px 8px; border-radius: 999px; letter-spacing: .2px; }
    .readyProductCard .offBadge--discount { top: 12px; z-index: 3; }
    .readyProductCard .offBadge--delivery { top: 12px; z-index: 2; }
    .readyProductCard .image--stackBadges .offBadge--discount { top: 12px; }
    .readyProductCard .image--stackBadges .offBadge--delivery { top: 42px; }

    .categoryCard--wide, .categoryCard--wide figure { width: 582px; }
    .categoryCard--wide figure { height: 484px; border-radius: 0; }

    .categoryCard--readyHero figure { align-items: flex-start; justify-content: flex-end; padding: 0; text-align: left; position: relative; overflow: hidden; background: #d0d0d0; }

    .readyHeroTitle {
      position: absolute;
      left: 18px;
      bottom: 16px;
      display: flex;
      flex-direction: column;
      gap: 0;
      color: #fff;
      font-size: 102px;
      font-weight: 100;
      line-height: .9;
      letter-spacing: -.01em;
      z-index: 2;
      pointer-events: none;
      transition: transform .25s ease;
    }

    .readyHeroTitle .readyHeroLine--outline {
      -webkit-text-stroke: 0;
      color: #fff;
      font-weight: 200;
    }

    #readyTitle.readyHeroTitle {
      font-size: 72px !important;
      font-weight: 500 !important;
      line-height: .95 !important;
    }

    #readyTitle.readyHeroTitle .readyHeroLine--outline {
      -webkit-text-stroke: 0;
      color: #fff !important;
      font-size: 72px;
      font-weight: 200;
      line-height: .95;
    }

    .categoryCard--readyHero:hover .readyHeroTitle { transform: translateY(-6px); color: #fff !important; }
    .categoryCard--readyHero:hover .readyHeroTitle .readyHeroLine--outline { color: #fff !important; }

    .categoryCard--readyHero figure::before { content: ""; position: absolute; inset: 0; background: url("envio-imediato.jpg") center/cover no-repeat; transition: transform .4s ease; z-index: 0; }
    .categoryCard--readyHero figure::after { content: ""; position: absolute; inset: 0; background: rgba(20,67,128,0.34); pointer-events: none; z-index: 1; }
    .categoryCard--readyHero:hover figure::before { transform: scale(1.02); }

    @media (max-width: 768px) {
      :root { --page-x: 20px; }
      nav a { margin-left: 18px; font-size: 13px; }
      .categorySection { padding: 60px 20px 40px; }
      .categorySection--ap { padding: 108px 0 88px; min-height: 110vh; }
      .categoryShell { grid-template-columns: 1fr; gap: 22px; padding: 0 20px; }
      .categoryIntro { position: static; }
      .categorySection--ap .categoryIntro h2 { font-size: 42px; margin-bottom: 10px; }
      .categoryCta { font-size: 18px; }
      .categoryCta::before { width: 42px; }
      .categoryItem { flex-basis: 220px; }
      .categoryItemFigure { aspect-ratio: 1 / 1; }
      .categoryItemTitle { font-size: 20px; }
      .manifestoSection { padding: 68px 20px; }
      .manifestoText { font-size: 27px; font-weight: 200; line-height: 1.12; }
      .manifestoSection + .categorySection { margin-top: 0; }
      .categoryHeader { flex-direction: column; align-items: flex-start; gap: 18px; }
      .categoryCard, .categoryCard figure { width: 189px; }
      .categoryCard figure { height: 189px; border-radius: 6px; }
      .carouselWrap::before, .carouselWrap::after { width: 50px; }
      .carouselNextBtn { width: 38px; height: 38px; right: 6px; top: 150px; }
      .carouselNextBtn::before { width: 7px; height: 7px; }
      .carouselPrevBtn { left: 6px; right: auto; }
      .categoryRailWrap .carouselNextBtn, .categoryRailWrap .carouselPrevBtn { top: calc((210px - 38px) / 2); }
      .readySection { padding: 40px 20px 70px; }
      .readyHeroTitle { left: 12px; bottom: 12px; font-size: 66px; }
      #readyTitle.readyHeroTitle { font-size: 42px !important; }
      .endImageHolder { height: 420px; }
      .endWhiteGuide { height: 420px; }
      .storiesTitleSection { padding: 63px 20px 40px; }
      .storiesTitle { font-size: 32px; }
      .storiesCarouselSection { padding: 0 20px 38px; }
      .blackBandSection { margin-top: 20px; min-height: 420px; grid-template-rows: auto 1fr; padding: 0 20px; }
      .blackBandTop { align-items: flex-start; flex-direction: column; gap: 16px; padding: 36px 0; }
      .blackBandText { font-size: 26px; line-height: 1.18; }
      .blackBandCta { position: static; transform: none !important; margin-top: 0; }
      .blackBandCta:hover { transform: translateY(-4px); }
      .blackBandFooter { padding-top: 16px; }
      .blackBandFooterGrid { grid-template-columns: 1fr; gap: 30px; padding: 26px 0 32px; }
      .blackBandNewsLead { font-size: 23px; max-width: none; }
      .blackBandLinks a { font-size: 19px; }
      .storiesCarousel { gap: 12px; }
      .storiesCard { flex-basis: calc((100% - 12px) / 2); }
      .storiesCardLabel { font-size: 22px; }
      .storiesCardFeedback { top: 14px; left: 20px; right: 20px; }
      .storiesCardMeta { left: 20px; right: 20px; bottom: 12px; }
      .storiesCardQuote { font-size: 13px; }
      .storiesCardAuthor { font-size: 14px; }
      .storiesCardProduct { margin-top: 4px; font-size: 11px; }
      .endImageHolder::after { background-position: 50% 14%; background-size: min(180px, 43vw); }
      .endImageText { left: 50%; top: 31%; transform: translate(-50%, -50%); width: calc(100vw - 40px); max-width: calc(100vw - 40px); font-size: 20px; line-height: 1.2; }
      .endNotebookOutline { width: min(330px, 72vw); height: min(190px, 50%); border-radius: 10px 10px 0 0; }
      .endNotebookScreen { left: 5px; right: 5px; top: 5px; border-radius: 6px 6px 0 0; }
      .endNotebookScreen::before { width: 46px; height: 8px; border-radius: 0 0 4px 4px; }
      .endNotebookCta { height: 36px; padding: 0 21px; font-size: 13px; }
      .featureImage { padding: 0 0 30px; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); margin-top: -70px; }
      .featureImageInner { height: 430px; }
      .featureImageLabel { bottom: 18px; font-size: 24px; }
      .featureImageLabel--right { right: 20px; }
      .featureImageLabel--left { left: 20px; }
      .featureImageLabel--center { position: static; left: auto; top: auto; right: auto; transform: none !important; }
      .featureImageContentCenter { left: 50%; top: 50%; transform: translate(-50%, -50%); }
      .featureImageEyebrow { font-size: 11px; margin-bottom: 10px; }
      .featureImageCta { margin-top: 14px; padding: 8px 16px; font-size: 13px; }
      .readyHeader { flex-direction: column; align-items: flex-start; }
      .categoryCard--wide, .categoryCard--wide figure { width: 434px; }
      .categoryCard--wide figure { height: 362px; }
      .readyCarousel .categoryCard:not(.categoryCard--wide), .readyCarousel .categoryCard:not(.categoryCard--wide) figure { width: 362px; }
      .readyCarousel .categoryCard:not(.categoryCard--wide) figure { height: 362px; }
      .readyProductCard { height: 362px; }
      .featureImageFull { height: 400px; }
      .megaMenu { display: none; }
      .slider { height: 55vh; }
    }

    .whatsappFab {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #000;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(0,0,0,.28);
      z-index: 1002;
      border: 0;
      cursor: pointer;
      transition: transform .18s ease;
    }

    .whatsappFab svg { width: 28px; height: 28px; display: block; }
    .whatsappFab:hover { transform: scale(1.06); }
    .whatsappFab .whatsappFabIcon--arrow { display: none; }
    .whatsappFab[aria-expanded="true"] .whatsappFabIcon--wa { display: none; }
    .whatsappFab[aria-expanded="true"] .whatsappFabIcon--arrow { display: block; }

    .whatsappMenu {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 483px;
      min-height: 237px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid #e3e3e3;
      box-shadow: 0 14px 34px rgba(0,0,0,.24);
      padding: 18px 16px 80px;
      z-index: 1001;
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
    }

    .whatsappMenuTitle { margin: 0; color: #111; font-size: 24px; font-weight: 400; line-height: 1.2; letter-spacing: -.01em; }
    .whatsappMenuActions { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }

    .whatsappMenuBtn {
      width: 100%;
      min-height: 44px;
      border-radius: 999px;
      border: 1px solid #111;
      background: transparent;
      color: #111;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-decoration: none;
      font-size: 15px;
      font-weight: 300;
      line-height: 1.2;
      padding: 8px 14px;
      gap: 12px;
      transition: background-color .2s ease;
    }

    .whatsappMenuBtn:hover { background: #f0f0f0; }
    .whatsappMenuBtnLabel { flex: 1 1 auto; text-align: left; }
    .whatsappMenuBtnIcon { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
    .whatsappMenuBtnIcon img { width: 74%; height: 74%; display: block; object-fit: contain; }
    .whatsappMenu.isOpen { opacity: 1; transform: translateY(0); pointer-events: auto; }

    /* ===== CLUB ===== */
    html { scroll-behavior: smooth; }
    :root { --club-anchor-offset: 120px; }
    #club-bloco-1 { scroll-margin-top: var(--club-anchor-offset); }

    /* ===== PRODUTOS ===== */
    .productsHeroTitle, .woocommerce-products-header__title, .page-title { font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important; font-weight: 200 !important; font-size: 110px !important; line-height: 1 !important; margin-top: 140px !important; margin-bottom: 40px !important; }
    .rec-products-header__title { font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important; font-weight: 200 !important; font-size: 110px !important; line-height: 1 !important; margin-top: 140px !important; margin-bottom: 40px !important; }
    .woocommerce-products-header__title, .woocommerce-products-header .page-title, .page-title, .rec-products-header__title, h1.page-title { font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important; font-weight: 200 !important; font-size: 110px !important; line-height: 1 !important; letter-spacing: -1px !important; position: relative !important; top: 60px !important; }
    main.productsPage section.hero h1 { position: absolute !important; left: 120px !important; bottom: -16px !important; top: auto !important; font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important; font-size: 110px !important; line-height: 0.95 !important; font-weight: 200 !important; letter-spacing: -0.02em !important; margin: 0 !important; color: #fff !important; }
    main.productsPage section.hero { overflow: visible !important; }
    main.productsPage .filterMenuBtn { border: none !important; background: transparent !important; padding: 0 6px !important; }
    main.productsPage select { border: 1px solid rgba(0,0,0,.15) !important; background: #fff !important; }
    main.productsPage #grid, .productsPage #grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 48px 28px !important; align-items: start !important; }
    main.productsPage .card, .productsPage .card { display: block !important; width: 100% !important; min-width: 0 !important; }
    main.productsPage .card .image, .productsPage .card .image { width: 100% !important; aspect-ratio: 1 / 1 !important; overflow: hidden !important; background: #f3f3f3 !important; position: relative !important; margin-bottom: 18px !important; }
    main.productsPage .card .image img, .productsPage .card .image img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; }
    main.productsPage .card .info, .productsPage .card .info { display: block !important; }
    main.productsPage .card .title, .productsPage .card .title { font-size: 22px !important; line-height: 1.1 !important; font-weight: 400 !important; margin: 0 0 8px !important; color: #111 !important; }
    main.productsPage .card .priceRow, .productsPage .card .priceRow { display: flex !important; align-items: baseline !important; gap: 10px !important; flex-wrap: wrap !important; margin-bottom: 4px !important; }
    main.productsPage .card .newPrice, .productsPage .card .newPrice { font-size: 18px !important; font-weight: 300 !important; color: #111 !important; }
    main.productsPage .card .oldPrice, .productsPage .card .oldPrice { font-size: 18px !important; font-weight: 300 !important; color: #b5b5b5 !important; text-decoration: line-through !important; }
    main.productsPage .card .installments, .productsPage .card .installments { font-size: 14px !important; font-weight: 300 !important; color: #9a9a9a !important; margin-bottom: 10px !important; }
    main.productsPage .card .fabricPreview, .productsPage .card .fabricPreview { display: flex !important; align-items: center !important; gap: 6px !important; }
    main.productsPage .card .offBadge, .productsPage .card .offBadge { position: absolute !important; left: 12px !important; display: inline-flex !important; align-items: center !important; height: 28px !important; padding: 0 12px !important; border-radius: 999px !important; background: #111 !important; color: #fff !important; font-size: 12px !important; font-weight: 600 !important; z-index: 2 !important; }
    main.productsPage .card .offBadge--delivery, .productsPage .card .offBadge--delivery { top: 12px !important; }
    main.productsPage .card .offBadge--discount, .productsPage .card .offBadge--discount { top: 46px !important; }
    .woocommerce ul.products li.product .price, .wcsp-container { display: none !important; }

    @media (max-width: 1100px) { main.productsPage #grid, .productsPage #grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }
    @media (max-width: 700px) { main.productsPage #grid, .productsPage #grid { grid-template-columns: 1fr !important; } }

    main.productsPage .hero, .productsPage .hero { position: relative !important; height: 430px !important; overflow: hidden !important; }
    main.productsPage .hero h1, .productsPage .hero h1 { position: absolute !important; left: 120px !important; bottom: -18px !important; margin: 0 !important; font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important; font-size: 110px !important; line-height: .9 !important; font-weight: 200 !important; letter-spacing: -0.03em !important; color: #fff !important; }
    .productsPage .productsHeroTitle, main.productsPage .productsHeroTitle, .hero .productsHeroTitle { position: absolute !important; left: 120px !important; bottom: -22px !important; margin: 0 !important; font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important; font-size: 110px !important; line-height: 0.88 !important; font-weight: 200 !important; letter-spacing: -0.04em !important; color: #fff !important; z-index: 2 !important; }
    .productsPage .hero, main.productsPage .hero { position: relative !important; height: 430px !important; overflow: hidden !important; }

    .productsPagination .page-numbers.pagination-dots { display: inline-flex !important; align-items: center !important; justify-content: center !important; min-width: 42px !important; height: 42px !important; padding: 0 10px !important; border: none !important; background: transparent !important; color: #111 !important; font-size: 14px !important; line-height: 1 !important; position: static !important; left: auto !important; bottom: auto !important; transform: none !important; z-index: auto !important; }

    /* ===== Card "Ver mais opções" ===== */
    .readyViewMore { display: flex !important; align-items: center; justify-content: center; background: #f4f4f4; border: 1px solid #e8e8e8; transition: background .3s ease, transform .3s ease; }
    .readyViewMore:hover { background: #eaeaea; transform: translateY(-5px); }
    .readyViewMoreInner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
    .readyViewMoreText { font-size: 22px !important; font-weight: 200 !important; letter-spacing: .02em; color: #111; }
    .readyViewMoreArrow { font-size: 28px !important; font-weight: 100 !important; color: #111; transition: transform .3s ease; }
    .readyViewMore:hover .readyViewMoreArrow { transform: translateX(6px); }
    .readyViewMore:hover .readyViewMoreText { transform: none !important; color: #111 !important; }

    /* ===== MEGA MENU OVERLAY ===== */
    .megaMenuOverlay {
      position: fixed;
      inset: 0;
      top: 78px;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 997;
      opacity: 0;
      visibility: hidden;
      transition: opacity .22s ease, visibility .22s ease;
    }

    body.megaMenuOpen .megaMenuOverlay {
      opacity: 1;
      visibility: visible;
    }

    body.megaMenuOpen,
    body.megaMenuOpen html {
      overflow: hidden !important;
      height: 100% !important;
    }

    .megaMenuFullDivider {
      height: 1px;
      background: rgba(255, 255, 255, 0.15);
      margin: 0 var(--page-x);
    }

    .megaMenuInner--bottom {
      padding-top: 16px;
      padding-bottom: 48px;
    }

    html, body {
      scrollbar-width: none;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
      display: none;
    }

    /* ===== DESIGN MOSAICO ===== */
    .designMosaico {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      height: 660px;
      position: relative;
      overflow: hidden;
    }

    .designMosaicoGrid {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      gap: 4px;
      height: 100%;
    }

    .designMosaicoCol {
      display: flex;
      flex-direction: column;
      gap: 4px;
      height: 100%;
    }

    .designMosaicoCell {
      overflow: hidden;
      position: relative;
      min-height: 0;
    }

    .designMosaicoCell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .designMosaicoCol--left .designMosaicoCell:first-child,
    .designMosaicoCol--right .designMosaicoCell:last-child {
      flex: 3;
    }

    .designMosaicoCol--left .designMosaicoCell:last-child,
    .designMosaicoCol--right .designMosaicoCell:first-child {
      flex: 2;
    }

    .designMosaicoCol--center .designMosaicoCell {
      flex: 1;
      height: 100%;
    }

    .designMosaicoOverlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      z-index: 2;
      pointer-events: none;
    }

    .designMosaicoOverlay .featureImageCta {
      pointer-events: auto;
    }

    /* ===== CLUB CSS ===== */
    .clubProductsDrawerOverlay{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,.42);
      backdrop-filter:blur(6px);
      -webkit-backdrop-filter:blur(6px);
      opacity:0;
      pointer-events:none;
      transition:opacity .25s ease;
      z-index:1200;
    }

    .clubProductsDrawerOverlay.isOpen{
      opacity:1;
      pointer-events:auto;
    }

    .clubProductsDrawer{
      position:absolute;
      left:0;
      top:0;
      bottom:0;
      width:min(25vw, 460px);
      min-width:320px;
      background:#fff;
      border-right:1px solid #e8e8e8;
      transform:translateX(-100%);
      transition:transform .28s ease;
      padding:24px 24px 28px;
    }

    .clubProductsDrawerTitle{
      position:absolute;
      left:24px;
      top:30px;
      transform:translateY(-50%);
      margin:0;
      color:#111;
      font-size:13px;
      font-weight:260;
      letter-spacing:.08em;
      text-transform:uppercase;
      line-height:1;
    }

    .clubProductsDrawerOverlay.isOpen .clubProductsDrawer{
      transform:translateX(0);
    }

    .clubProductsDrawerClose{
      position:absolute;
      right:12px;
      top:12px;
      border:0;
      background:none;
      color:#111;
      font-size:0;
      line-height:0;
      cursor:pointer;
      width:36px;
      height:36px;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .clubProductsDrawerClose::before,
    .clubProductsDrawerClose::after{
      content:"";
      position:absolute;
      width:16px;
      height:1px;
      background:currentColor;
    }

    .clubProductsDrawerClose::before{ transform:rotate(45deg); }
    .clubProductsDrawerClose::after{ transform:rotate(-45deg); }

    .clubProductsDrawerNav{
      margin-top:56px;
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:14px;
    }

    .clubProductsDrawerLink{
      color:#111;
      text-decoration:none;
      font-size:21px;
      font-weight:260;
      line-height:1.3;
      letter-spacing:.01em;
      transition:opacity .2s ease;
      margin-left:0;
      display:inline-flex;
      align-items:center;
      gap:10px;
    }

    .clubProductsDrawerLink:hover{ opacity:1; color:#111; }

    .clubProductsDrawerLink::before{
      content:"";
      width:34px;
      height:0;
      border-top:1px solid #111;
      background:transparent;
      transition:width .25s ease;
      flex-shrink:0;
    }

    .clubProductsDrawerLink:hover::before{ width:52px; }

    .clubProductsDrawerDivider{
      align-self:stretch;
      height:1px;
      background:#d9d9d9;
      margin:10px 12px 10px 0;
    }

    .clubHeroPlaceholder{
      margin-left:calc(50% - 50vw);
      margin-right:calc(50% - 50vw);
      width:100vw;
      height:min(81vh, 806px);
      background:#0a1f3f center/cover no-repeat;
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      overflow:hidden;
    }

    .clubHeroPlaceholder::before{
      content:"";
      position:absolute;
      inset:0;
      background:rgba(7,27,61,0.62);
      pointer-events:none;
    }

    .clubHeroPlaceholder::after{ content:none; pointer-events:none; }

    .clubHeroContent{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      position:relative;
      z-index:1;
    }

    .clubHeroLogo{
      width:min(20.4vw, 246px);
      height:auto;
      display:block;
      transform:translateY(-16px);
      overflow:visible;
    }

    .clubHeroTitle{
      margin-top:18px;
      color:#fff;
      font-size:44px;
      font-weight:320;
      letter-spacing:-.01em;
      line-height:1.1;
      text-align:center;
      opacity:0;
      animation:clubTitleFade 1.1s ease-out 2.3s forwards;
    }

    .clubHeroSubtitle{
      margin-top:8px;
      max-width:none;
      color:rgba(255,255,255,.72);
      font-size:24px;
      font-weight:220;
      letter-spacing:-.005em;
      line-height:1.3;
      text-align:center;
      white-space:nowrap;
      opacity:0;
      animation:clubTitleFade 1.1s ease-out 2.55s forwards;
    }

    .clubHeroActions{
      margin-top:22px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:14px;
      opacity:0;
      animation:clubTitleFade 1.1s ease-out 2.8s forwards;
    }

    .clubHeroBtn{
      height:46px;
      padding:0 24px;
      border-radius:999px;
      text-decoration:none;
      font-size:16px;
      font-weight:320;
      letter-spacing:.01em;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      transition:transform .22s ease;
    }

    .clubHeroBtn:hover{ transform:translateY(-4px); }
    .clubHeroBtn--solid{ background:#fff; color:#111; border:1.5px solid #fff; }
    .clubHeroBtn--ghost{ background:transparent; color:#fff; border:1.5px solid #fff; }

    .clubHeroMark{
      fill:#fff;
      opacity:0;
      animation:clubMarkFade 1.1s ease-out .12s forwards;
    }

    .clubHeroWordGroup{
      fill:#fff;
      font-family:"Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight:200;
    }

    .clubHeroWordBase{ letter-spacing:-120px; }

    .clubHeroGlyph{
      opacity:0;
      animation:clubGlyphReveal .45s ease forwards;
    }

    .clubHeroGlyph--1{ animation-delay:1.0s; }
    .clubHeroGlyph--2{ animation-delay:1.3s; }
    .clubHeroGlyph--3{ animation-delay:1.6s; }
    .clubHeroGlyph--4{ animation-delay:1.9s; }

    @keyframes clubMarkFade{
      from{ opacity:0; }
      to{ opacity:1; }
    }

    @keyframes clubGlyphReveal{
      from{ opacity:0; }
      to{ opacity:1; }
    }

    @keyframes clubTitleFade{
      from{ opacity:0; }
      to{ opacity:1; }
    }

    .clubCanvas{
      width:100%;
      min-height:auto;
      background:#fff;
      padding-bottom:204px;
    }

    .clubCardsGrid{
      scroll-margin-top:120px;
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
      padding:40px 10%;
      max-width:1320px;
      margin:0 auto;
    }

    .clubAccessCtaWrap{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      margin-top:163px;
    }

    .clubAccessTitle{
      font-size:46px;
      font-weight:320;
      line-height:1.08;
      letter-spacing:-.01em;
      color:#111;
      text-align:center;
      margin:0 0 20px;
    }

    .clubAccessTitleStrong{ font-weight:520; }

    .clubAccessCta{
      background:#071b3d;
      color:#fff;
      border:1.5px solid #071b3d;
    }

    @media(max-width:768px){
      .clubCanvas{ padding-bottom:122px; }
      .clubHeroSubtitle{ white-space:normal; font-size:18px; padding:0 20px; }
      .clubHeroActions{ flex-wrap:wrap; padding:0 20px; gap:10px; }
      .clubHeroBtn{ height:42px; font-size:14px; }
      .clubAccessCtaWrap{ margin-top:98px; }
      .clubAccessTitle{ font-size:34px; margin-bottom:14px; }
    }