/* Theme base styles — touched 2026-04-30 v5 (remove font-weight inherit rule, fix mega-col display:grid base + 2col) */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* ============================================================================
   HEADER — verbatim from the approved home.html
   v2026-05-03b: hamburger toggle + mobile CTA stacked column + cleanup
   ============================================================================ */

/* Default: estado "scrolled" (branco/blur/border) — apropriado pra páginas
   regulares que começam com hero/section com background próprio.
   Home override em pages/home.css faz o header transparente pro hero full-bleed. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 253, 253, .72) !important;
  backdrop-filter: blur(28px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
  border-bottom: 1px solid var(--gray-200) !important;
  box-shadow: none !important;
  outline: none !important;
  will-change: background, box-shadow;
  transform: translateZ(0);
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease !important;
}

/* Compensação do header fixed: empurra o conteúdo abaixo dele.
   Home override pra 0 (hero full-bleed começa atrás do header transparente). */
.body-container-wrapper { padding-top: 80px; }
@media (max-width: 980px) {
  .body-container-wrapper { padding-top: 64px; }
}

.header-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo { display: flex; align-items: center; }
.logo-img {
  width: 100px;
  height: auto;
  display: block;
  transition: width .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  background: rgba(253, 253, 253, .72) !important;
  backdrop-filter: blur(28px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
  border-bottom: none !important;
  box-shadow: 0 1px 0 rgba(12, 10, 8, .08) !important;
}
.site-header.scrolled .header-inner { height: 60px; }
.site-header.scrolled .logo-img { width: 80px; }

/* 19/Jun: header DESKTOP com 87px (igual produção dotgroup.com.br) p/ dar mais
   visibilidade ao logo, e SEM encolher no scroll (header e logo mantêm o tamanho
   no estado .scrolled). Escopado a >=981px pra NÃO afetar o header mobile
   (<=980px segue 64px, comportamento original).
   19/Jun (rev): logo aumentado p/ 143px (natural 1468x703 → ~68px de altura,
   cabe no header 87px) e mantido 143px no .scrolled — SEM animação de shrink
   no scroll (header 87px e logo 143px constantes nos dois estados). */
@media (min-width: 981px) {
  .body-container-wrapper { padding-top: 87px; }
  .header-inner { height: 87px; }
  .site-header.scrolled .header-inner { height: 87px; }
  .logo-img { width: 143px; }
  .site-header.scrolled .logo-img { width: 143px; }
}

/* ── Mega Nav ── */
.mega-nav { flex: 1; display: flex; justify-content: center; }
.mega-nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
}
.mega-nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  transition: var(--transition);
}
/* Pill verde solido no hover/active (home_v2 ref) */
.mega-nav-item > a:hover,
.mega-nav-item.has-mega:hover > a { color: #fff; background: #76B900; }
.mega-arrow { font-size: 0.65rem; color: var(--gray-400); transition: var(--transition); }
.mega-nav-item:hover .mega-arrow,
.mega-nav-item.has-mega:hover > a .mega-arrow { transform: rotate(180deg); color: #fff; }

/* Mega Panel — posiciona relativo ao .site-header (fixed, 100vw),
   centralizado na viewport via left:50%/translateX(-50%). LI fica static
   pra que o anchor seja o header e nao o LI individual. */
.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  padding-top: calc(1.5rem + 24px);
  margin-top: -16px;
  display: none;
  gap: 1.25rem;
  min-width: 0;
  max-width: calc(100vw - 32px);
  z-index: 1000;
}
/* LI fica static, bridge no <a>::after — caminho do mouse cobre overhangs */
.mega-nav-item.has-mega { position: static; }
.mega-nav-item.has-mega > a { position: relative; }
.mega-nav-item.has-mega > a::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  max-width: calc(100vw - 32px);
  height: 20px;
  display: none;
  z-index: 999;
}
.mega-nav-item.has-mega:hover > a::after { display: block; }
.mega-nav-item.has-mega:hover .mega-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  animation: megaFadeIn 0.2s ease;
}
.mega-nav-item.has-mega:hover .mega-panel-m01 {
  grid-template-columns: 1fr 1fr 1fr 280px;
  width: min(920px, calc(100vw - 32px));
  min-width: 0;
  padding: 1.5rem;
  gap: 0;
}
.mega-nav-item.has-mega:hover .mega-panel-m01.mega-panel-m01-wide {
  grid-template-columns: 1fr 3.2fr 1fr;
  width: min(1200px, calc(100vw - 32px));
  min-width: 0;
}
.mega-panel-m01 .mega-col {
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0;
}
.mega-panel-m01 .mega-col:first-child { padding-left: 0; }
.mega-panel-m01 .mega-col + .mega-col { border-left: 1px solid var(--gray-100); }
.mega-panel-m01 .mega-col > h4 { grid-column: 1 / -1; }

.mega-col.mega-col-3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 0 12px;
}

.mega-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-100);
}
.mega-panel-m01 .mega-col h4 {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--gray-100);
}

.mlink {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.65rem !important;
  padding: 0.5rem 0.4rem !important;
  border-radius: 8px !important;
  margin-bottom: 0.1rem !important;
  color: var(--gray-900) !important;
}
.mlink:hover { background: rgba(118, 185, 0, 0.08) !important; }
.mlink-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(118, 185, 0, 0.1);
  border: 1px solid rgba(118, 185, 0, 0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
  transition: var(--transition);
}
.mlink:hover .mlink-icon { background: rgba(118, 185, 0, 0.22); }
.mlink-icon svg,
.mlink-icon img { width: 16px; height: 16px; object-fit: contain; }
.mlink-icon svg { stroke-width: 1.75; }
/* SVG colorizado via CSS mask — força cor var(--brand) #76B900 independente
   do stroke/fill original do arquivo. Funciona pra qualquer SVG monocromático
   (ou multi-color renderizado como single color recortado). */
.mlink-icon-svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--brand);
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.mlink-body { flex: 1; min-width: 0; line-height: 1.3; }
.mlink-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-900);
  display: flex; align-items: center; gap: 6px;
}
.mlink-sub {
  font-size: 0.68rem;
  color: var(--gray-400);
  margin-top: 1px;
  line-height: 1.35;
  font-weight: 400;
}

.mega-col a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  transition: var(--transition);
  margin-bottom: 0.15rem;
}
.mega-col a:hover { background: var(--gray-50); color: var(--brand); }

.mega-badge {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--brand);
  color: white;
  padding: 1px 6px;
  border-radius: 4px;
}
.mega-tag {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-left: auto;
}

/* v3: DK dark card — gradient #0C0A08 → #383838 + border sutil */
.mega-featured {
  margin-left: 0.5rem;
  background: linear-gradient(160deg, #0C0A08 0%, #383838 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  text-decoration: none;
  transition: transform .25s ease;
}
.mega-featured:hover {
  transform: translateY(-2px);
  background: linear-gradient(160deg, #0C0A08 0%, #383838 100%) !important;
}
.mega-featured-img {
  height: 120px;
  background: transparent;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-start; justify-content: flex-start;
  padding: 0.9rem 1rem;
}
.mega-featured-img::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 185, 0, .38) 0%, transparent 70%);
}
.mega-featured-badge {
  position: relative;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(118, 185, 0, 0.15);
  border: 1px solid rgba(118, 185, 0, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
}
.mega-featured-body { padding: 0.95rem 1.1rem 1.1rem; }
.mega-featured-title {
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff !important;
  margin-bottom: 0.35rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.mega-featured-desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 0.7rem;
}
.mega-featured-cta {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand) !important;
  background: transparent !important;
  padding: 0 !important;
}
.mega-featured-cta::after { content: '→'; transition: transform .2s ease; }
.mega-featured:hover .mega-featured-cta::after { transform: translateX(3px); }

@keyframes megaFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Header CTAs ── */
.header-btns {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-cta-secondary {
  padding: 9px 18px;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
  white-space: nowrap;
}
.header-cta-secondary:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: white !important;
}
.header-cta {
  background: var(--brand) !important;
  color: white !important;
  padding: 10px 20px;
  border-radius: 980px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  transition: var(--transition);
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--brand-dark) !important;
  transform: translateY(-1px);
}

.topbar { display: none !important; }

/* ── Hamburger + mobile ── */
.hamburger-btn {
  display: none;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--gray-900);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger-btn svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; }
.hamburger-btn .icon-close { display: none; }
.hamburger-btn[aria-expanded="true"] .icon-menu { display: none; }
.hamburger-btn[aria-expanded="true"] .icon-close { display: block; }

.mobile-overlay {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.mobile-overlay.active { transform: translateX(0); }
.mobile-overlay .mobile-section {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin: 1.25rem 0 0.5rem;
}
.mobile-overlay a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
}
@media (max-width: 980px) {
  .mega-nav { display: none; }
  .mega-panel { display: none !important; }
  .header-inner { padding: 0 1.25rem; height: 64px; }
  .logo-img { width: 80px !important; }
  .header-cta-secondary { display: none; }
  .hamburger-btn { display: inline-flex; }
  .mobile-overlay { top: 64px; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 1rem; }
}

/* ── home_v2 mega-menu variants (Cases / Conteúdo / Empresa layouts) ── */
.mega-nav-item.has-mega:hover .mega-panel-m01.mega-panel-cases {
  grid-template-columns: 2.2fr 1fr 1fr;
  width: min(1200px, calc(100vw - 32px));
  min-width: 0;
}
/* ── Cases: "por desafio" (dor-links) + "em destaque" (layout home_v8) ── */
.mega-span-h4 {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gray-400, #9aa3af);
  margin: 0; padding: 0 1.25rem .5rem;
  border-bottom: 1px solid var(--gray-100, #eef0f2);
  grid-column: span 2; align-self: end;
}
.mega-panel-cases .mega-h4-single { grid-column: span 1; }
.mega-panel-cases .mega-col { padding-top: .65rem !important; }
.mega-dor-link {
  display: flex; align-items: flex-start; gap: .45rem;
  font-size: .82rem; font-weight: 400; line-height: 1.45;
  text-decoration: none; color: #0C0A08;
  padding: .55rem .75rem;
  border: 1.5px solid transparent;
  border-bottom: 1px solid var(--gray-100, #eef0f2);
  transition: color .2s, background .2s, border-color .2s;
}
.mega-panel-cases .mega-dor-link:last-child { border-bottom-color: transparent; }
.mega-panel-cases .mega-dor-link:hover {
  background: rgba(118,185,0,.12);
  border-radius: 8px;
  color: var(--brand, #76B900);
}
.mega-dor-link-arrow {
  font-size: .82rem; color: var(--brand, #76B900);
  margin-top: .06rem; flex-shrink: 0; font-weight: 700;
}
.mega-panel-cases .mega-dor-link strong { font-weight: 700; color: var(--brand, #76B900); }
.mega-panel-cases .mega-col:first-of-type {
  display: flex; flex-direction: column; justify-content: space-between;
}
.mega-ver-todos-wrap { display: flex; flex-direction: column; gap: .1rem; margin-top: 0; }
.mega-cases-tagline {
  font-size: .68rem; color: var(--gray-400, #9aa3af);
  margin: 0; line-height: 1.35; font-weight: 400; padding-left: .4rem;
}
.mega-panel-cases .mega-ver-todos-wrap .mega-ver-todas { padding-bottom: 0 !important; margin-top: 0 !important; }
/* Mobile: desafios bold + verde (espelha desktop) */
.mobile-dor-link { display: flex !important; align-items: flex-start; gap: .35rem; }
.mobile-dor-arrow { color: var(--brand, #76B900); font-weight: 700; flex-shrink: 0; line-height: 1.6; }
.mobile-dor-link strong { color: var(--brand, #76B900) !important; font-weight: 700 !important; }
/* v3 (home_v3): 2 cols + featured (removida coluna Clientes) */
.mega-nav-item.has-mega:hover .mega-panel-m01.mega-panel-conteudo {
  grid-template-columns: 1fr 1fr 280px;
  width: min(860px, calc(100vw - 32px));
  min-width: 0;
}
/* v3 (home_v3): single-row 4-area layout */
.mega-nav-item.has-mega:hover .mega-panel-m01.mega-panel-empresa {
  width: min(1100px, calc(100vw - 32px));
  min-width: 0;
  grid-template-columns: 2fr 1fr 1fr 280px;
  grid-template-areas: "quem trab cont feat";
}
.mega-panel-empresa .mega-col-quem { grid-area: quem; }
.mega-panel-empresa .mega-col-trab { grid-area: trab; }
.mega-panel-empresa .mega-col-cont { grid-area: cont; }
.mega-panel-empresa .mega-featured { grid-area: feat; }
.mega-panel-empresa .mega-col-trab { border-left: none !important; }

.mega-col.mega-col-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 12px;
}

/* Cases — area de atuação cola no nome do cliente, separada por bullet verde */
.mega-panel-cases .mega-tag {
  margin-left: 0;
  position: relative;
  padding-left: 12px;
}
.mega-panel-cases .mega-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

/* ── Mobile menu accordion (home_v2 sanfonado pattern) ── */
.mobile-acc {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mobile-acc > summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #76B900;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.mobile-acc > summary::-webkit-details-marker { display: none; }
.mobile-acc > summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #76B900;
  transition: transform .25s ease;
  line-height: 1;
}
.mobile-acc[open] > summary::after { content: '−'; }
.mobile-acc-body {
  padding: 0 0 0.6rem;
  text-align: left;
}
.mobile-acc-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  padding: 0.85rem 0 0.25rem;
}
.mobile-acc-body .mobile-acc-sub:first-child { padding-top: 0.25rem; }

.mobile-overlay .mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #76B900;
  color: #fff;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: -.005em;
  text-align: center;
  text-decoration: none;
  border-bottom: none;
  transition: background .2s, color .2s, border-color .2s;
}
.mobile-overlay .mobile-cta:hover {
  background: #5E9400;
}
.mobile-overlay .mobile-cta-row {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin: 1.75rem 0 0;
  flex-wrap: wrap;
}
.mobile-overlay .mobile-cta--ghost {
  background: transparent;
  color: #0A0A0A;
  border: 1.5px solid rgba(12,10,8,.18);
}
.mobile-overlay .mobile-cta--ghost:hover {
  background: transparent;
  border-color: #76B900;
  color: #76B900;
}

/* ============================================================================
   v3 (home_v3): Soluções "Ecossistema DOT" — 4 colunas + header global + CTA
   ============================================================================ */
.mega-nav-item.has-mega:hover .mega-panel-m01.mega-panel-solucoes {
  grid-template-columns: repeat(4, 1fr);
  width: min(1200px, calc(100vw - 32px));
  min-width: 0;
}
.mega-sol-header {
  grid-column: 1 / -1;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  padding: 0 1.25rem 0.45rem;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 0.75rem;
}
/* Remove separadores entre col 2-3-4, mantém só entre col 1 e col 2 */
.mega-panel-solucoes .mega-col + .mega-col { border-left: none; }
.mega-panel-solucoes .mega-col:nth-child(3) { border-left: 1px solid var(--gray-100); }

/* Última coluna em flex pra que o botão CTA desça ao rodapé */
.mega-col-last {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}
.mega-ver-todas {
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem;
  padding: 0.5rem 0.4rem !important;
  margin-top: auto !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 0.72rem;
  font-weight: 900 !important;
  text-transform: none;
  letter-spacing: 0;
  color: var(--brand) !important;
  text-decoration: none;
}
.mega-ver-todas:hover { background: transparent !important; opacity: .75; }
.mega-ver-todas svg {
  width: 13px; height: 13px;
  stroke: var(--brand); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.mega-ver-todas:hover svg { transform: translateX(3px); }
/* ============================================================================
   FOOTER — verbatim from home_v9.html
   ============================================================================ */

.site-footer {
  background: linear-gradient(160deg, #0C0A08 0%, #1A1715 50%, #0C0A08 100%);
  color: rgba(253,253,253,.6);
  padding: 5rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 55%; height: 120%;
  background: radial-gradient(ellipse, rgba(118,185,0,.08), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.site-footer .footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo { display: inline-block; margin-bottom: 1.25rem; }
.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem 2.5rem;
  margin-bottom: 2rem;
}

/* Coluna Soluções B: heading invisível para alinhar colunas sem exibir heading duplo */
.footer-col-solucoes-b h4 { visibility: hidden; pointer-events: none; }

/* Colunas multi-heading (Conteúdo+Carreiras, Empresa) */
.footer-col-multi h4 + ul { margin-bottom: 0; }
.footer-col-multi h4:not(:first-child) { margin-top: 1.75rem; }

.footer-brand p {
  font-size: .88rem;
  color: rgba(253,253,253,.5);
  font-weight: 300;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(253,253,253,.85);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col li a {
  color: rgba(253,253,253,.5);
  font-size: .88rem;
  font-weight: 300;
  transition: color .2s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
}
.footer-col li a:hover { color: #76B900; }

/* Social icons */
.footer-social-icons { display: flex; gap: 8px; margin-top: 1.25rem; flex-wrap: wrap; }
.footer-social-icons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  font-size: 0;
}
.site-footer .footer-social-icons a:hover {
  background: #76B900;
  border-color: #76B900;
  color: #0C0A08;
}
.footer-social-icons a svg { width: 16px; height: 16px; display: block; }
.footer-social-icons a img {
  width: 16px; height: 16px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(.7);
  transition: filter .3s cubic-bezier(.16,1,.3,1);
}
.site-footer .footer-social-icons a:hover img { filter: brightness(0); }
.site-footer .footer-social-icons a:hover svg { color: #0C0A08; }

/* Badges */
.footer-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: 20px;
  overflow: hidden;
  margin: 2rem 0;
}
.footer-badge {
  padding: 22px;
  background: rgba(255,255,255,.02);
  display: flex; align-items: center; gap: 14px;
  transition: background .3s cubic-bezier(.16,1,.3,1);
}
.footer-badge:hover { background: rgba(118,185,0,.06); }
.footer-badge .ico {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(118,185,0,.3);
  display: flex; align-items: center; justify-content: center;
  color: #8FD619; flex-shrink: 0;
}
.footer-badge .ico svg { width: 20px; height: 20px; stroke-width: 1.75; }
.footer-badge .text {
  font-size: .82rem; font-weight: 700;
  color: rgba(255,255,255,.85); line-height: 1.35;
}
.footer-badge .text strong {
  display: block; font-weight: 900; color: #fff; font-size: .92rem; margin-bottom: 2px;
}

/* Badge tagline — span 2 colunas à direita dos badges */
.footer-badge-tagline {
  grid-column: span 2;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 22px 28px;
  background: rgba(255,255,255,.02);
  font-size: 1.05rem; font-weight: 500;
  color: #fff; letter-spacing: .02em;
}
.footer-badge-tagline em { font-style: italic; color: #76B900; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem; color: rgba(253,253,253,.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  color: rgba(253,253,253,.4);
  text-decoration: none;
  font-size: .78rem;
  transition: color .2s cubic-bezier(.16,1,.3,1);
}
.footer-legal a:hover { color: #76B900; }

/* Employee access */
.footer-employee-access { margin-top: 1.5rem; }
.footer-access-label {
  display: block;
  font-size: .72rem; font-weight: 900;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(253,253,253,.85);
  margin-bottom: .85rem;
}
.footer-employee-access .btn-charfx.btn-charfx--verde {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .68rem 1.75rem; border-radius: 980px;
  font-size: .9rem; font-weight: 700;
  text-decoration: none;
  background: transparent !important;
  color: #8FD619 !important;
  border: 1.5px solid #76B900;
  white-space: nowrap;
  transition: background .25s, box-shadow .25s, border-color .25s, transform .25s;
}
.footer-employee-access .btn-charfx.btn-charfx--verde:hover {
  background: #76B900 !important; color: #fff !important; border-color: #76B900;
  box-shadow: 0 8px 24px rgba(118,185,0,.3);
  transform: translateY(-2px);
}
.footer-employee-access .btn-charfx-icon {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .55s cubic-bezier(.625,.05,0,1);
}
.footer-employee-access .btn-charfx.btn-charfx--verde:hover .btn-charfx-icon { transform: translateX(5px); }
.footer-employee-access .btn-charfx-icon svg { width: 17px; height: 17px; display: block; stroke: currentColor; }

/* contato column wrapper */
.contato-main { display: block; }

/* Awards (legado, mantido para compatibilidade) */
.footer-awards { margin-top: 2rem; }
.footer-awards img { max-width: 91px; height: auto; display: block; opacity: .95; }

/* Responsive */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-badges { grid-template-columns: 1fr 1fr; }
  .footer-badge-tagline { grid-column: span 2; justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-badges { grid-template-columns: 1fr; }
  .footer-badge-tagline { grid-column: span 1; }
  .footer-bottom { flex-direction: column; }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}