/* =========================================================
   BASE / TOKENS
========================================================= */
:root {
  --ink: #0a2340;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, .9);
  --accent: #29c3e2;
  --link-soft: #8ec9ff;
  --pad: clamp(1.5rem, 4vw, 3rem);
  --maxw: 1200px;
}

a {
  text-decoration: none;
}

/* =========================================================
   SOLUTIONS – Nav link
========================================================= */
.solutions-jorcn__nav-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--text);
  opacity: .9;
  transition: color .2s, opacity .2s;
}

.solutions-jorcn__nav-link i {
  font-size: 1em;
  opacity: .9;
}

.solutions-jorcn__nav-link:hover,
.solutions-jorcn__nav-link--active {
  color: var(--accent);
  opacity: 1;
}

/* =========================================================
   SOLUTIONS – Hero (Flex-only)
========================================================= */
.solutions-jorcn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--text);
  min-height: min(86vh, 820px);
  display: flex;
}

.solutions-jorcn__bg {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
  z-index: -2;
}

.solutions-jorcn__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .15) 40%, rgba(0, 0, 0, .35) 100%);
}

.solutions-jorcn__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: var(--pad);
  display: flex;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: flex-start;
  justify-content: space-between;
}

.solutions-jorcn__content {
  flex: 1 1 720px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.solutions-jorcn__eyebrow {
  margin: 0;
  font-weight: 300;
  letter-spacing: .04em;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: .95;
  text-transform: uppercase;
  color: #fff;
  opacity: .95;
}

.solutions-jorcn__block {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 580px;
}

.solutions-jorcn__kicker {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.solutions-jorcn__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--text-soft);
}

.solutions-jorcn__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .75rem;
  padding: .9rem 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, .8);
  color: #fff;
  background: transparent;
  border-radius: .25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: background .2s;
}

.solutions-jorcn__btn:hover {
  background: rgba(255, 255, 255, .1);
}

/* Sidebar */
.solutions-jorcn__nav {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
  text-align: right;
  padding-top: clamp(1rem, 8vh, 3rem);
}

@media (max-width:980px) {
  .solutions-jorcn__inner {
    flex-direction: column;
  }

  .solutions-jorcn__nav {
    flex: 1 1 auto;
    align-items: flex-start;
    text-align: left;
    padding-top: 1rem;
  }
}

/* =========================================================
   BANNER – Reutilizável (Flex-only)
========================================================= */
.banner-jorcn {
  --bg: #062e6f;
  --text: #e6f2ff;
  --accent: #27b7d8;
  --brand: #fff;
  --card: #fff;
  --ink: #0c2a4b;
  --ink-soft: #375c7b;
  --value: #1487c9;
  --cta-border: #6aa8ff;
  --cta-hover: #0a3c8a;
  --r-xl: 2rem;
  --r-md: .75rem;
  --pad: clamp(1.5rem, 5vw, 3rem);
  background: var(--bg);
  color: var(--text);
}

.banner-jorcn__inner {
  max-width: 1500px;
  height: 600px;
  margin: 0 auto;
  padding: var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.banner-jorcn__content {
  flex: 1 1 300px;
}

#banner-jorcn-title {
  font-size: 3.223em;
}

.banner-jorcn__title {
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
}

.banner-jorcn__brand {
  color: var(--brand);
}

.banner-jorcn__cta {
  display: inline-block;
  margin-top: 1rem;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--cta-border);
  color: var(--text);
  font-weight: 600;
  font-size: 1.875rem;
  transition: background .2s, color .2s;
}

.banner-jorcn__cta:hover {
  background: var(--cta-hover);
  color: #fff;
}

.banner-jorcn__stats {
  flex: 1 1 600px;
  background: var(--card);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.banner-jorcn__stat {
  flex: 1 1 calc(50% - 1.5rem);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.banner-jorcn__stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #0e7bb7, #093f7a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-jorcn__stat-icon i {
  font-size: 3rem;
  color: #fff;
}

.banner-jorcn__stat-value {
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  color: var(--value);
}

.banner-jorcn__stat-label {
  font-size: 1.275rem;
  color: var(--ink-soft);
}

/* =========================================================
   HEADER (mínimo necessário)
========================================================= */
.container-fluid {
  display: flex;
  align-items: center;
  gap: 30px;
}

#navbar {
  justify-content: space-between;
  width: 100%;
}

/* .navbar-fixed-top.is-static {
  position: fixed
} */

@media (max-width: 991px) {
#navbar.navbar-collapse{
  margin-top: 824px;
}

.navbar-header{
  display: contents;
}
}

/* =========================================================
   FOOTER – Nova estrutura (left = social+links | right = logo)
========================================================= */
footer {
  padding: 0;
}

.cjor-footer {
  color: #fff;
}

/* Container principal: 2 áreas */
.cjor-footer-container {
  display: grid;
  grid-template-columns: 1fr auto;
  /* esquerda cresce | direita cabe ao conteúdo */
  align-items: start;
  column-gap: 48px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 32px;
}

/* Esquerda empilha Social (linha 1) e Links (linha 2) */
.cjor-footer-left {
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 16px;
  min-width: 0;
  /* evita overflow com títulos longos */
}

/* Social */
.cjor-footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 170px;
}

.cjor-footer-social .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  opacity: .95;
}

.cjor-footer-social .social i {
  font-size: 22px;
  line-height: 1;
}

.cjor-footer-social .social.facebook:hover {
  color: #1877F2;
}

.cjor-footer-social .social.instagram:hover {
  color: #E4405F;
}

.cjor-footer-social .social.youtube:hover {
  color: #FF0000;
}

.cjor-footer-social .social.linkedin:hover {
  color: #0A66C2;
}

.cjor-footer-social .social:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Links (miolo) */
.cjor-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  column-gap: 40px;
  row-gap: 8px;
}

.cjor-footer-column {
  min-width: 0;
}

.cjor-footer-title {
  margin: 0 0 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
}

.cjor-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cjor-footer-column li {
  margin: 4px 0;
}

.cjor-footer-column a {
  color: var(--link-soft);
  font-size: 13px;
  transition: color .2s;
}

.cjor-footer-column a:hover {
  color: #1ba1e2;
  text-decoration: underline;
}

/* Direita (logo) */
.cjor-footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 200px;
}

.cjor-footer-logo {
  height: 36px;
  width: auto;
}

/* Responsivo */
@media (max-width:1100px) {
  .cjor-footer-container {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .cjor-footer-right {
    justify-content: flex-start;
  }

  /* logo desce */
  .cjor-footer-links {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    column-gap: 32px;
  }
}

@media (max-width:945px) {
  .volt-footer-logo {
    position: absolute;
    margin-top: 45px;
    margin-inline: 20px;
  }
}

@media (min-width:946px) and (max-width:991px) {
  .volt-footer-logo {
    left: 25px;
    position: absolute;
  }
}

@media (min-width:992px) {
  .volt-footer-logo {
    left: 25px;
    position: absolute;
    margin-top: -60px;
  }
}



@media (max-width:640px) {
  .cjor-footer-links {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HOME – Cards de produto (proporção + título overlay)
========================================================= */
.body#page_00017DTX .product-image.productItem.custom-no-padding-no-border {
  position: relative;
  width: 100%;
  height: auto !important;
  aspect-ratio: 16/9;
  overflow: hidden;
}

body#page_00017DTX .product-image.productItem.custom-no-padding-no-border img,
body#page_00017DTX .product-image.productItem.custom-no-padding-no-border picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body#page_00017DTX .product-item {
  position: relative;
  overflow: hidden;
}

body#page_00017DTX .product-name {
  position: absolute;
  inset: auto 0 0 0;
  margin: 0;
  height: auto !important;
}

body#page_00017DTX .product-name a {
  display: block;
  padding: 12px 8px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  transition: background .3s;
}

body#page_00017DTX .product-item:hover .product-name a {
  background: rgba(0, 0, 0, .7);
}

/* Fallback sem aspect-ratio */
@supports not (aspect-ratio:1/1) {
  body#page_00017DTX .product-image.productItem.custom-no-padding-no-border {
    height: auto !important;
  }

  body#page_00017DTX .product-image.productItem.custom-no-padding-no-border::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 */
  }

  body#page_00017DTX .product-image.productItem.custom-no-padding-no-border picture,
  body#page_00017DTX .product-image.productItem.custom-no-padding-no-border img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* + espaço entre o bloco principal (esquerda) e a logo (direita) */
.cjor-footer .cjor-footer-container {
  column-gap: 64px;
  /* antes ~32–48px */
}

/* socials ao lado dos links, bem pertinho */
.cjor-footer .cjor-footer-left {
  display: grid;
  grid-template-columns: auto 1fr;
  /* socials | links */
  align-items: start;
  column-gap: 12px;
  /* DIMINUI o gap entre icons e links */
}

/* compacta os ícones pra caber melhor */
.cjor-footer .cjor-footer-social {
  gap: 12px;
  min-width: auto;
}

.cjor-footer .cjor-footer-social .social {
  width: 26px;
  height: 26px;
}

.cjor-footer .cjor-footer-social .social i {
  font-size: 18px;
}

.cjor-footer .cjor-footer-links {
  grid-template-columns: repeat(3, minmax(155px, 1fr));
  column-gap: 4px;
  row-gap: 6px;
}

.cjor-footer .cjor-footer-title {
  margin: 0 0 8px;
}

.cjor-footer .cjor-footer-column li {
  margin: 3px 0;
}

@media (max-width: 1100px) {
  .cjor-footer .cjor-footer-container {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .cjor-footer .cjor-footer-right {
    justify-content: flex-start;
  }

  .cjor-footer .cjor-footer-links {
    grid-template-columns: repeat(2, minmax(170px, 1fr));
    column-gap: 20px;
  }
}

@media (max-width: 640px) {
  .cjor-footer .cjor-footer-links {
    grid-template-columns: 1fr;
  }
}

#showPage>div.xtt-wrapper>div.xtt-main>div>section:nth-child(5)>section>div>div>div>div.xtt-product-carousel {
  margin-top: -40px
}

.h3-jor {
  margin-top: 30px;
  color: #00b9db;
  font-size: 3em;
}

/* ========= Componente de produtos da Home ======== */
.blue-glow {
  color: #fff; /* White text looks best */
  font-family: sans-serif;
  font-size: calc(4vw + 4vh + 2vmin);
  align-content: center;
  /* Multi-layer text-shadow: h-offset v-offset blur-radius color */
  text-shadow:
    0 0 10px #00ffff,  /* Inner soft cyan */
    0 0 10px #00ffff, /* Mid-range blur */
    0 0 5px #0000ff, /* Outer blue halo */
    0 0 10px #0000ff, /* Further glow */
    0 0 1px #0000ff; /* Edge glow */
  max-width: min-content !important
}

@media (max-width: 665px) {
  .inline-div {
      display: inline-block;
      margin: 10px;
      flex: 1;
      text-align: center;
      max-width: calc(100vw / 2 - 10px);
  }
  .products-container-home {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 665px) {
  .inline-div {
    display: inline-block; /* Key property */
    margin: 10px;
    flex: 1;
    text-align: center;
    max-width: calc(100vw / 6 - 10px);
    aspect-ratio: 1 / 1.5;
  }

  .inline-div img {
    max-width: 100%;
    height: calc(100% - 90px);
    object-fit: contain;
  }

  .products-container-home {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.big-title{
  font-size: clamp(2rem, 6vw, 4.2rem);
}
.medium-title {
  font-size: clamp(1.3rem, 6vw, 2.9rem);
}

  
@media (max-width: 945px) {
  .cjor-footer .cjor-footer-links {
    font-size: 1fr;
  }
}

@media (max-width: 640px) {
  .inline-div {
    grid-template-columns: 1fr;
  }
}


/* ===== Tokens ===== */
:root{
  --navy:#0d2a52;
  --white:#fff;
  --ink:#0a2340;
  --muted:#5a7a92;
  --accent:#119ec5;     /* cor de destaque (números e ícones) */
  --ring:rgba(17,158,197,.22);
  --pad:clamp(20px,4vw,40px);
  --radius:22px;
}

/* ===== Hero ===== */
.hero-welcome{
  background:var(--navy);
  color:var(--white);
  padding: clamp(32px, 6vw, 72px)  clamp(20px, 5vw, 48px);
}
.hero-welcome__inner{
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px,4vw,40px);
  align-items: center;
}
.hero-welcome__eyebrow{
  margin:0 0 .25em; font-weight:800; letter-spacing:.02em;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: #84dbf2;
}
.hero-welcome__title{
  margin:0 0 .9em;
  font-weight:900; line-height: .95;
  font-size: clamp(2rem, 6vw, 4.2rem);
}
.hero-welcome__btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: .85rem 1.25rem;
  border:2px solid rgba(255,255,255,.8);
  border-radius: 999px;
  color:#fff; text-decoration:none; font-weight:700;
}
.hero-welcome__btn:hover{ background:rgba(255,255,255,.1); }

/* ===== Card de métricas (sem degradês) ===== */
.stats-card{
  background: var(--white);
  border: 1px solid #e7eef5;
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 28px) clamp(18px, 3.5vw, 36px);
  box-shadow:
    0 10px 28px rgba(13,42,82,.12),
    0 2px 6px rgba(13,42,82,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.stats-card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(13,42,82,.16),
    0 3px 10px rgba(13,42,82,.10);
}

/* Grade 2×2 com espaçamento sólido */
.stats-card__grid{
  list-style:none; margin:0; padding:0;
  display:grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: clamp(16px,2.5vw,24px) clamp(24px,4vw,40px);
  align-items:center;
}

/* Item */
.stats-card__item{
  display:grid;
  grid-template-columns: auto 1fr;
  gap: 12px 14px;
  align-items:center;
}

/* Ícone (sem degradê, com “ring” via box-shadow) */
.stats-card__icon{
  width:56px; height:56px; border-radius:50%;
  display:grid; place-items:center;
  color:#fff; background: var(--accent);
  box-shadow: 0 0 0 6px var(--ring);   /* ring externo */
}
.stats-card__icon i{ font-size:22px; }

/* Tipografia */
.stats-card__text{ display:flex; flex-direction:column; gap:2px; }
.stats-card__value{
  font-weight:800; line-height:1.05;
  color: var(--accent);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing:.2px;
}
.stats-card__label{
  color: var(--muted);
  font-size: clamp(.92rem, 1.6vw, 1rem);
}

/* ===== Responsivo ===== */
@media (max-width: 980px){
  .hero-welcome__inner{ grid-template-columns: 1fr; }
  .stats-card__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .stats-card__grid{ grid-template-columns: 1fr; }
  .stats-card__icon{ width:50px; height:50px; }
}
@media (prefers-reduced-motion: reduce){
  .stats-card, .stats-card *{ transition: none !important; }
}



/* ============== Telas de Produtos =============== */

@media (min-width: 991px) {
  .product-row-info {
      border: 1px solid #d6d6d6;
  }
}
.xtt-product-description {
  margin: 15px 0;
  text-align: justify;
  line-height: 22px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 991px) {
  .product-row-info .product-card-price-tag .xtt-product-description {
      margin-left: -15px;
      margin-right: -15px;
  }
}
.product-card.product-card-price-tag {
  padding: 25px;
  background-color: #f7f7f7;
}

.product-card {
  box-shadow: 1px 1px 1px rgba(214, 214, 214, .9);
  background-color: #fff;
}


/* Demais Páginas */
.is-static{
  position: static;
}  
/* Páginas About Us e Certificates - contém o Banner Hero - This is WEG */
#page_00017IGM .is-static,
#page_00017IGO .is-static,
#page_0001AWDH .is-static {
  position: fixed;
}


.xtt-illustrative-image {
  font-style: italic;
  color: #a2a2a2;
  margin-right: 50px;
  font-size: 12.5px;
}

.scrollable-text-container {
  max-height: 320px; /* Set the maximum height for the container */
  overflow-y: auto;  /* Add vertical scrollbar if content exceeds max-height */
  overflow-x: hidden; /* Hide horizontal scrollbar if not needed */
  /* Add padding as needed to prevent text from touching the scrollbar */
  padding: 20px; 
}

