    @font-face {
      font-family: "Manrope";
      src: url("../manrope-latin.woff2") format("woff2");
      font-style: normal;
      font-weight: 200 800;
      font-display: swap;
    }

    :root {
      --dark: #272b00;
      --deep: #54582f;
      --mid: #86895d;
      --soft: #bec092;
      --light: #f8fbca;
      --white: #fffef8;
      --paper: #f5f3e8;
      --line: rgba(84, 88, 47, .24);
      --shadow: 0 24px 65px rgba(39, 43, 0, .10);
      --radius: 18px;
      --header-height: 88px;
      --content-width: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
    body {
      margin: 0;
      overflow-x: hidden;
      color: var(--dark);
      background: var(--paper);
      font-family: "Manrope", Arial, sans-serif;
      font-weight: 600;
      -webkit-font-smoothing: antialiased;
    }
    body.modal-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { border: 0; }
    svg { display: block; }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { text-wrap: balance; }
    p { text-wrap: pretty; }
    .shell { width: min(calc(100% - 48px), var(--content-width)); margin-inline: auto; }
    .site-header,
    .site-footer,
    .hero,
    .section,
    .map-band {
      width: 100vw;
      max-width: none;
      margin-inline: calc(50% - 50vw);
    }
    .section { padding: 110px 0; }
    .section--white { background: var(--white); }
    .section--dark { color: var(--light); background: var(--dark); }
    .section--deep { color: var(--light); background: var(--deep); }
    .section--soft { background: linear-gradient(rgba(190,192,146,.28), rgba(190,192,146,.28)), var(--paper); }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      color: var(--deep);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .16em;
      line-height: 1.3;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 28px; height: 2px; flex: 0 0 auto; background: currentColor; }
    .eyebrow--light { color: var(--soft); }
    .section-heading {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(260px, .7fr);
      gap: 70px;
      align-items: end;
      margin-bottom: 54px;
    }
    .section-heading h2 {
      max-width: 820px;
      margin-bottom: 0;
      font-size: clamp(42px, 5vw, 66px);
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -.045em;
    }
    .section-heading > p {
      margin-bottom: 5px;
      color: var(--deep);
      font-size: 17px;
      font-weight: 600;
      line-height: 1.7;
    }
    .section--dark .section-heading > p,
    .section--deep .section-heading > p { color: var(--soft); }

    .button {
      min-height: 50px;
      padding: 0 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 800;
      line-height: 1;
      cursor: pointer;
      transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
    }
    .button:hover, .button:focus-visible { transform: translateY(-2px); }
    .button--light { color: var(--dark); background: var(--light); border-color: var(--light); }
    .button--light:hover, .button--light:focus-visible { color: var(--light); background: var(--dark); }
    .button--dark { color: var(--light); background: var(--dark); border-color: var(--dark); }
    .button--dark:hover, .button--dark:focus-visible { color: var(--dark); background: transparent; }
    .button--outline { color: var(--dark); background: transparent; border-color: var(--deep); }
    .button--outline:hover, .button--outline:focus-visible { color: var(--light); background: var(--dark); border-color: var(--dark); }
    .button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

    .image-placeholder {
      position: relative;
      overflow: hidden;
      display: grid;
      place-items: center;
      color: var(--deep);
      background:
        linear-gradient(115deg, rgba(255,255,255,.70), rgba(190,192,146,.38)),
        repeating-linear-gradient(90deg, transparent 0 32%, rgba(84,88,47,.08) 32% 32.25%);
      border: 1px solid rgba(84,88,47,.17);
    }
    .image-placeholder::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(125deg, transparent 42%, rgba(255,255,255,.45), transparent 58%);
      transform: translateX(-100%);
      animation: placeholder-shine 8s ease-in-out infinite;
    }
    .image-placeholder__label { position: relative; z-index: 1; text-align: center; }
    .image-placeholder small {
      display: block;
      margin-bottom: 8px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .image-placeholder strong { font-size: 18px; font-weight: 800; }
    @keyframes placeholder-shine { 0%, 72% { transform: translateX(-100%); } 92%, 100% { transform: translateX(100%); } }

    /* HEADER — Theme Builder / Logo / Menu / imagens das bandeiras / botão */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      min-height: var(--header-height);
      color: var(--hook-header-text, var(--light));
      background: var(--hook-header-bg, var(--dark));
      border-bottom: 1px solid var(--deep);
    }
    .header-inner {
      width: min(calc(100% - 48px), 1280px);
      min-height: var(--header-height);
      margin-inline: auto;
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .site-logo { width: 198px; flex: 0 0 auto; }
    .site-logo img { width: 100%; height: auto; }
    .desktop-nav {
      flex: 1 1 auto;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: clamp(18px, 1.8vw, 30px);
    }
    .desktop-nav a {
      position: relative;
      padding: 34px 0 32px;
      color: var(--light);
      font-size: 14px;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
    }
    .desktop-nav a::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 23px;
      left: 0;
      height: 2px;
      background: var(--soft);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s ease;
    }
    .desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
    .header-actions { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
    .country-switcher { display: flex; align-items: center; gap: 8px; }
    .country-button {
      width: 34px;
      height: 24px;
      padding: 0;
      overflow: hidden;
      border: 1px solid transparent;
      border-radius: 2px;
      background: transparent;
      cursor: pointer;
      transition: border-color .2s ease, transform .2s ease, background .2s ease;
    }
    .country-button img { width: 100%; height: 100%; border-radius: 1px; object-fit: cover; }
    .country-button:hover, .country-button:focus-visible { border-color: var(--light); transform: translateY(-2px); }
    .country-button.is-active { border-color: var(--light); background: rgba(248,251,202,.15); box-shadow: 0 0 0 2px rgba(248,251,202,.12); }
    .header-cta { min-width: 104px; min-height: 44px; padding-inline: 20px; color: var(--hook-header-button-text, var(--dark)); background: var(--hook-header-button, var(--soft)); border-color: var(--hook-header-button, var(--soft)); }
    .menu-toggle {
      width: 42px;
      height: 42px;
      display: none;
      align-items: center;
      justify-content: center;
      color: var(--light);
      background: transparent;
      border: 1px solid rgba(248,251,202,.34);
      border-radius: 10px;
      cursor: pointer;
    }
    .menu-toggle svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; }
    .mobile-panel { display: none; }

    /* HERO */
    .hero {
      padding: 88px 0 72px;
      background:
        radial-gradient(circle at 78% 17%, rgba(190,192,146,.42), transparent 28%),
        var(--paper);
    }
    .hero-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 70px; align-items: stretch; }
    .hero-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
    .hero h1 {
      max-width: 570px;
      margin-bottom: 28px;
      font-size: clamp(54px, 6vw, 82px);
      font-weight: 800;
      line-height: .98;
      letter-spacing: -.055em;
    }
    .hero-lead { max-width: 560px; margin-bottom: 32px; color: var(--deep); font-size: 18px; font-weight: 600; line-height: 1.7; }
    .hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
    .hero-media {
      position: relative;
      min-height: 620px;
      height: 100%;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 24px;
      box-shadow: var(--shadow);
    }
    .hero-media .image-placeholder { position: absolute; inset: 0; border: 0; }
    .hero-media-caption {
      position: absolute;
      right: 20px;
      bottom: 20px;
      left: 20px;
      z-index: 2;
      min-height: 76px;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: var(--light);
      background: var(--dark);
      border-radius: 14px;
    }
    .hero-media-caption b { font-size: 13px; font-weight: 800; letter-spacing: .12em; }
    .hero-media-caption span { max-width: 390px; text-align: right; font-size: 14px; font-weight: 700; line-height: 1.35; }
    .proof-grid {
      position: relative;
      z-index: 3;
      margin-top: 64px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: 0 18px 45px rgba(39,43,0,.07);
    }
    .proof-item { min-height: 130px; padding: 26px; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; border-right: 1px solid var(--line); }
    .proof-item:last-child { border-right: 0; }
    .proof-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--light); background: var(--deep); border-radius: 12px; }
    .proof-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .proof-item small { display: block; margin-bottom: 5px; color: var(--deep); font-size: 11px; font-weight: 800; }
    .proof-item b { display: block; margin-bottom: 5px; font-size: 16px; font-weight: 800; }
    .proof-item p { margin: 0; color: var(--deep); font-size: 13px; font-weight: 600; line-height: 1.55; }

    /* PRODUTOS */
    .hook-gallery { color: var(--hook-widget-ink, var(--dark)); }
    .product-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 22px; }
    .product-card {
      grid-column: span 4;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      background: var(--hook-widget-surface, var(--white));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 18px 42px rgba(39,43,0,.06);
    }
    .product-card:nth-child(n+4) { grid-column: span 6; }
    .product-image { min-height: 420px; border: 0; border-bottom: 1px solid var(--line); }
    .product-card:nth-child(n+4) .product-image { min-height: 340px; }
    .product-card--oversized .product-image { background: linear-gradient(135deg, var(--paper), var(--soft)); }
    .product-card--fishing .product-image { background: linear-gradient(135deg, var(--light), var(--mid)); }
    .product-card--women .product-image { background: linear-gradient(135deg, var(--white), var(--soft)); }
    .product-card--kids .product-image { background: linear-gradient(135deg, var(--light), var(--soft)); }
    .product-body { flex: 1; padding: 26px; display: flex; flex-direction: column; align-items: flex-start; }
    .product-type { margin-bottom: 12px; color: var(--deep); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
    .product-body h3 { margin-bottom: 12px; font-size: 23px; font-weight: 800; line-height: 1.18; letter-spacing: -.025em; }
    .product-body p { margin-bottom: 18px; color: var(--deep); font-size: 15px; font-weight: 600; line-height: 1.6; }
    .product-chip { margin-bottom: 22px; padding: 7px 11px; color: var(--dark); background: var(--hook-widget-soft, var(--paper)); border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 800; }
    .gallery-trigger {
      margin-top: auto;
      padding: 0;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--dark);
      background: transparent;
      border: 0 !important;
      border-radius: 0;
      outline: 0;
      box-shadow: none !important;
      appearance: none;
      font-size: 15px;
      font-weight: 800;
      text-decoration: none;
      cursor: pointer;
    }
    .gallery-trigger:focus-visible { text-decoration: underline; text-underline-offset: 5px; }
    .gallery-trigger svg { width: 17px; height: 17px; fill: none; stroke: var(--deep); stroke-width: 2; transition: transform .2s ease; }
    .gallery-trigger:hover svg, .gallery-trigger:focus-visible svg { transform: translateX(4px); }

    /* POR QUE HOOK */
    .value-grid { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: 80px; align-items: center; }
    .value-copy h2 { margin-bottom: 24px; font-size: clamp(46px,5vw,68px); font-weight: 800; line-height: 1; letter-spacing: -.045em; }
    .value-copy > p:not(.eyebrow) { max-width: 520px; margin-bottom: 32px; color: var(--soft); font-size: 17px; font-weight: 600; line-height: 1.75; }
    .value-mark { width: 88px; height: 88px; display: grid; place-items: center; color: var(--dark); background: var(--light); border-radius: 18px; font-size: 42px; font-weight: 800; }
    .benefit-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
    .benefit-card { min-height: 210px; padding: 28px; color: var(--dark); background: var(--light); border-radius: 16px; }
    .benefit-card:nth-child(even) { background: var(--soft); }
    .benefit-card small { display: block; margin-bottom: 34px; color: var(--deep); font-size: 12px; font-weight: 800; }
    .benefit-card h3 { margin-bottom: 10px; font-size: 20px; font-weight: 800; }
    .benefit-card p { margin-bottom: 0; color: var(--deep); font-size: 14px; font-weight: 600; line-height: 1.6; }

    /* PROCESSO */
    .process-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
    .process-card { min-height: 230px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
    .process-top { margin-bottom: 42px; display: flex; align-items: center; justify-content: space-between; }
    .process-top strong { color: var(--deep); font-size: 24px; font-weight: 800; }
    .process-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--deep); border: 1px solid var(--line); border-radius: 50%; }
    .process-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .process-card h3 { margin-bottom: 9px; font-size: 19px; font-weight: 800; }
    .process-card p { margin-bottom: 0; color: var(--deep); font-size: 14px; font-weight: 600; line-height: 1.65; }
    .process-gallery { margin-top: 28px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
    .process-image { min-height: 190px; border-radius: 14px; }

    /* ESTRUTURA */
    .structure-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 20px; }
    .structure-card { grid-column: span 2; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
    .structure-card:nth-child(n+4) { grid-column: span 3; }
    .structure-image { min-height: 250px; border: 0; border-bottom: 1px solid var(--line); }
    .structure-body { padding: 24px; }
    .structure-body small { display: block; margin-bottom: 13px; color: var(--deep); font-size: 11px; font-weight: 800; }
    .structure-body h3 { margin-bottom: 9px; font-size: 19px; font-weight: 800; }
    .structure-body p { margin-bottom: 0; color: var(--deep); font-size: 14px; font-weight: 600; line-height: 1.6; }
    .materials-panel { margin-top: 60px; padding: 42px; color: var(--light); background: var(--dark); border-radius: 22px; }
    .materials-heading { margin-bottom: 32px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
    .materials-heading h3 { max-width: 620px; margin-bottom: 0; font-size: clamp(28px,3vw,40px); font-weight: 800; line-height: 1.1; letter-spacing: -.035em; }
    .materials-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
    .material-card { overflow: hidden; background: rgba(255,255,255,.06); border: 1px solid rgba(248,251,202,.17); border-radius: 14px; }
    .material-image { aspect-ratio: 1; border: 0; border-bottom: 1px solid rgba(248,251,202,.17); }
    .material-card b { min-height: 58px; padding: 16px; display: flex; align-items: center; color: var(--light); font-size: 13px; font-weight: 800; }

    /* MARCAS — Carousel no desktop; lista vertical no mobile */
    .hook-brands { color: var(--hook-brands-text, var(--light)); background: var(--hook-brands-bg, var(--deep)); }
    .brand-viewport { width: 100%; overflow: hidden; }
    .brand-track { width: max-content; display: flex; gap: 18px; animation: brand-scroll 32s linear infinite; }
    .brand-viewport:hover .brand-track, .brand-viewport:focus-within .brand-track { animation-play-state: paused; }
    .brand-card {
      width: 280px;
      flex: 0 0 280px;
      overflow: hidden;
      color: var(--dark);
      background: var(--hook-brands-card, var(--white));
      border: 1px solid rgba(248,251,202,.18);
      border-radius: 16px;
    }
    .brand-logo { min-height: 160px; border: 0; border-bottom: 3px solid var(--hook-brands-accent, var(--soft)); }
    .brand-body { min-height: 88px; padding: 18px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
    .brand-body b { display: block; margin-bottom: 5px; font-size: 18px; font-weight: 800; }
    .brand-body span { color: var(--deep); font-size: 13px; font-weight: 600; }
    @keyframes brand-scroll { to { transform: translateX(calc(-50% - 9px)); } }

    /* FAQ — respostas sempre visíveis */
    .faq-grid { display: grid; grid-template-columns: minmax(300px,.7fr) minmax(0,1.3fr); gap: 68px; align-items: stretch; }
    .faq-visual { position: relative; top: auto; height: 100%; overflow: hidden; display: flex; flex-direction: column; border-radius: 18px; box-shadow: var(--shadow); }
    .faq-image { min-height: 650px; flex: 1 1 auto; border: 0; }
    .faq-caption { padding: 24px; color: var(--light); background: var(--dark); }
    .faq-caption b { display: block; margin-bottom: 6px; font-size: 17px; font-weight: 800; }
    .faq-caption span { color: var(--soft); font-size: 13px; font-weight: 600; }
    .faq-list { display: grid; gap: 14px; }
    .faq-item { padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
    .faq-question { margin-bottom: 12px; display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
    .faq-question span { color: var(--deep); font-size: 12px; font-weight: 800; }
    .faq-question h3 { margin: 0; font-size: 18px; font-weight: 800; line-height: 1.4; }
    .faq-item p { margin: 0 0 0 46px; color: var(--deep); font-size: 14px; font-weight: 600; line-height: 1.7; }

    /* CONTATO */
    .contact-grid { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); gap: 20px; align-items: stretch; }
    .contact-panel { padding: 42px; color: var(--light); background: var(--dark); border-radius: 20px; }
    .contact-panel h2 { margin-bottom: 24px; font-size: clamp(42px,4vw,58px); font-weight: 800; line-height: 1; letter-spacing: -.045em; }
    .contact-panel > p:not(.eyebrow) { margin-bottom: 34px; color: var(--soft); font-size: 15px; font-weight: 600; line-height: 1.75; }
    .contact-details { display: grid; border-top: 1px solid rgba(248,251,202,.18); }
    .contact-detail { padding: 18px 0; display: grid; grid-template-columns: 36px 1fr; gap: 14px; border-bottom: 1px solid rgba(248,251,202,.18); }
    .contact-detail svg { width: 22px; height: 22px; fill: none; stroke: var(--soft); stroke-width: 1.8; }
    .contact-detail small { display: block; margin-bottom: 4px; color: var(--soft); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
    .contact-detail b { font-size: 14px; font-weight: 800; }
    .contact-flags { margin-top: 26px; display: flex; gap: 10px; }
    .contact-flags img { width: 36px; height: 24px; border-radius: 2px; object-fit: cover; border: 1px solid rgba(248,251,202,.3); }
    .form-panel { padding: 42px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
    .form-panel h3 { margin-bottom: 8px; font-size: 34px; font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
    .form-panel > p { margin-bottom: 30px; color: var(--deep); font-size: 15px; font-weight: 600; }
    .form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
    .field { display: grid; gap: 8px; }
    .field--full { grid-column: 1/-1; }
    .field label, .field > span { color: var(--dark); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
    .field input, .field select, .field textarea {
      width: 100%;
      min-height: 54px;
      padding: 14px 15px;
      color: var(--dark);
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 11px;
      font-size: 14px;
      font-weight: 600;
      outline: none;
    }
    .field textarea { min-height: 140px; resize: vertical; }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--deep); box-shadow: 0 0 0 3px rgba(84,88,47,.12); }
    .upload-grid { grid-column: 1/-1; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
    .upload-field { position: relative; min-height: 96px; padding: 18px; display: flex; align-items: center; gap: 14px; border: 1px dashed var(--mid); border-radius: 12px; cursor: pointer; }
    .upload-field input { position: absolute; width: 1px; height: 1px; opacity: 0; }
    .upload-field svg { width: 26px; height: 26px; fill: none; stroke: var(--deep); stroke-width: 1.8; }
    .upload-field b { display: block; margin-bottom: 3px; font-size: 14px; font-weight: 800; }
    .upload-field small { color: var(--deep); font-size: 10px; font-weight: 600; }
    .form-bottom { grid-column: 1/-1; margin-top: 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .consent { display: flex; align-items: flex-start; gap: 10px; color: var(--deep); font-size: 11px; font-weight: 600; line-height: 1.5; }
    .consent input { width: 16px; height: 16px; margin-top: 1px; accent-color: var(--dark); }
    .form-status { grid-column: 1/-1; min-height: 20px; margin: 0; color: var(--deep); font-size: 13px; font-weight: 700; }
    .map-band { min-height: var(--hook-map-height, 510px); padding: 76px 0; background: var(--dark); }
    .location-card { min-height: calc(var(--hook-map-height, 510px) - 152px); overflow: hidden; display: grid; grid-template-columns: 1.5fr .7fr; background: var(--soft); border: 8px solid var(--white); border-radius: 22px; box-shadow: 0 24px 65px rgba(0,0,0,.22); }
    .map-visual { position: relative; overflow: hidden; min-height: 360px; background:
      linear-gradient(26deg, transparent 47%, rgba(84,88,47,.28) 47% 49%, transparent 49%),
      linear-gradient(143deg, transparent 36%, rgba(84,88,47,.22) 36% 38%, transparent 38%),
      radial-gradient(circle at 64% 48%, var(--dark) 0 8px, transparent 9px),
      var(--soft);
    }
    .map-visual::before, .map-visual::after { content: ""; position: absolute; background: rgba(84,88,47,.16); border-radius: 50%; }
    .map-visual::before { width: 280px; height: 220px; left: 8%; top: 8%; }
    .map-visual::after { width: 330px; height: 260px; right: 2%; bottom: -20%; }
    .location-info { padding: 38px; display: flex; flex-direction: column; justify-content: center; color: var(--hook-map-text, var(--light)); background: var(--hook-map-card, var(--dark)); }
    .location-info h3 { margin-bottom: 10px; font-size: 34px; font-weight: 800; }
    .location-info p { margin-bottom: 24px; color: var(--soft); font-size: 14px; font-weight: 600; line-height: 1.65; }

    /* FOOTER */
    .site-footer { padding: 70px 0 24px; color: var(--hook-footer-text, var(--light)); background: var(--hook-footer-bg, var(--dark)); }
    .footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr 1.2fr; gap: 52px; }
    .footer-logo { width: 190px; margin-bottom: 22px; }
    .footer-brand p { max-width: 320px; margin-bottom: 22px; color: var(--hook-footer-muted, var(--soft)); font-size: 13px; font-weight: 600; line-height: 1.7; }
    .footer-flags { display: flex; gap: 8px; }
    .footer-flags img { width: 32px; height: 22px; border-radius: 2px; object-fit: cover; }
    .footer-column h3, .footer-news h3 { margin-bottom: 18px; color: var(--hook-footer-muted, var(--soft)); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
    .footer-column { display: flex; flex-direction: column; gap: 11px; }
    .footer-column a, .footer-column span { color: var(--hook-footer-muted, var(--soft)); font-size: 13px; font-weight: 600; }
    .footer-news p { margin-bottom: 16px; color: var(--hook-footer-muted, var(--soft)); font-size: 13px; font-weight: 600; line-height: 1.6; }
    .newsletter { display: flex; }
    .newsletter input { width: 100%; min-width: 0; height: 48px; padding: 0 14px; color: var(--dark); background: var(--white); border: 0; border-radius: 10px 0 0 10px; font-size: 13px; font-weight: 600; }
    .newsletter button { width: 50px; flex: 0 0 50px; color: var(--light); background: var(--deep); border-radius: 0 10px 10px 0; cursor: pointer; }
    .newsletter svg { width: 18px; height: 18px; margin: auto; fill: none; stroke: currentColor; stroke-width: 2; }
    .footer-status { min-height: 18px; margin: 7px 0 0; color: var(--hook-footer-muted, var(--soft)); font-size: 10px; }
    .footer-bottom { margin-top: 52px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--hook-footer-muted, var(--soft)); border-top: 1px solid rgba(248,251,202,.15); font-size: 11px; font-weight: 600; }
    .footer-bottom nav { display: flex; flex-wrap: wrap; gap: 22px; }

    .whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 56px; height: 56px; display: grid; place-items: center; color: var(--light); background: var(--deep); border: 2px solid var(--light); border-radius: 50%; box-shadow: 0 14px 34px rgba(39,43,0,.24); }
    .whatsapp-float svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; }

    /* GALERIA */
    .gallery-dialog { width: min(1160px, calc(100% - 32px)); max-height: calc(100vh - 32px); padding: 0; overflow: auto; color: var(--dark); background: var(--white); border: 0; border-radius: 20px; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
    .gallery-dialog::backdrop { background: rgba(24,27,0,.82); backdrop-filter: blur(5px); }
    .gallery-close { position: absolute; top: 14px; right: 14px; z-index: 4; width: 44px; height: 44px; display: grid; place-items: center; color: var(--light); background: var(--dark); border-radius: 50%; cursor: pointer; }
    .gallery-close svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
    .gallery-layout { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(300px,.7fr); min-height: 680px; }
    .gallery-stage { position: relative; min-height: 680px; display: grid; place-items: center; overflow: hidden; background: var(--paper); }
    .gallery-stage.theme-basic { background: linear-gradient(135deg,var(--white),var(--soft)); }
    .gallery-stage.theme-oversized { background: linear-gradient(135deg,var(--paper),var(--mid)); }
    .gallery-stage.theme-fishing { background: linear-gradient(135deg,var(--light),var(--deep)); }
    .gallery-stage.theme-women { background: linear-gradient(135deg,var(--white),var(--soft)); }
    .gallery-stage.theme-kids { background: linear-gradient(135deg,var(--light),var(--mid)); }
    .gallery-stage::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg,transparent 0 33%,rgba(255,255,255,.18) 33% 33.2%); }
    .gallery-image-label { position: relative; z-index: 1; text-align: center; }
    .gallery-image-label small { display: block; margin-bottom: 8px; color: var(--deep); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
    .gallery-image-label strong { display: block; font-size: 24px; font-weight: 800; }
    .gallery-arrow { position: absolute; top: 50%; z-index: 3; width: 48px; height: 48px; display: grid; place-items: center; color: var(--light); background: var(--dark); border-radius: 50%; cursor: pointer; transform: translateY(-50%); }
    .gallery-arrow--prev { left: 18px; }
    .gallery-arrow--next { right: 18px; }
    .gallery-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
    .gallery-dots { position: absolute; bottom: 20px; left: 50%; z-index: 3; display: flex; gap: 8px; transform: translateX(-50%); }
    .gallery-dot { width: 9px; height: 9px; padding: 0; background: rgba(39,43,0,.32); border-radius: 50%; cursor: pointer; }
    .gallery-dot.is-active { background: var(--dark); }
    .gallery-info { padding: 70px 40px 40px; display: flex; flex-direction: column; }
    .gallery-info h2 { margin-bottom: 16px; font-size: 38px; font-weight: 800; line-height: 1.08; letter-spacing: -.04em; }
    .gallery-info > p:not(.eyebrow) { margin-bottom: 28px; color: var(--deep); font-size: 15px; font-weight: 600; line-height: 1.7; }
    .gallery-material { margin-bottom: 28px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .gallery-material small { display: block; margin-bottom: 4px; color: var(--deep); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
    .gallery-material b { font-size: 16px; font-weight: 800; }
    .gallery-counter { margin-top: auto; color: var(--deep); font-size: 12px; font-weight: 800; }

    :focus-visible { outline: 3px solid var(--light); outline-offset: 3px; }
    .section--white :focus-visible, .section--soft :focus-visible, .hero :focus-visible, .contact :focus-visible, .gallery-dialog :focus-visible { outline-color: var(--dark); }

    @media (max-width: 1120px) {
      .header-inner { gap: 18px; }
      .site-logo { width: 178px; }
      .desktop-nav { gap: 16px; }
      .desktop-nav a { font-size: 13px; }
      .header-actions { gap: 12px; }
      .hero-grid { gap: 44px; }
      .proof-grid { grid-template-columns: repeat(2,1fr); }
      .proof-item:nth-child(2) { border-right: 0; }
      .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .footer-grid { grid-template-columns: 1.2fr .7fr 1fr; }
      .footer-news { grid-column: 1/-1; max-width: 520px; }
    }

    @media (max-width: 960px) {
      :root { --header-height: 76px; }
      .header-inner { width: min(calc(100% - 30px),1280px); gap: 14px; }
      .site-logo { width: clamp(154px,42vw,184px); }
      .desktop-nav, .header-actions > .header-cta { display: none; }
      .header-actions { margin-left: auto; }
      .country-button { width: 31px; height: 22px; padding: 0; }
      .menu-toggle { display: inline-flex; }
      .mobile-panel { position: absolute; top: 100%; right: 0; left: 0; padding: 20px 15px 24px; color: var(--light); background: var(--dark); border-top: 1px solid var(--deep); box-shadow: 0 22px 40px rgba(39,43,0,.22); }
      .mobile-panel.is-open { display: block; }
      .mobile-panel nav { display: grid; margin-bottom: 18px; }
      .mobile-panel nav a { padding: 15px 4px; border-bottom: 1px solid rgba(248,251,202,.14); font-size: 16px; font-weight: 700; }
      .mobile-panel .button { width: 100%; }
      .hero-grid, .value-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
      .hero-copy { max-width: 720px; }
      .hero-media { min-height: 520px; }
      .section-heading { grid-template-columns: 1fr; gap: 22px; }
      .section-heading > p { max-width: 700px; }
      .product-card, .product-card:nth-child(n+4) { grid-column: span 6; }
      .process-grid { grid-template-columns: repeat(2,1fr); }
      .process-gallery { grid-template-columns: repeat(2,1fr); }
      .structure-card, .structure-card:nth-child(n+4) { grid-column: span 3; }
      .materials-grid { grid-template-columns: repeat(2,1fr); }
      .faq-visual { position: relative; top: auto; }
      .faq-image { min-height: 480px; }
      .location-card { grid-template-columns: 1.15fr .85fr; }
      .gallery-layout { grid-template-columns: 1fr; }
      .gallery-stage { min-height: 560px; }
      .gallery-info { padding: 36px; }
    }

    @media (max-width: 700px) {
      .shell { width: calc(100% - 30px); }
      .section { padding: 76px 0; }
      .section-heading { margin-bottom: 36px; }
      .section-heading h2 { font-size: clamp(36px,11vw,48px); }
      .hero { padding-top: 58px; }
      .hero h1 { font-size: clamp(46px,13vw,62px); }
      .hero-lead { font-size: 16px; }
      .hero-buttons { display: grid; }
      .hero-buttons .button { width: 100%; }
      .hero-media { min-height: 430px; margin-top: 6px; }
      .hero-media-caption { align-items: flex-start; flex-direction: column; }
      .hero-media-caption span { text-align: left; }
      .proof-grid { margin-top: 48px; grid-template-columns: 1fr; border-radius: 16px; }
      .proof-item, .proof-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
      .proof-item:last-child { border-bottom: 0; }
      .product-grid, .process-grid, .process-gallery, .benefit-grid, .form-grid, .upload-grid, .materials-grid { grid-template-columns: 1fr; }
      .product-card, .product-card:nth-child(n+4) { grid-column: 1/-1; }
      .product-image, .product-card:nth-child(n+4) .product-image { min-height: 410px; }
      .value-grid { gap: 46px; }
      .value-copy h2 { font-size: 46px; }
      .process-card { min-height: auto; }
      .process-image { min-height: 220px; }
      .structure-grid { grid-template-columns: 1fr; }
      .structure-card, .structure-card:nth-child(n+4) { grid-column: 1/-1; }
      .structure-image { min-height: 230px; }
      .materials-panel { padding: 28px 18px; }
      .materials-heading { align-items: flex-start; flex-direction: column; }
      .material-image { min-height: 230px; aspect-ratio: auto; }

      /* Nada de rolagem lateral no mobile: as marcas ficam em sequência vertical. */
      .brand-viewport { overflow: visible; }
      .brand-track { width: 100%; display: grid; grid-template-columns: 1fr; gap: 14px; animation: none; transform: none !important; }
      .brand-card { width: 100%; flex: none; display: block; }
      .brand-card.is-clone { display: none; }
      .brand-logo { min-height: 190px; border-right: 0; border-bottom: 3px solid var(--soft); }
      .brand-body { min-height: 92px; }
      .faq-grid { gap: 30px; }
      .faq-image { min-height: 360px; }
      .faq-item { padding: 21px; }
      .faq-item p { margin-left: 0; }
      .contact-panel, .form-panel { padding: 28px 20px; }
      .contact-panel h2 { font-size: 43px; }
      .field--full, .upload-grid, .form-bottom, .form-status { grid-column: auto; }
      .form-bottom { align-items: stretch; flex-direction: column; }
      .form-bottom .button { width: 100%; }
      .location-card { grid-template-columns: 1fr; }
      .map-visual { min-height: 280px; }
      .location-info { padding: 30px 22px; }
      .footer-grid { grid-template-columns: 1fr; gap: 38px; }
      .footer-news { grid-column: auto; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
      .footer-bottom nav { display: grid; gap: 10px; }
      .gallery-dialog { width: calc(100% - 18px); max-height: calc(100vh - 18px); border-radius: 14px; }
      .gallery-stage { min-height: 440px; }
      .gallery-arrow { width: 42px; height: 42px; }
      .gallery-arrow--prev { left: 10px; }
      .gallery-arrow--next { right: 10px; }
      .gallery-info { padding: 28px 20px; }
      .gallery-info h2 { font-size: 30px; }
    }

    @media (max-width: 430px) {
      .header-inner { width: calc(100% - 24px); gap: 9px; }
      .site-logo { width: 145px; }
      .header-actions { gap: 8px; }
      .country-switcher { gap: 4px; }
      .country-button { width: 28px; height: 20px; }
      .menu-toggle { width: 38px; height: 38px; }
      .hero h1 { font-size: 48px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
    }

/* Elementor integration: preserves the approved HTML geometry. */
body.elementor-page .site-main,
body.elementor-page .page-content,
body.elementor-page .entry-content { max-width: none; padding: 0; margin: 0; }

/* Theme Builder: remove o limite do contêiner antes de renderizar Header e Footer. */
.elementor-location-header,
.elementor-location-footer,
.elementor-location-header > .elementor,
.elementor-location-footer > .elementor,
.elementor-location-header .e-con,
.elementor-location-footer .e-con,
.elementor-location-header .e-con-inner,
.elementor-location-footer .e-con-inner {
  width: 100% !important;
  max-width: none !important;
  overflow: visible !important;
}
.elementor-location-header .elementor-widget-hook_header,
.elementor-location-footer .elementor-widget-hook_footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-inline: calc(50% - 50vw) !important;
}
.elementor-widget-hook_hero_exact,
.elementor-widget-hook_gallery,
.elementor-widget-hook_value_exact,
.elementor-widget-hook_process_exact,
.elementor-widget-hook_structure_exact,
.elementor-widget-hook_brands,
.elementor-widget-hook_faq_exact,
.elementor-widget-hook_contact_info_exact,
.elementor-widget-hook_project_form,
.elementor-widget-hook_map,
.elementor-widget-hook_header,
.elementor-widget-hook_footer { width: 100%; }
.elementor-widget-hook_hero_exact > .elementor-widget-container,
.elementor-widget-hook_gallery > .elementor-widget-container,
.elementor-widget-hook_value_exact > .elementor-widget-container,
.elementor-widget-hook_process_exact > .elementor-widget-container,
.elementor-widget-hook_structure_exact > .elementor-widget-container,
.elementor-widget-hook_brands > .elementor-widget-container,
.elementor-widget-hook_faq_exact > .elementor-widget-container,
.elementor-widget-hook_contact_info_exact > .elementor-widget-container,
.elementor-widget-hook_project_form > .elementor-widget-container,
.elementor-widget-hook_map > .elementor-widget-container,
.elementor-widget-hook_header > .elementor-widget-container,
.elementor-widget-hook_footer > .elementor-widget-container { width: 100%; margin: 0; padding: 0; }
.hook-exact-page.e-con,
.hook-exact-page .e-con { --padding-top: 0; --padding-right: 0; --padding-bottom: 0; --padding-left: 0; --gap: 0; }
.exact-media { position: relative; overflow: hidden; }
.exact-media > img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* O Hero acompanha a altura do texto. A mídia deve ocupar toda a moldura,
   enquanto a legenda permanece sobreposta, sem criar uma faixa vazia. */
.hero-media > .hero-image.exact-media {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.hero-media > .hero-image.exact-media > img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center;
}
.product-chip { text-decoration: none; }
.faq-heading { display: block; margin-bottom: 36px; }
.faq-heading h2 { margin: 0; }

/* Exact gallery with real media. */
.gallery-stage .hook-gallery-modal-image { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: contain; }
.gallery-stage::after { z-index: 2; pointer-events: none; }
.gallery-close { font-size: 26px; line-height: 1; }
.gallery-material a { color: inherit; font-size: 16px; font-weight: 800; }
body.hook-modal-open { overflow: hidden; }

/* Exact brand loop while keeping every brand editable in one repeater. */
.hook-brands-group { display: flex; gap: 18px; }
.hook-brand-logo img { padding: 22px; object-fit: contain; }

/* Header behavior uses Elementor's editable widget markup. */
.hook-header.is-menu-open .mobile-panel { display: block; }
.menu-toggle span { width: 22px; height: 2px; display: block; background: currentColor; }
.menu-toggle { flex-direction: column; gap: 5px; }
.hook-header-logo img { width: 100% !important; }

/* Mapa satélite centralizado dentro de uma faixa escura de largura total. */
.elementor-widget-hook_map,
.elementor-widget-hook_map > .elementor-widget-container { max-width: none !important; }
.location-card .map-visual { width: 100%; height: 100%; min-height: 440px; border: 0; }

/* Formulário Hook nativo: os textos e cada campo continuam editáveis no Elementor. */
.hook-project-form {
  --hook-form-bg: var(--white);
  --hook-form-title: var(--dark);
  --hook-form-label: var(--dark);
  --hook-form-button: var(--dark);
  --hook-form-button-text: var(--light);
  width: 100%;
  color: var(--dark);
  background: var(--hook-form-bg);
}
.hook-project-form .hook-form-eyebrow { margin-bottom: 20px; color: var(--deep); }
.hook-project-form h3 { margin: 0 0 8px; color: var(--hook-form-title) !important; font-size: 34px; font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
.hook-project-form .hook-form-intro { margin: 0 0 30px; color: var(--hook-form-title) !important; font-size: 15px; font-weight: 600; line-height: 1.65; }
.hook-project-form .field > span { color: var(--hook-form-label) !important; }
.hook-project-form .field input,
.hook-project-form .field select,
.hook-project-form .field textarea { color: var(--dark) !important; background: var(--white) !important; }
.hook-project-form .upload-field { color: var(--dark); background: var(--paper); }
.hook-project-form .hook-form-submit {
  min-width: 230px;
  color: var(--hook-form-button-text) !important;
  background: var(--hook-form-button) !important;
  border-color: var(--hook-form-button) !important;
  box-shadow: none !important;
}
.hook-project-form .hook-form-submit:hover,
.hook-project-form .hook-form-submit:focus-visible { color: var(--hook-form-button) !important; background: transparent !important; }
.hook-project-form .hook-form-submit:disabled { opacity: .62; cursor: wait; transform: none; }
.hook-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status.is-success { color: var(--deep); }
.form-status.is-error { color: var(--dark); }
.contact-grid > .elementor-element { min-width: 0; }
.hook-contact-section.e-con { width: 100vw; max-width: none; margin-inline: calc(50% - 50vw); padding: 110px 0 !important; background: linear-gradient(rgba(190,192,146,.28), rgba(190,192,146,.28)), var(--paper); }
.hook-contact-shell.e-con { width: min(calc(100% - 48px),var(--content-width)); max-width: none; margin-inline: auto; padding: 0; display: flex; flex-direction: column; gap: 0; }
.contact-grid.e-con { width: 100%; max-width: none; padding: 0; display: grid; grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); gap: 20px; align-items: stretch; }
.contact-grid .elementor-widget-hook_contact_info_exact,
.contact-grid .elementor-widget-hook_contact_info_exact > .elementor-widget-container,
.contact-grid .contact-panel,
.contact-grid .elementor-widget-hook_project_form,
.contact-grid .elementor-widget-hook_project_form > .elementor-widget-container,
.contact-grid .hook-project-form { height: 100%; }

/* Footer integrations. */
.hook-socials { display: flex; gap: 10px; margin-top: 16px; }
.hook-socials a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(248,251,202,.22); border-radius: 50%; }
.hook-socials svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.hook-socials .fill { fill: currentColor; stroke: none; }
.hook-socials .fill-bg { fill: var(--dark); stroke: currentColor; }
.hook-mailpoet-placeholder { min-height: 48px; padding: 0 14px; display: flex; align-items: center; color: var(--soft); border: 1px solid rgba(248,251,202,.18); border-radius: 10px; font-size: 11px; }
.whatsapp-float.hook-whatsapp { width: var(--hook-whatsapp-size,56px); height: var(--hook-whatsapp-size,56px); right: var(--hook-whatsapp-right,22px); bottom: var(--hook-whatsapp-bottom,22px); }
.whatsapp-float.hook-whatsapp svg { fill: currentColor; stroke: none; }

@media (max-width:960px) {
  .contact-grid.e-con { grid-template-columns: 1fr; }
}

@media (max-width:700px) {
  .hook-brands-group { display: contents; }
  .hook-brands-clone { display: none; }
  .hook-contact-section.e-con { padding: 76px 0 !important; }
  .hook-contact-shell.e-con { width: calc(100% - 30px); }
  .contact-grid.e-con { grid-template-columns: 1fr; }
}

/*
 * 4.0.2 — Full bleed real no Theme Builder.
 *
 * O Elementor pode manter o widget dentro da largura global do kit mesmo
 * quando o contêiner declara 100vw. O fundo atravessa esse quadro sem esticar
 * logo, menu ou colunas, que continuam centralizados e editáveis.
 */
.elementor-location-header,
.elementor-location-footer,
.elementor-location-header .elementor-widget-hook_header,
.elementor-location-footer .elementor-widget-hook_footer,
.elementor-location-header .elementor-widget-hook_header > .elementor-widget-container,
.elementor-location-footer .elementor-widget-hook_footer > .elementor-widget-container {
  overflow: visible !important;
  contain: none !important;
}

.elementor-location-header .hook-header {
  box-shadow: 0 0 0 100vmax var(--hook-header-bg, var(--dark)) !important;
  clip-path: inset(0 -100vmax);
}

.elementor-location-footer .hook-footer {
  box-shadow: 0 0 0 100vmax var(--hook-footer-bg, var(--dark)) !important;
  clip-path: inset(0 -100vmax);
}
