@charset "UTF-8";
/* ==========================================================================
   VALORAÇO REPRESENTAÇÕES — Tema WordPress
   Paleta extraída do logo oficial. Para trocar cores, edite só o :root abaixo.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TIPOGRAFIA — Família Sequel
   Coloque os arquivos .woff2 em /assets/fonts/ com exatamente estes nomes.
   Enquanto não estiverem lá, o navegador cai no fallback automaticamente.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/SequelSans-BookBody.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/SequelSans-MediumBody.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/SequelSans-SemiBoldBody.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/SequelSans-BoldBody.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Sequel Sans Display";
  src: url("../fonts/SequelSans-BlackDisp.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Sequel Sans Display";
  src: url("../fonts/SequelSans-BoldDisp.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Sequel 100";
  src: url("../fonts/Sequel100Black-85.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Marca — amostradas do logo oficial */
  --vc-navy-900: #0A1524;
  --vc-navy-800: #101E34;   /* fundo institucional principal */
  --vc-navy-700: #16263F;
  --vc-navy-600: #1E3251;
  --vc-navy-500: #2C4468;

  --vc-red:      #941510;   /* vermelho Valoraço */
  --vc-red-600:  #B01A13;
  --vc-red-700:  #7A100C;
  --vc-red-300:  #E4564D;   /* vermelho claro: só para uso sobre fundo escuro */
  --vc-red-soft: rgba(148, 21, 16, .10);

  --vc-steel-050:#F4F6F8;
  --vc-steel-100:#E4E7EA;
  --vc-steel-200:#D9D9D9;
  --vc-steel-300:#AEAEB5;
  --vc-steel-500:#808080;
  --vc-steel-700:#4A4A4A;

  --vc-white:    #FFFFFF;
  --vc-ink:      #1C2430;
  --vc-body:     #3F4750;

  --vc-whats:    #25D366;
  --vc-whats-dk: #128C7E;

  /* Gradiente prateado do símbolo VR */
  --vc-chrome: linear-gradient(115deg, #7F858C 0%, #EDEFF1 28%, #B7BCC2 48%, #F2F4F5 66%, #9AA0A7 100%);
  --vc-navy-grad: radial-gradient(135% 155% at 12% 0%, #21375C 0%, #16263F 50%, #101E34 100%);

  /* Tipografia */
  --vc-font-display: "Sequel 100", "Sequel Sans Display", "Archivo Expanded", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --vc-font-body: "Sequel Sans", "Archivo", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --vc-fs-hero:  clamp(1.8rem, 1.1rem + 2.6vw, 2.85rem);
  --vc-fs-h2:    clamp(1.45rem, 1.05rem + 1.7vw, 2.15rem);
  --vc-fs-h3:    clamp(1.15rem, .98rem + .8vw, 1.5rem);
  --vc-fs-lead:  clamp(1.02rem, .96rem + .35vw, 1.2rem);
  --vc-fs-base:  1rem;
  --vc-fs-sm:    .875rem;
  --vc-fs-xs:    .78rem;

  /* Layout */
  --vc-wrap: 1200px;
  --vc-wrap-narrow: 880px;
  --vc-gutter: clamp(1.1rem, .6rem + 2vw, 2.5rem);
  --vc-section-y: clamp(3.25rem, 2rem + 5vw, 6.5rem);

  --vc-radius: 6px;
  --vc-radius-lg: 12px;
  --vc-shadow-sm: 0 1px 2px rgba(16,30,52,.06), 0 2px 8px rgba(16,30,52,.06);
  --vc-shadow:    0 4px 12px rgba(16,30,52,.08), 0 12px 32px rgba(16,30,52,.10);
  --vc-shadow-lg: 0 8px 24px rgba(16,30,52,.12), 0 24px 64px rgba(16,30,52,.16);

  --vc-header-h: 106px;
  --vc-ease: cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------------------
   3. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--vc-header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--vc-font-body);
  font-size: var(--vc-fs-base);
  line-height: 1.65;
  color: var(--vc-body);
  background: var(--vc-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--vc-red); text-decoration: none; transition: color .2s var(--vc-ease); }
a:hover { color: var(--vc-red-700); }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { margin: 0 0 .6em; color: var(--vc-ink); line-height: 1.14; font-weight: 700; letter-spacing: -.015em; text-wrap: balance; }
h1, h2 { font-family: var(--vc-font-display); font-weight: 900; text-transform: uppercase; letter-spacing: .005em; }
h3, h4 { font-family: var(--vc-font-body); }
p { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
:focus-visible { outline: 3px solid var(--vc-red-600); outline-offset: 3px; border-radius: 3px; }
.vc-sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.vc-skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--vc-red); color: #fff; padding: .8rem 1.2rem; }
.vc-skip:focus { left: 8px; top: 8px; color: #fff; }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.vc-wrap { width: 100%; max-width: var(--vc-wrap); margin-inline: auto; padding-inline: var(--vc-gutter); }
.vc-wrap--narrow { max-width: var(--vc-wrap-narrow); }
.vc-section { padding-block: var(--vc-section-y); position: relative; }
.vc-section--tight { padding-block: clamp(2.25rem, 1.5rem + 3vw, 4rem); }
.vc-section--navy { background: var(--vc-navy-grad); color: var(--vc-steel-200); }
.vc-section--navy h2, .vc-section--navy h3, .vc-section--navy h4 { color: var(--vc-white); }
.vc-section--steel { background: var(--vc-steel-050); }

.vc-grid { display: grid; gap: clamp(1rem, .6rem + 1.4vw, 1.85rem); }
.vc-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.vc-grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.vc-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }

/* Cabeçalho de seção */
.vc-head { max-width: 940px; margin-bottom: clamp(2rem, 1.4rem + 1.8vw, 3.25rem); }
.vc-head--center { margin-inline: auto; text-align: center; }
.vc-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--vc-font-body); font-size: var(--vc-fs-xs); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--vc-red);
  margin-bottom: .9rem;
}
.vc-eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--vc-red); flex: none; }
.vc-section--navy .vc-eyebrow { color: var(--vc-steel-200); }
.vc-section--navy .vc-eyebrow::before { background: var(--vc-red-300); }

/* Sobre fundo escuro o vermelho da marca perde legibilidade (contraste ~2:1).
   O texto vira prata claro e o traço fica com o vermelho claro, preservando o acento. */
.vc-hero .vc-eyebrow,
.vc-pagehero .vc-eyebrow { color: var(--vc-steel-100); }
.vc-hero .vc-eyebrow::before,
.vc-pagehero .vc-eyebrow::before { background: var(--vc-red-300); }
.vc-head h2 { font-size: var(--vc-fs-h2); margin-bottom: .5rem; }
.vc-head p { font-size: var(--vc-fs-lead); color: var(--vc-steel-700); margin-bottom: 0; }
.vc-section--navy .vc-head p { color: var(--vc-steel-300); }

/* --------------------------------------------------------------------------
   5. BOTÕES
   -------------------------------------------------------------------------- */
.vc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--vc-font-body); font-weight: 700; font-size: .95rem;
  letter-spacing: .035em; text-transform: uppercase; text-align: center;
  padding: 1rem 1.85rem; border: 2px solid transparent; border-radius: var(--vc-radius);
  cursor: pointer; transition: all .22s var(--vc-ease); line-height: 1.2;
}
.vc-btn svg { width: 1.15em; height: 1.15em; flex: none; }
.vc-btn--primary { background: var(--vc-red); color: #fff; border-color: var(--vc-red); box-shadow: 0 4px 14px rgba(148,21,16,.28); }
.vc-btn--primary:hover { background: var(--vc-red-700); border-color: var(--vc-red-700); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(148,21,16,.36); }
.vc-btn--whats { background: var(--vc-whats); color: #06301A; border-color: var(--vc-whats); box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.vc-btn--whats:hover { background: #1FBA5A; border-color: #1FBA5A; color: #06301A; transform: translateY(-2px); }
.vc-btn--ghost { background: transparent; color: var(--vc-navy-800); border-color: var(--vc-steel-300); }
.vc-btn--ghost:hover { border-color: var(--vc-navy-800); background: var(--vc-navy-800); color: #fff; }
.vc-section--navy .vc-btn--ghost { color: #fff; border-color: rgba(255,255,255,.34); }
.vc-section--navy .vc-btn--ghost:hover { background: #fff; color: var(--vc-navy-800); border-color: #fff; }
.vc-btn--block { width: 100%; }
.vc-btn--lg { padding: 1.15rem 2.35rem; font-size: 1rem; }
.vc-btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.vc-topbar {
  background: var(--vc-navy-900); color: var(--vc-steel-300);
  font-size: var(--vc-fs-xs); letter-spacing: .04em;
}
.vc-topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.vc-topbar__list { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.vc-topbar a { color: var(--vc-steel-200); display: inline-flex; align-items: center; gap: .45rem; }
.vc-topbar a:hover { color: #fff; }
.vc-topbar svg { width: 14px; height: 14px; opacity: .8; }
.vc-topbar__tag { text-transform: uppercase; font-weight: 700; color: var(--vc-steel-500); }

.vc-header {
  position: sticky; top: 0; z-index: 900; background: #fff;
  border-bottom: 1px solid var(--vc-steel-100);
  transition: box-shadow .25s var(--vc-ease);
}
.vc-header.is-stuck { box-shadow: var(--vc-shadow); }
.vc-header__in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--vc-header-h); }
.vc-brand { display: inline-flex; align-items: center; flex: none; }
.vc-brand img { max-height: 78px; width: auto; }
.vc-brand__txt { font-family: var(--vc-font-display); font-size: 1.5rem; font-weight: 900; color: var(--vc-red); text-transform: uppercase; letter-spacing: .01em; }

.vc-nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.vc-nav ul { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.vc-nav a {
  font-size: .885rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--vc-navy-800); position: relative; padding-block: .4rem; display: block;
}
.vc-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--vc-red); transition: width .25s var(--vc-ease);
}
.vc-nav a:hover, .vc-nav .current-menu-item > a { color: var(--vc-red); }
.vc-nav a:hover::after, .vc-nav .current-menu-item > a::after { width: 100%; }
.vc-header__cta { display: flex; align-items: center; gap: .7rem; flex: none; }
.vc-header__cta .vc-btn { padding: .8rem 1.35rem; font-size: .82rem; }

.vc-burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--vc-steel-200);
  border-radius: var(--vc-radius); background: #fff; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px; flex: none;
}
.vc-burger span { display: block; width: 22px; height: 2px; background: var(--vc-navy-800); transition: transform .25s var(--vc-ease), opacity .2s; }
.vc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.vc-hero { position: relative; background: var(--vc-navy-grad); color: var(--vc-steel-200); overflow: hidden; }
.vc-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--vc-hero-img, none);
  background-size: cover; background-position: center; opacity: .34; z-index: 0;
}
.vc-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(16,30,52,.90) 0%, rgba(22,38,63,.80) 45%, rgba(22,38,63,.46) 100%);
}
.vc-hero__in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 1rem + 3vw, 3.75rem);
  align-items: center; padding-block: clamp(3rem, 2rem + 4vw, 5.5rem);
}
.vc-hero h1 { font-size: var(--vc-fs-hero); color: #fff; margin-bottom: 1.1rem; line-height: 1.08; }
.vc-hero h1 em { font-style: normal; background: var(--vc-chrome); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vc-hero__lead { font-size: var(--vc-fs-lead); color: var(--vc-steel-200); max-width: 56ch; margin-bottom: 1.6rem; }
.vc-hero__badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.9rem; }
.vc-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--vc-fs-xs); font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  padding: .45rem .85rem; border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  background: rgba(255,255,255,.06); color: var(--vc-steel-200);
}
.vc-badge svg { width: 13px; height: 13px; color: var(--vc-whats); flex: none; }
.vc-hero__note { font-size: var(--vc-fs-sm); color: var(--vc-steel-300); margin-top: 1.1rem; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   8. FORMULÁRIO DE ORÇAMENTO
   -------------------------------------------------------------------------- */
.vc-form-card {
  background: #fff; border-radius: var(--vc-radius-lg); box-shadow: var(--vc-shadow-lg);
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.25rem); border-top: 5px solid var(--vc-red);
}
.vc-form-card__head { margin-bottom: 1.35rem; }
.vc-form-card__head h2, .vc-form-card__head h3 {
  font-family: var(--vc-font-display); font-size: 1.4rem; font-weight: 900;
  text-transform: uppercase; color: var(--vc-navy-800); margin-bottom: .35rem; letter-spacing: 0;
}
.vc-form-card__head p { font-size: var(--vc-fs-sm); color: var(--vc-steel-700); margin: 0; }

.vc-form { display: grid; gap: .95rem; }
.vc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .95rem; }
.vc-field { display: grid; gap: .35rem; }
.vc-field label { font-size: var(--vc-fs-xs); font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--vc-navy-800); }
.vc-field label .req { color: var(--vc-red); }
.vc-field input, .vc-field select, .vc-field textarea {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--vc-steel-200);
  border-radius: var(--vc-radius); background: #fff; font-size: .95rem; color: var(--vc-ink);
  transition: border-color .2s var(--vc-ease), box-shadow .2s var(--vc-ease);
}
.vc-field textarea { min-height: 92px; resize: vertical; }
.vc-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23808080' d='M1.4 0 6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 11px; padding-right: 2.3rem; }
.vc-field input:focus, .vc-field select:focus, .vc-field textarea:focus {
  outline: none; border-color: var(--vc-red); box-shadow: 0 0 0 3px var(--vc-red-soft);
}
.vc-field input::placeholder, .vc-field textarea::placeholder { color: var(--vc-steel-300); }
.vc-hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; }
.vc-form__consent { display: flex; gap: .55rem; align-items: flex-start; font-size: var(--vc-fs-xs); color: var(--vc-steel-700); line-height: 1.5; }
.vc-form__consent input { width: 16px; height: 16px; margin-top: .18rem; flex: none; accent-color: var(--vc-red); }
.vc-form__foot { display: flex; align-items: center; justify-content: center; gap: .45rem; font-size: var(--vc-fs-xs); color: var(--vc-steel-500); margin: 0; }
.vc-form__foot svg { width: 13px; height: 13px; }
.vc-form__alt { text-align: center; font-size: var(--vc-fs-sm); margin: 0; }

.vc-alert { padding: 1rem 1.15rem; border-radius: var(--vc-radius); font-size: .92rem; margin-bottom: 1.2rem; border-left: 4px solid; }
.vc-alert--ok { background: #ECFAF1; border-color: #1E9E56; color: #10552F; }
.vc-alert--err { background: #FDEEED; border-color: var(--vc-red); color: var(--vc-red-700); }

/* --------------------------------------------------------------------------
   9. BARRA DE PROVAS / DIFERENCIAIS
   -------------------------------------------------------------------------- */
.vc-trust { background: var(--vc-navy-800); border-top: 1px solid rgba(255,255,255,.09); }
.vc-trust__in { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); gap: 1px; background: rgba(255,255,255,.08); }
.vc-trust__item { background: var(--vc-navy-800); padding: 1.6rem 1.35rem; display: flex; gap: .9rem; align-items: flex-start; }
.vc-trust__ico { width: 34px; height: 34px; flex: none; color: var(--vc-red-600); }
.vc-trust__ico svg { width: 100%; height: 100%; }
.vc-trust strong { display: block; font-size: .95rem; color: #fff; font-weight: 700; line-height: 1.3; margin-bottom: .2rem; }
.vc-trust span { font-size: var(--vc-fs-xs); color: var(--vc-steel-500); line-height: 1.45; display: block; }

/* --------------------------------------------------------------------------
   10. CARDS
   -------------------------------------------------------------------------- */
.vc-card {
  background: #fff; border: 1px solid var(--vc-steel-100); border-radius: var(--vc-radius-lg);
  padding: 1.65rem 1.5rem; transition: transform .25s var(--vc-ease), box-shadow .25s var(--vc-ease), border-color .25s;
  display: flex; flex-direction: column; height: 100%;
}
.vc-card:hover { transform: translateY(-4px); box-shadow: var(--vc-shadow); border-color: var(--vc-steel-200); }
.vc-card__ico { width: 46px; height: 46px; margin-bottom: 1.1rem; color: var(--vc-red); }
.vc-card__ico svg { width: 100%; height: 100%; }
.vc-card h3 { font-size: var(--vc-fs-h3); color: var(--vc-navy-800); margin-bottom: .5rem; font-weight: 700; }
.vc-card p { font-size: .93rem; color: var(--vc-body); margin-bottom: 1rem; }
.vc-card ul { list-style: none; padding: 0; margin: 0 0 1.15rem; font-size: .89rem; }
.vc-card ul li { padding: .38rem 0 .38rem 1.3rem; position: relative; border-bottom: 1px dashed var(--vc-steel-100); color: var(--vc-body); }
.vc-card ul li:last-child { border-bottom: 0; }
.vc-card ul li::before { content: ""; position: absolute; left: 0; top: .95em; width: 7px; height: 7px; background: var(--vc-red); transform: rotate(45deg); }
.vc-card__link { margin-top: auto; font-size: var(--vc-fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .4rem; }
.vc-card__link svg { width: 13px; height: 13px; transition: transform .2s var(--vc-ease); }
.vc-card__link:hover svg { transform: translateX(3px); }
.vc-card--navy { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.12); }
.vc-card--navy h3 { color: #fff; }
.vc-card--navy p, .vc-card--navy ul li { color: var(--vc-steel-300); }
.vc-card--navy ul li { border-color: rgba(255,255,255,.1); }
.vc-card--navy:hover { border-color: rgba(255,255,255,.28); box-shadow: 0 12px 40px rgba(0,0,0,.35); }

/* Card de produto com foto */
.vc-prod { overflow: hidden; padding: 0; }
.vc-prod__img { aspect-ratio: 16/10; background: var(--vc-steel-050) center/cover no-repeat; position: relative; }
.vc-prod__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(16,30,52,.55)); }
.vc-prod__body { padding: 1.45rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.vc-prod__tag { position: absolute; z-index: 2; left: 1rem; top: 1rem; background: var(--vc-red); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 3px; }

/* --------------------------------------------------------------------------
   11. TABELA TÉCNICA
   -------------------------------------------------------------------------- */
.vc-tablewrap { overflow-x: auto; border: 1px solid var(--vc-steel-100); border-radius: var(--vc-radius-lg); background: #fff; -webkit-overflow-scrolling: touch; }
.vc-table { width: 100%; border-collapse: collapse; min-width: 620px; font-size: .92rem; }
.vc-table thead th {
  background: var(--vc-navy-800); color: #fff; text-align: left; padding: .95rem 1.15rem;
  font-size: var(--vc-fs-xs); font-weight: 700; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap;
}
.vc-table tbody td { padding: .9rem 1.15rem; border-bottom: 1px solid var(--vc-steel-100); vertical-align: top; color: var(--vc-body); }
.vc-table tbody tr:last-child td { border-bottom: 0; }
.vc-table tbody tr:nth-child(even) { background: var(--vc-steel-050); }
.vc-table tbody tr:hover { background: var(--vc-red-soft); }
.vc-table td:first-child { font-weight: 700; color: var(--vc-navy-800); white-space: nowrap; }

/* Pílulas de liga (SEO + escaneabilidade) */
.vc-pills { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.vc-pills li a, .vc-pills li span {
  display: inline-block; padding: .5rem .95rem; border: 1.5px solid var(--vc-steel-200);
  border-radius: 100px; font-size: .84rem; font-weight: 600; color: var(--vc-navy-800);
  background: #fff; transition: all .2s var(--vc-ease); letter-spacing: .02em;
}
.vc-pills li a:hover { border-color: var(--vc-red); background: var(--vc-red); color: #fff; }
.vc-section--navy .vc-pills li a, .vc-section--navy .vc-pills li span { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: var(--vc-steel-200); }
.vc-section--navy .vc-pills li a:hover { background: var(--vc-red); border-color: var(--vc-red); color: #fff; }

/* --------------------------------------------------------------------------
   12. SETORES / USINAS / NÚMEROS
   -------------------------------------------------------------------------- */
.vc-sector { display: flex; align-items: center; gap: .8rem; padding: 1.05rem 1.2rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--vc-radius); transition: all .22s var(--vc-ease); }
.vc-sector:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.25); transform: translateY(-2px); }
.vc-sector svg { width: 24px; height: 24px; color: var(--vc-red-600); flex: none; }
.vc-sector span { font-size: .92rem; font-weight: 600; color: #fff; line-height: 1.3; }

.vc-mills { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 1rem + 3vw, 4rem); }
.vc-mills__item { font-family: var(--vc-font-display); font-size: clamp(1.1rem, .85rem + 1.1vw, 1.7rem); font-weight: 900; letter-spacing: .07em; text-transform: uppercase; color: var(--vc-steel-500); transition: color .25s var(--vc-ease); }
.vc-mills__item:hover { color: var(--vc-navy-800); }

.vc-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: clamp(1rem, .6rem + 1.5vw, 2rem); }
.vc-stat { text-align: center; padding: 1.4rem .9rem; border-left: 2px solid rgba(255,255,255,.12); }
.vc-stat:first-child { border-left: 0; }
.vc-stat strong { display: block; font-family: var(--vc-font-display); font-size: clamp(1.9rem, 1.3rem + 2.1vw, 2.95rem); font-weight: 900; line-height: 1; color: #fff; margin-bottom: .35rem; }
.vc-stat strong span { background: var(--vc-chrome); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vc-stat em { font-style: normal; font-size: var(--vc-fs-xs); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--vc-steel-300); }

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.vc-faq { border-top: 1px solid var(--vc-steel-100); }
.vc-faq__item { border-bottom: 1px solid var(--vc-steel-100); }
.vc-faq__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.3rem 2.75rem 1.3rem 0; position: relative;
  font-family: var(--vc-font-body); font-size: 1.03rem; font-weight: 700; color: var(--vc-navy-800); line-height: 1.4;
}
.vc-faq__q::after {
  content: ""; position: absolute; right: .4rem; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--vc-red); border-bottom: 2.5px solid var(--vc-red);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s var(--vc-ease);
}
.vc-faq__q[aria-expanded="true"]::after { transform: translateY(-20%) rotate(-135deg); }
.vc-faq__q:hover { color: var(--vc-red); }
.vc-faq__a { display: none; padding: 0 2.75rem 1.5rem 0; color: var(--vc-body); font-size: .96rem; }
.vc-faq__a.is-open { display: block; }
.vc-faq__a p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   14. CTA FINAL
   -------------------------------------------------------------------------- */
.vc-cta { background: var(--vc-red); color: #fff; position: relative; overflow: hidden; }
.vc-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, var(--vc-red-700) 0%, var(--vc-red) 45%, var(--vc-red-600) 100%); }
.vc-cta__in { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); flex-wrap: wrap; }
.vc-cta h2 { color: #fff; font-size: var(--vc-fs-h2); margin-bottom: .5rem; }
.vc-cta p { color: rgba(255,255,255,.9); font-size: var(--vc-fs-lead); margin: 0; max-width: 52ch; }
.vc-cta .vc-btn--primary { background: #fff; color: var(--vc-red); border-color: #fff; }
.vc-cta .vc-btn--primary:hover { background: var(--vc-navy-800); border-color: var(--vc-navy-800); color: #fff; }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.vc-footer { background: var(--vc-navy-900); color: var(--vc-steel-500); font-size: .92rem; }
.vc-footer__main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(1.75rem, 1rem + 2.5vw, 3rem); padding-block: clamp(3rem, 2rem + 3vw, 4.5rem); }
.vc-footer h4 { font-family: var(--vc-font-body); font-size: var(--vc-fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.vc-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.vc-footer a { color: var(--vc-steel-300); }
.vc-footer a:hover { color: #fff; }
.vc-footer__brand img { max-height: 62px; margin-bottom: 1.15rem; }
.vc-footer__brand p { max-width: 40ch; line-height: 1.6; font-size: .9rem; }
.vc-footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.vc-footer__contact svg { width: 16px; height: 16px; color: var(--vc-red-600); flex: none; margin-top: .25rem; }
.vc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.35rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: var(--vc-fs-xs); color: var(--vc-steel-500);
}
.vc-footer__bottom p { margin: 0; }

/* Redes sociais: estrutura pronta, aparece só quando o link e preenchido */
.vc-social { display: flex; gap: .6rem; flex-wrap: wrap; padding: 0; margin: 1.25rem 0 0; list-style: none; }
.vc-social a {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: var(--vc-steel-300);
  transition: all .22s var(--vc-ease);
}
.vc-social a:hover { background: var(--vc-red); border-color: var(--vc-red); color: #fff; transform: translateY(-2px); }
.vc-social svg { width: 17px; height: 17px; }
.vc-social--soon a { opacity: .45; cursor: default; pointer-events: none; }

/* --------------------------------------------------------------------------
   16. CTAs FLUTUANTES (mobile-first, alta conversão)
   -------------------------------------------------------------------------- */
.vc-float-whats {
  position: fixed; right: 18px; bottom: 22px; z-index: 950;
  width: 58px; height: 58px; border-radius: 50%; background: var(--vc-whats); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.42); transition: transform .22s var(--vc-ease);
}
.vc-float-whats:hover { transform: scale(1.07); color: #fff; }
.vc-float-whats svg { width: 30px; height: 30px; }
.vc-float-whats::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--vc-whats); animation: vcPulse 2.4s infinite;
}
@keyframes vcPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }

.vc-mobilebar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 940; background: #fff; border-top: 1px solid var(--vc-steel-100); box-shadow: 0 -4px 18px rgba(16,30,52,.12); }
.vc-mobilebar ul { display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 0; padding: 0; }
.vc-mobilebar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .22rem; padding: .7rem .3rem calc(.7rem + env(safe-area-inset-bottom)); font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--vc-navy-800); border-right: 1px solid var(--vc-steel-100); }
.vc-mobilebar li:last-child a { border-right: 0; }
.vc-mobilebar svg { width: 20px; height: 20px; color: var(--vc-red); }
.vc-mobilebar a.is-whats { background: var(--vc-whats); color: #06301A; }
.vc-mobilebar a.is-whats svg { color: #06301A; }

/* --------------------------------------------------------------------------
   17. PÁGINAS INTERNAS
   -------------------------------------------------------------------------- */
.vc-pagehero { background: var(--vc-navy-grad); color: var(--vc-steel-100); padding-block: clamp(2.75rem, 2rem + 3.5vw, 5rem); }
.vc-pagehero h1 { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.5rem); color: #fff; margin-bottom: .65rem; }
.vc-pagehero p { font-size: var(--vc-fs-lead); color: var(--vc-steel-300); max-width: 62ch; margin: 0; }
.vc-crumbs { font-size: var(--vc-fs-xs); letter-spacing: .06em; text-transform: uppercase; color: var(--vc-steel-500); margin-bottom: 1rem; }
.vc-crumbs a { color: var(--vc-steel-300); }
.vc-crumbs a:hover { color: #fff; }
.vc-crumbs span { margin-inline: .5rem; opacity: .5; }

.vc-content { max-width: 760px; }
.vc-content h2 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); margin-top: 2.25rem; }
.vc-content h3 { margin-top: 1.75rem; }
.vc-content ul li, .vc-content ol li { margin-bottom: .45rem; }
.vc-content img { border-radius: var(--vc-radius); margin-block: 1.5rem; }
.vc-content blockquote { border-left: 4px solid var(--vc-red); margin: 1.75rem 0; padding: .3rem 0 .3rem 1.4rem; font-size: 1.08rem; color: var(--vc-navy-800); font-style: italic; }

.vc-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 1rem + 3vw, 4rem); align-items: center; }
.vc-split__media img { border-radius: var(--vc-radius-lg); box-shadow: var(--vc-shadow); width: 100%; }
.vc-split--rev .vc-split__media { order: 2; }

.vc-checklist { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .7rem; }
.vc-checklist li { position: relative; padding-left: 2rem; font-size: .97rem; }
.vc-checklist li::before {
  content: ""; position: absolute; left: 0; top: .28em; width: 18px; height: 18px; border-radius: 50%;
  background: var(--vc-red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23941510' d='M6.2 11.8 2.6 8.2l1.3-1.3 2.3 2.3 5.9-5.9 1.3 1.3z'/%3E%3C/svg%3E") center/12px no-repeat;
}
.vc-section--navy .vc-checklist li::before { background-color: rgba(255,255,255,.1); }

.vc-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.75rem, 1rem + 3vw, 3.5rem); align-items: start; }
.vc-contact-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1.15rem; }
.vc-contact-list li { display: flex; gap: .95rem; align-items: flex-start; }
.vc-contact-list .ico { width: 42px; height: 42px; flex: none; border-radius: var(--vc-radius); background: var(--vc-red-soft); color: var(--vc-red); display: inline-flex; align-items: center; justify-content: center; }
.vc-contact-list .ico svg { width: 19px; height: 19px; }
.vc-contact-list strong { display: block; font-size: var(--vc-fs-xs); font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--vc-steel-500); margin-bottom: .1rem; }
.vc-contact-list a, .vc-contact-list span.val { font-size: 1.05rem; font-weight: 600; color: var(--vc-navy-800); }
.vc-contact-list a:hover { color: var(--vc-red); }

/* Obrigado / 404 */
.vc-center { text-align: center; max-width: 620px; margin-inline: auto; }
.vc-center__ico { width: 78px; height: 78px; margin: 0 auto 1.5rem; border-radius: 50%; background: var(--vc-red-soft); color: var(--vc-red); display: flex; align-items: center; justify-content: center; }
.vc-center__ico svg { width: 36px; height: 36px; }

/* --------------------------------------------------------------------------
   18. UTILIDADES
   -------------------------------------------------------------------------- */
.vc-mt0 { margin-top: 0 !important; }
.vc-mb0 { margin-bottom: 0 !important; }
.vc-tc { text-align: center; }
.vc-hide-mob { display: initial; }
.vc-hide-desk { display: none; }
.vc-anim { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--vc-ease), transform .6s var(--vc-ease); }
.vc-anim.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   19. RESPONSIVO
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .vc-nav ul { gap: 1.35rem; }
  .vc-header__cta .vc-btn span.lbl { display: none; }
  .vc-header__cta .vc-btn { padding: .8rem 1rem; }
}

@media (max-width: 900px) {
  :root { --vc-header-h: 88px; }
  .vc-hero__in { grid-template-columns: 1fr; padding-block: clamp(2.5rem, 2rem + 2vw, 3.5rem); }
  .vc-footer__main { grid-template-columns: 1fr 1fr; }
  .vc-split, .vc-contact-grid { grid-template-columns: 1fr; }
  .vc-split--rev .vc-split__media { order: 0; }
  .vc-stat { border-left: 0; }
  .vc-topbar__list--sec { display: none; }

  .vc-burger { display: inline-flex; }
  .vc-nav {
    position: fixed; inset: var(--vc-header-h) 0 0; background: #fff; z-index: 899;
    flex-direction: column; align-items: stretch; gap: 0; padding: 1.25rem var(--vc-gutter) 2rem;
    overflow-y: auto; transform: translateX(100%); transition: transform .3s var(--vc-ease); margin: 0;
  }
  .vc-nav.is-open { transform: none; }
  .vc-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .vc-nav li { border-bottom: 1px solid var(--vc-steel-100); }
  .vc-nav a { padding: 1.05rem 0; font-size: 1rem; }
  .vc-nav a::after { display: none; }
  .vc-header__cta { display: none; }
  .vc-nav__mobcta { display: grid; gap: .7rem; margin-top: 1.75rem; }

  .vc-mobilebar { display: block; }
  body.has-mobilebar { padding-bottom: 68px; }
  .vc-float-whats { bottom: 80px; width: 52px; height: 52px; }
  .vc-float-whats svg { width: 27px; height: 27px; }
}

@media (min-width: 901px) { .vc-nav__mobcta { display: none; } }

@media (max-width: 620px) {
  .vc-form__row { grid-template-columns: 1fr; }
  .vc-footer__main { grid-template-columns: 1fr; }
  .vc-cta__in { flex-direction: column; align-items: flex-start; }
  .vc-btn { width: 100%; }
  .vc-btn-row { flex-direction: column; }
  .vc-topbar__in { justify-content: center; }
  .vc-hide-mob { display: none; }
  .vc-hide-desk { display: initial; }
  .vc-brand img { max-height: 56px; }
  .vc-trust__item { padding: 1.25rem 1.1rem; }
}

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

@media print {
  .vc-header, .vc-topbar, .vc-mobilebar, .vc-float-whats, .vc-cta, .vc-form-card { display: none !important; }
  body { color: #000; }
}

/* Botão-instrução da seção de ligas: seta apontando para baixo (para as pílulas) */
.vc-btn--hint svg { transform: rotate(90deg); }
