
:root{
  --gc-primary:#071d38;
  --gc-secondary:#d61f26;
  --gc-accent:#b68b2e;
  --gc-text:#102039;
  --gc-muted:#68788d;
  --gc-surface:#fff;
  --gc-background:#f4f7fb;
  --gc-border:#dfe6ef;
  --gc-font:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --gc-heading-weight:800;
  --gc-body-size:16px;
  --gc-content-width:1180px;
  --gc-radius-sm:10px;
  --gc-radius-md:18px;
  --gc-radius-lg:28px;
  --gc-logo-width:300px;
  --gc-shadow-sm:0 10px 32px rgba(7,29,56,.07);
  --gc-shadow-md:0 22px 60px rgba(7,29,56,.12);
}

.gc-design-system{
  font-family:var(--gc-font);
  font-size:var(--gc-body-size);
  color:var(--gc-text);
  background:var(--gc-background);
}

.gc-design-system *,
.gc-design-system *:before,
.gc-design-system *:after{
  box-sizing:border-box;
}

.gc-global-container,
.gc-container{
  width:min(var(--gc-content-width),calc(100% - 40px));
  margin-inline:auto;
}

.gc-global-header{
  position:relative;
  z-index:9990;
  background:var(--gc-surface);
  border-bottom:1px solid var(--gc-border);
  box-shadow:0 8px 28px rgba(7,29,56,.04);
}

.gc-sticky-header .gc-global-header{
  position:sticky;
  top:0;
}

.gc-global-header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.gc-global-logo{
  display:inline-flex;
  align-items:center;
  min-width:0;
}

.gc-global-logo img{
  display:block;
  width:auto;
  height:auto;
  max-width:min(var(--gc-logo-width),100%);
  max-height:58px;
  object-fit:contain;
}

.gc-global-navigation{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin-left:auto;
}

.gc-global-navigation a{
  position:relative;
  color:var(--gc-text);
  text-decoration:none;
  font-size:14px;
  font-weight:750;
  line-height:1.2;
  white-space:nowrap;
}

.gc-global-navigation a:after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-9px;
  height:2px;
  background:var(--gc-secondary);
  transition:right .2s ease;
}

.gc-global-navigation a:hover:after{
  right:0;
}

.gc-global-header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:var(--gc-radius-sm);
  background:var(--gc-secondary);
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:850;
  white-space:nowrap;
  box-shadow:0 10px 24px rgba(214,31,38,.18);
}

.gc-global-menu-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:10px;
  border:1px solid var(--gc-border);
  border-radius:var(--gc-radius-sm);
  background:var(--gc-surface);
  cursor:pointer;
}

.gc-global-menu-toggle>span:not(.screen-reader-text){
  display:block;
  height:2px;
  margin:4px 0;
  background:var(--gc-primary);
  border-radius:2px;
}

.gc-header-dark .gc-global-header{
  background:var(--gc-primary);
  border-color:rgba(255,255,255,.08);
}

.gc-header-dark .gc-global-navigation a{
  color:#fff;
}

.gc-header-transparent .gc-global-header{
  position:absolute;
  left:0;
  right:0;
  background:transparent;
  border-color:transparent;
  box-shadow:none;
}

.gc-header-transparent .gc-global-navigation a{
  color:#fff;
}

.gc-btn,
.gc-design-system :where(.button,button,input[type=submit]){
  min-height:44px;
  border-radius:var(--gc-radius-sm);
  font-family:var(--gc-font);
  font-size:14px;
  line-height:1.2;
  font-weight:800;
}

.gc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  text-decoration:none;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}

.gc-btn:hover{
  transform:translateY(-1px);
}

.gc-btn-primary{
  background:var(--gc-secondary);
  color:#fff;
  border:1px solid var(--gc-secondary);
}

.gc-btn-secondary{
  background:var(--gc-primary);
  color:#fff;
  border:1px solid var(--gc-primary);
}

.gc-button-outline .gc-btn-primary{
  background:transparent;
  color:var(--gc-secondary);
}

.gc-button-soft .gc-btn-primary{
  background:color-mix(in srgb,var(--gc-secondary) 12%,white);
  color:var(--gc-secondary);
  border-color:transparent;
}

.gc-card{
  padding:24px;
  border:1px solid var(--gc-border);
  border-radius:var(--gc-radius-md);
  background:var(--gc-surface);
}

.gc-card-shadow .gc-card{
  box-shadow:var(--gc-shadow-sm);
}

.gc-card-flat .gc-card{
  border-color:transparent;
  box-shadow:none;
}

.gc-design-system :where(h1,h2,h3,h4,h5,h6){
  font-family:var(--gc-font);
  font-weight:var(--gc-heading-weight);
  color:var(--gc-primary);
  letter-spacing:-.025em;
}

.gc-design-system :where(p,li){
  line-height:1.65;
}

.gc-design-system :where(input[type=text],input[type=email],input[type=url],input[type=tel],input[type=number],input[type=password],select,textarea){
  min-height:44px;
  border:1px solid var(--gc-border);
  border-radius:var(--gc-radius-sm);
  padding:10px 12px;
  font-family:var(--gc-font);
  color:var(--gc-text);
  background:var(--gc-surface);
}

.gc-design-system textarea{
  min-height:120px;
  line-height:1.5;
}

.gc-global-footer{
  margin-top:0;
  padding:64px 0 24px;
  background:var(--gc-primary);
  color:#fff;
}

.gc-footer-light .gc-global-footer{
  background:var(--gc-surface);
  color:var(--gc-text);
  border-top:1px solid var(--gc-border);
}

.gc-global-footer-main{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  gap:50px;
  padding-bottom:42px;
}

.gc-global-footer-brand img{
  display:block;
  max-width:min(var(--gc-logo-width),100%);
  max-height:64px;
  object-fit:contain;
  margin-bottom:18px;
  filter:brightness(0) invert(1);
}

.gc-footer-light .gc-global-footer-brand img{
  filter:none;
}

.gc-global-footer-brand p{
  max-width:520px;
  margin:0;
  color:#cbd6e3;
}

.gc-footer-light .gc-global-footer-brand p{
  color:var(--gc-muted);
}

.gc-global-footer h3{
  margin:0 0 16px;
  color:#fff;
  font-size:15px;
}

.gc-footer-light .gc-global-footer h3{
  color:var(--gc-primary);
}

.gc-global-footer-links,
.gc-global-footer-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.gc-global-footer a{
  color:#dce5ef;
  text-decoration:none;
}

.gc-footer-light .gc-global-footer a{
  color:var(--gc-text);
}

.gc-global-footer a:hover{
  color:#fff;
}

.gc-footer-light .gc-global-footer a:hover{
  color:var(--gc-secondary);
}

.gc-global-footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  color:#aebdcd;
  font-size:13px;
}

.gc-footer-light .gc-global-footer-bottom{
  border-color:var(--gc-border);
  color:var(--gc-muted);
}

.gc-global-social{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.screen-reader-text{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

@media(max-width:1040px){
  .gc-global-navigation{
    gap:15px;
  }

  .gc-global-navigation a{
    font-size:13px;
  }
}

@media(max-width:900px){
  .gc-global-header-inner{
    min-height:72px;
    flex-wrap:wrap;
  }

  .gc-global-menu-toggle{
    display:block;
    margin-left:auto;
  }

  .gc-global-header-cta{
    order:3;
    width:100%;
    display:none;
  }

  .gc-global-navigation{
    display:none;
    order:4;
    width:100%;
    align-items:stretch;
    flex-direction:column;
    gap:0;
    padding:10px 0 18px;
    margin:0;
  }

  .gc-global-navigation.is-open{
    display:flex;
  }

  .gc-global-navigation a{
    padding:12px 0;
    font-size:15px;
    border-bottom:1px solid var(--gc-border);
  }

  .gc-global-navigation a:after{
    display:none;
  }

  .gc-global-header.is-open .gc-global-header-cta{
    display:flex;
  }

  .gc-global-footer-main{
    grid-template-columns:1fr 1fr;
  }

  .gc-global-footer-brand{
    grid-column:1/-1;
  }
}

@media(max-width:620px){
  .gc-global-container,
  .gc-container{
    width:min(var(--gc-content-width),calc(100% - 28px));
  }

  .gc-global-logo img{
    max-width:220px;
    max-height:52px;
  }

  .gc-global-footer-main{
    grid-template-columns:1fr;
    gap:34px;
  }

  .gc-global-footer-brand{
    grid-column:auto;
  }

  .gc-global-footer-bottom{
    align-items:flex-start;
    flex-direction:column;
  }
}

/* v1.1.0 — compatibilidade com módulos públicos */
.gc-global-header+.gc-public-site,
.gc-global-header+.gc-brands-site,
.gc-global-header+.gc-catalog-site{margin-top:0}
.gc-appearance-home .gc-public-site,
.gc-appearance-brands .gc-brands-site,
.gc-appearance-catalog .gc-catalog-site{font-family:var(--gc-font)}

/* v1.2.0 — normalização total das páginas públicas gerenciadas */
html:has(body.gc-design-system){
  margin-top:0!important;
  padding-top:0!important;
}
body.gc-design-system{
  margin:0!important;
  padding:0!important;
  font-family:var(--gc-font,Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif)!important;
}
body.gc-design-system #wpadminbar{
  display:none!important;
}
.gc-global-header,
.gc-global-header *,
.gc-global-footer,
.gc-global-footer *{
  font-family:var(--gc-font,Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif)!important;
}
.gc-global-header{
  margin:0!important;
  top:0!important;
}
.gc-global-header-inner{
  min-height:82px;
}
.gc-global-navigation a,
.gc-global-header-cta{
  font-family:inherit!important;
  letter-spacing:0!important;
}
.gc-appearance-brands .gc-brands-site,
.gc-appearance-catalog .gc-catalog-site,
.gc-appearance-segments .gcseg-body,
.gc-appearance-regions .gcreg-body,
.gc-appearance-campaigns .gc-campaigns-page,
.gc-appearance-contact .gc-leads-page,
.gc-appearance-channels .gc-channels-page,
.gc-appearance-testimonials .gcsp-standalone,
.gc-appearance-partners .gcsp-standalone{
  margin:0!important;
  padding:0!important;
  font-family:var(--gc-font,Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif)!important;
}
.gc-appearance-brands :where(h1,h2,h3,h4,h5,h6,p,a,span,small,strong,button,input,select,textarea),
.gc-appearance-catalog :where(h1,h2,h3,h4,h5,h6,p,a,span,small,strong,button,input,select,textarea),
.gc-appearance-segments :where(h1,h2,h3,h4,h5,h6,p,a,span,small,strong,button,input,select,textarea),
.gc-appearance-regions :where(h1,h2,h3,h4,h5,h6,p,a,span,small,strong,button,input,select,textarea),
.gc-appearance-campaigns :where(h1,h2,h3,h4,h5,h6,p,a,span,small,strong,button,input,select,textarea),
.gc-appearance-contact :where(h1,h2,h3,h4,h5,h6,p,a,span,small,strong,button,input,select,textarea),
.gc-appearance-channels :where(h1,h2,h3,h4,h5,h6,p,a,span,small,strong,button,input,select,textarea),
.gc-appearance-testimonials :where(h1,h2,h3,h4,h5,h6,p,a,span,small,strong,button,input,select,textarea),
.gc-appearance-partners :where(h1,h2,h3,h4,h5,h6,p,a,span,small,strong,button,input,select,textarea){
  font-family:var(--gc-font,Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif)!important;
}
@media(max-width:900px){
  .gc-global-header-inner{min-height:72px}
}


/* =========================================================
   v1.3.0 — Camada global de compatibilidade mobile
   ========================================================= */

html,
body.gc-design-system{
  max-width:100%;
  overflow-x:hidden;
}

body.gc-design-system img,
body.gc-design-system video,
body.gc-design-system iframe,
body.gc-design-system svg{
  max-width:100%;
  height:auto;
}

body.gc-design-system :where(table){
  max-width:100%;
}

body.gc-design-system :where(input,select,textarea,button){
  max-width:100%;
}

body.gc-design-system :where(h1,h2,h3,h4,h5,h6,p,a,span,strong,small,label,li){
  overflow-wrap:anywhere;
  word-break:normal;
}

@media(max-width:900px){
  .gc-global-header{
    position:sticky!important;
    top:0!important;
    width:100%;
  }

  .gc-global-header-inner{
    width:min(var(--gc-content-width,1180px),calc(100% - 24px));
    min-height:68px!important;
    padding:8px 0;
    gap:12px;
  }

  .gc-global-logo{
    flex:1 1 auto;
    min-width:0;
  }

  .gc-global-logo img{
    max-width:190px!important;
    max-height:46px!important;
  }

  .gc-global-menu-toggle{
    display:flex!important;
    flex:0 0 44px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    margin-left:auto;
  }

  .gc-global-navigation{
    order:10;
    width:100%;
    margin:0!important;
    padding:8px 0 14px!important;
    background:var(--gc-surface,#fff);
  }

  .gc-global-navigation a{
    display:flex;
    align-items:center;
    min-height:45px;
    padding:11px 2px!important;
    border-bottom:1px solid var(--gc-border,#dfe6ef);
    font-size:15px!important;
    line-height:1.25!important;
  }

  .gc-global-header-cta{
    order:11;
    width:100%;
    min-height:46px;
    margin:0 0 12px;
  }

  .gc-global-footer{
    padding:46px 0 22px!important;
  }

  .gc-global-footer-main{
    grid-template-columns:1fr!important;
    gap:30px!important;
  }

  .gc-global-footer-brand{
    grid-column:auto!important;
  }

  .gc-global-footer-brand img{
    max-width:220px!important;
  }

  .gc-global-footer-bottom{
    align-items:flex-start!important;
    flex-direction:column!important;
  }

  .gc-public-container,
  .gc-container,
  .gc-brands-v2-container,
  .gc-brand-single-container,
  .gc-catalog-container,
  .gcseg-container,
  .gcreg-container,
  .gccp-container,
  .gclf-container,
  .gcsp-container,
  .gcch-container{
    width:calc(100% - 28px)!important;
    max-width:none!important;
  }

  .gc-public-hero-grid,
  .gc-brand-single-hero-grid,
  .gc-brand-single-main,
  .gc-product-detail-grid,
  .gclf-shell{
    grid-template-columns:1fr!important;
  }

  .gc-brands-v2-grid,
  .gc-products-grid,
  .gcseg-grid,
  .gcreg-grid,
  .gccp-grid,
  .gcsp-public-grid,
  .gclf-benefits{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }

  .gc-public-hero,
  .gc-brands-v2-hero,
  .gc-brand-single-hero,
  .gc-catalog-hero,
  .gcseg-banner,
  .gcreg-banner,
  .gccp-hero,
  .gclf-hero,
  .gcsp-page-hero{
    padding-top:58px!important;
    padding-bottom:58px!important;
  }

  .gc-public-hero h1,
  .gc-brands-v2-hero h1,
  .gc-brand-single h1,
  .gc-catalog-hero h1,
  .gcseg-banner h1,
  .gcreg-banner h1,
  .gccp-hero h1,
  .gclf-hero h1,
  .gcsp-page-hero h1{
    font-size:clamp(38px,11vw,58px)!important;
    line-height:1.02!important;
  }

  .gc-public-hero p,
  .gc-brands-v2-hero p,
  .gc-brand-single-summary,
  .gc-catalog-hero p,
  .gcseg-banner p,
  .gcreg-banner p,
  .gccp-hero p,
  .gclf-hero p,
  .gcsp-page-hero p{
    font-size:16px!important;
    line-height:1.65!important;
  }

  .gc-brands-v2-intro,
  .gc-public-section-heading,
  .gcseg-intro,
  .gcreg-intro,
  .gccp-intro{
    align-items:flex-start!important;
    flex-direction:column!important;
  }

  .gc-brands-v2-count{
    width:100%;
  }

  .gc-brand-single-visual{
    min-height:260px!important;
  }

  .gc-brand-single-logo{
    width:100%!important;
    min-height:200px!important;
  }

  .gc-brand-single-cta .gc-brand-single-container,
  .gc-brands-v2-cta .gc-brands-v2-container,
  .gc-catalog-cta .gc-catalog-container,
  .gcseg-cta,
  .gcreg-cta,
  .gccp-cta,
  .gcsp-page-cta .gcsp-container{
    align-items:flex-start!important;
    flex-direction:column!important;
  }

  .gc-catalog-filters{
    grid-template-columns:1fr!important;
  }

  .gc-catalog-filters button{
    width:100%;
    grid-column:auto!important;
  }

  .gclf-aside{
    position:static!important;
  }

  .gcsp-partner-card{
    align-items:flex-start!important;
  }

  .gcsp-page-cta .gcsp-container{
    padding:28px 24px!important;
  }

  body.gc-design-system :where(.gc-card,.gc-brand-single-content,.gc-brand-single-info-card,.gclf-card,.gclf-aside){
    padding:22px!important;
  }

  body.gc-design-system :where(input[type=text],input[type=email],input[type=url],input[type=tel],input[type=number],input[type=password],input[type=date],input[type=time],select,textarea){
    width:100%!important;
    min-width:0!important;
    font-size:16px!important;
  }
}

@media(max-width:620px){
  .gc-global-header-inner{
    width:calc(100% - 20px)!important;
  }

  .gc-global-logo img{
    max-width:165px!important;
    max-height:42px!important;
  }

  .gc-brands-v2-grid,
  .gc-products-grid,
  .gcseg-grid,
  .gcreg-grid,
  .gccp-grid,
  .gcsp-public-grid,
  .gclf-benefits{
    grid-template-columns:1fr!important;
  }

  .gc-public-section,
  .gc-brands-v2-intro,
  .gc-brand-single-main,
  .gc-catalog-main,
  .gcseg-intro,
  .gcreg-intro,
  .gccp-intro,
  .gclf-shell,
  .gcsp-page-content{
    padding-top:46px!important;
    padding-bottom:46px!important;
  }

  .gc-public-hero h1,
  .gc-brands-v2-hero h1,
  .gc-brand-single h1,
  .gc-catalog-hero h1,
  .gcseg-banner h1,
  .gcreg-banner h1,
  .gccp-hero h1,
  .gclf-hero h1,
  .gcsp-page-hero h1{
    font-size:clamp(34px,12vw,48px)!important;
  }

  .gc-public-hero-actions,
  .gc-brand-single-actions{
    width:100%;
    flex-direction:column!important;
  }

  .gc-public-hero-actions a,
  .gc-brand-single-actions a,
  .gc-brand-single-cta a,
  .gc-brands-v2-cta a,
  .gc-catalog-cta a,
  .gcseg-cta a,
  .gcreg-cta a,
  .gccp-cta a,
  .gcsp-page-cta a{
    width:100%!important;
    white-space:normal!important;
    text-align:center;
  }

  .gc-brand-single-content,
  .gc-brand-single-info-card,
  .gclf-card,
  .gclf-aside{
    padding:20px!important;
  }

  .gc-brand-single-content h2,
  .gc-brands-v2-intro h2,
  .gcseg-intro h2,
  .gcreg-intro h2,
  .gccp-intro h2,
  .gclf-card-head h2,
  .gclf-aside h2{
    font-size:30px!important;
    line-height:1.12!important;
  }

  .gc-product-image,
  .gc-brand-logo,
  .gc-brands-v2-card-logo{
    min-height:160px!important;
    height:auto!important;
  }

  .gc-product-image img,
  .gc-brand-logo img,
  .gc-brands-v2-card-logo img{
    max-height:115px!important;
  }

  .gc-global-social{
    gap:12px!important;
  }
}
