/* ===========================
   Responsive type scale (360px â†’ 1440px)
   - Sizes from Adobe XD at 1440px: h1 70, h2 50, h3 36, h4 30, h5 26, p 16
   - Minimum sizes at 360px: h1 36, h2 30, h3 24, h4 20, h5 18, p 16
   - Font family: Inter (or system fallbacks)
   =========================== */

/* Global defaults */
body {
  margin: 0 !important;
}
html, body, button, input, select, textarea, p, li, a {
    font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* TÃ­tulos: Urbanist */
h1, h2, h3, h4, h5, h6 {
  font-family: "Urbanist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600 !important;
}
a { color: #fff;}
p a { color: inherit !important; }
p {
  letter-spacing: 0.05em !important; /* aperta um pouco o texto */
}

/* Fluid size tokens (front-end document) */
:root{
  /* h1: clamp(30px, 1.852vw + 23.333px, 50px) */
  --fs-h1: clamp(2rem, calc(3vw + 1.8rem), 3.75rem);
  /* h2: clamp(24px, 1.111vw + 20px, 36px) */
  --fs-h2: clamp(1.5rem,  calc(1.111vw + 1.25rem),  2.25rem);
  /* h3: clamp(20px, 0.926vw + 16.667px, 30px) */
  --fs-h3: clamp(1.25rem, calc(0.926vw + 1.042rem), 1.875rem);
  /* h4: clamp(18px, 0.741vw + 15.333px, 26px) */
  --fs-h4: clamp(1.125rem, calc(0.741vw + 0.958rem), 1.625rem);
  /* p stays constant at 16px */
  --fs-p: 1rem;

  --lh-display: 1.15;  /* tighter for large headings */
  --lh-title:   1.2;   /* medium headings */
  --lh-body:    1.6;   /* paragraphs and small text */
}

/* Same tokens inside the Gutenberg canvas */
.editor-styles-wrapper{
  --fs-h1: clamp(2rem, calc(3vw + 1.8rem), 3.75rem);
  --fs-h2: clamp(1.5rem,  calc(1.111vw + 1.25rem),  2.25rem);
  --fs-h3: clamp(1.25rem, calc(0.926vw + 1.042rem), 1.875rem);
  --fs-h4: clamp(1.125rem, calc(0.741vw + 0.958rem), 1.625rem);
  --fs-p: 1rem;

  --lh-display: 1.15;
  --lh-title:   1.2;
  --lh-body:    1.6;
}

figure {
  margin: 0 !important;
}
/* Headings */
h1{ font-size: var(--fs-h1); line-height: var(--lh-display); font-weight: 700; letter-spacing: -0.01em; }
h2{ font-size: var(--fs-h2); line-height: var(--lh-display); font-weight: 700; letter-spacing: -0.005em; text-transform: uppercase; }
h3{ font-size: var(--fs-h3); line-height: var(--lh-title);   font-weight: 700; }
h4{ font-size: var(--fs-h4); line-height: var(--lh-title);   font-weight: 600; }
h5{ font-size: var(--fs-h5); line-height: var(--lh-title);   font-weight: 600; }

/* Paragraphs and small text */
p, .wp-block-paragraph{
  font-size: var(--fs-p);
  line-height: var(--lh-body);
  margin: 0 0 1em;
  font-weight: 200;
}

/* Utilities (optional) */
/* Use on any block to promote paragraph to a larger intro */
.lead{ font-size: clamp(1.125rem, 0.35vw + 1rem, 1.25rem); line-height: 1.55; }
/* Compact body for sidebars or captions */
.small{ font-size: 0.875rem; line-height: 1.5; }

.inner-padding-5pct {
    padding-left: 5%;
    padding-right: 5%;
}

.wp-block-columns {
    margin: 0 !important;
    padding: 0 20px !important;
}

.full-margin-7pct {
  margin: 7% !important;
}

.page {
  margin: 0 !important;
}
span.edit-link {
    display: none;
}
/* ===========================
   Fixed header (always at top)
   =========================== */

:root{
  --nav-bg: #0f1a29;     /* navy */
  --nav-link: #c7d7e2;
  --nav-link-active: #f0b24a;
}

/* Optional container (keep if you don't already have one) */
.container{ max-width:1200px; margin:0 auto; }

.site-header{
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);     /* full-width bar background */
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  position: fixed;
  z-index: 9999;
}

/* Inner bar with constrained width */
.site-header .nav-inner{
  display: flex;
  align-items: center;
  gap: 3rem;
  min-height: 56px;
  padding: 12px 20px;
  justify-content:flex-start;
}

/* Brand (logo) */
.site-header .brand{ display:inline-flex; align-items:center; }
.site-header .custom-logo{ width:auto; display:block; }

/* Primary menu */
.primary-nav > ul{
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a{
  color: var(--nav-link);
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
  padding: 10px 2px;
  font-family: 'Roboto', sans-serif !important;
}
.primary-nav .current-menu-item > a,
.primary-nav a:hover,
.primary-nav a:focus{ color: var(--nav-link-active); }

/* Language menu to the far right */
.lang-nav{ margin-left: auto; }
.lang-nav > ul{ display:flex; gap:12px; list-style:none; margin:0; padding:0; }
.lang-nav a{ color:#fff; font-weight:700; text-decoration:none; }

/* Content offset to avoid jump under fixed bar */

/* Mobile */
.menu-toggle{
  display: none;
  width: 40px; height: 40px;
  margin-left: auto;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-toggle__bar{
  display:block; width:24px; height:2px; margin:2px; background:#fff;
}

@media (max-width: 992px){
  .menu-toggle{ display:inline-flex; align-items:center; flex-direction: column; justify-content:center; }
  .primary-nav{
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--nav-bg);
    display: none;
    padding: 10px 20px 16px;
  }
  .primary-nav > ul{ flex-direction: column; gap: 10px; }
  .site-header.menu-open .primary-nav{ 
    display:block;
        height: 80vh;
        padding: 5px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  }
  .lang-nav{ display:none; }

  .menu-item-has-children > ul.sub-menu {
    display: block !important; /* forÃ§a o submenu a ficar sempre aberto */
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
        position: relative !important;
        padding: 0 !important;
        box-shadow: none !important;
  }
  .primary-nav .sub-menu a {
    padding: 7px 0 !important;
    font-size: 14px;
  }
}

/* Submenus (desktop hover) */
.primary-nav li{ position: relative; }
.primary-nav li .sub-menu{
  display:none; position:absolute; top:100%; left:0; min-width:220px;
  background: var(--nav-bg); padding:10px 0; border-radius:8px;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  list-style: none;
}
.primary-nav li:hover > .sub-menu{ display:block; }
.primary-nav .sub-menu a{ display:block; padding:10px 14px; }



main#primary {
    margin-top: 60px;
}
/* SINGLE PAGES */

aside#secondary {
    display: none;
}

header.entry-header {
    display: none;
}
.single-post header.entry-header {
    display: block;
}
.entry-content {
    margin-top: 0 !important;
}
.container {
    max-width: 1200px;
    margin: 0 auto !important;
}
.column-gradient {
    max-width: 1200px;
    margin: 0 auto !important;
    margin-top: -200px !important;
    z-index: 999 !important;
    position: relative;
}
.first-block {
    overflow: visible !important;
}

.no-padding {
    padding: 0 !important;
}
.rounded-corners, .rounded-corners img {
  border-radius: 10px;
}

ul.wp-block-list {
    margin-left: 0 !important;
    padding-left: 20px !important;
}
/* ================================
   Panel com cantos chanfrados
   ================================ */

.special-corners{
  /* Ajustes rÃ¡pidos */
  --cut: clamp(16px, 2.5vw, 36px);         /* tamanho do chanfro */
  position: relative;
  padding: clamp(2rem, 3.5vw, 4rem);
  border-radius: 15px;

   /* chanfros sÃ³ no topo-esquerda e embaixo-direita */
  -webkit-clip-path: polygon(
    var(--cut) 0,            /* topo: inicia apÃ³s o chanfro */
    100% 0,                  /* topo-direita (reto) */
    100% calc(100% - var(--cut)), /* desce atÃ© antes do chanfro */
    calc(100% - var(--cut)) 100%, /* diagonal do chanfro inf-dir */
    0 100%,                  /* base esquerda (reto) */
    0 var(--cut)             /* sobe atÃ© antes do chanfro sup-esq */
  );
  clip-path: polygon(
    var(--cut) 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    0 100%,
    0 var(--cut)
  );
}

/* fallback para navegadores sem clip-path */
@supports not (clip-path: polygon(10px 0, 90% 0, 100% 10px, 100% 90%, 90% 100%, 10px 100%, 0 90%, 0 10px)){
  .special-corners{
    border-radius: 15px;
  }
}

/* Tipografia e elementos internos (opcionais, para aproximar do layout) */
.special-corners h2,
.special-corners .title{
  margin: 0 0 35px;
  text-transform: uppercase;
}

.special-corners .divider{
  width: 100%;
  height: 2px;
  margin: 10px 0 25px;
  background: linear-gradient(90deg, var(--accent), rgba(207,166,106,0));
  border: 0;
}

.special-corners p{
  margin: 0 0 12px;
  color: var(--ink-dim);
}

/* BotÃ£o (opcional) */
.special-corners .btn,
.special-corners a.btn{
  display: inline-block;
  padding: 10px 16px;
  background: var(--accent);
  color: #0f1a29;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: filter .2s ease;
}
.special-corners .btn:hover{ filter: brightness(1.08); }

/* EspaÃ§amento do Ãºltimo elemento */
.special-corners > :last-child{ margin-bottom: 0; }






/* -------- Footer (AMFT) -------- */
.amft-footer {
  background: var(--nav-bg);            /* azul escuro do layout */
  color: #dbe6ef;                  /* texto claro */
  padding: 32px 0 28px;
  font-size: 14px;
}

.amft-footer a { color: #dbe6ef; text-decoration: none; }
.amft-footer a:hover { text-decoration: underline; }

/* Container (fallback caso o tema nÃ£o tenha) */
.amft-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Marca topo centralizada */
.amft-footer-brand {
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

/* Divisor fino e longo */
.amft-footer-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 15px 0 30px;
}

/* Linha de parceiros: centralizado, espaÃ§amento uniforme */
.amft-footer-partners {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 40px;                  /* linha x coluna */
  padding: 0;
  margin: 0 0 18px 0;
}
.amft-partner img {
  display: block;
  max-height: 42px;                /* altura visual como no layout */
  width: auto;
  height: auto;
}

/* Base: copyright Ã  esquerda, legal Ã  direita */
.amft-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
}
.amft-copy { margin: 0; white-space: nowrap; }
.amft-legal { display: flex; align-items: center; gap: 10px; }
.amft-sep { opacity: 0.6; }

/* Responsivo */
@media (max-width: 640px) {
  .amft-footer { padding: 28px 0 24px; }
  .amft-footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .amft-copy { white-space: normal; text-align: center; }

  #hero .wp-block-cover {
    min-height: auto !important;
}
}


















select.gt_selector.notranslate {
    background: none;
    color: var(--nav-link);
    border: none !important;
}

select option {
  background:var(--nav-bg); /* cor de fundo da lista suspensa */
  color: var(--nav-link);         /* cor do texto */
  padding: 30px;
}

.gt_switcher img {
  display: none !important;
}
a.nturl {
    padding: 7px !important;
}
.gt_option {
    padding: 10px 0 10px 0;
}

.gt_selected a:after {
  background-size: 15px !important;
  top: 0px !important;
}
.gt_switcher.notranslate {
    width: 80px !important;
    border-radius: 8px;
}
.gt_option {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}


.eap-icon-ea-expand-plus:before {
    content: "\58" !important;
    font-family: "Font Awesome 6 Free" !important;
}
.ea-expand-icon {
    background: #F39125 !important;
    border-radius: 20px !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
}
.eap-icon-ea-expand-minus:before {
    font-family: 'Font Awesome 6 Free' !important;
    content: '\f068' !important;
    font-weight: 600 !important;
}
.ea-card.sp-ea-single, .ea-body {
    border-radius: 10px !important;
}
.market-column {
    margin: 30px 0 !important;
}
.wp-block-cover.market {
    min-height: 150px !important;
    height: 150px !important;
    padding: 0 !important;
    border-radius: 10px;
}
.wp-block-cover.market p {
    margin: 0 !important;
    text-transform: uppercase !important;
    font-size: 26px !important;
    font-weight: 500;
}

.wp-block-cover.market a {
    text-decoration: none;
    color: #fff;
    font-size: 26px;
    margin: 0 !important;
    display: block;
    height: 150px;
    line-height: 150px;
}
.wp-block-cover.market a:hover {
    background-color: #F39125;
}



.contact {
  align-items: flex-start !important;
  height: 100%;
}


.find-out-more p {
  margin: 0 !important;
}
.find-out-more a {
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 32px;
  font-weight: 300;
}
.find-out-more a strong {
  font-weight: 600 !important;
}
.find-out-more i {
  margin-left: 10px;
  font-size: 30px;
}


.custom-cover {
  position: relative;
  overflow: hidden;
  height: 90vh;
}

.custom-cover video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-mobile {
  display: none;
}

@media (max-width: 768px) {
  .video-desktop {
    display: none;
  }
  .video-mobile {
    display: block;
  }
}

.cover-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}


li {
    font-weight: 200;
}



/* Layout principal */
.single-post-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  margin-top: 90px !important;
}

/* Breadcrumb */
.breadcrumb {
  grid-column: 1 / -1;
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--nav-bg);
  margin-top: 15px !important;
}
.breadcrumb a {
  color: var(--nav-bg);
  text-decoration: none;
}
.breadcrumb span {
  font-weight: 600;
}

/* CabeÃ§alho do post */
.entry-header {
  margin-bottom: 20px;
}
.entry-title {
  font-size: 28px;
  margin: 0 0 10px;
  border-bottom: 2px solid #e5a84a;
  padding-bottom: 8px;
}
.entry-meta {
  font-size: 12px;
  text-transform: uppercase;
  color: #222;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Imagem destacada */
.featured-image {
  margin: 20px 0;
}
.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ConteÃºdo */
.entry-content {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.entry-content p {
  margin-bottom: 18px;
}

/* Sidebar Latest */
.sidebar-latest .latest-posts .latest-item {
    background: #D1D1D2;
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 90% 100%, 0 100%);
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  min-height: 140px;
}
.sidebar-latest h2 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
}
.latest-item a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: #000;
}
.latest-item .thumb {
  flex-shrink: 0;
  width: 70px;
  height: 50px;
  overflow: hidden;
  border-radius: 6px;
  margin-right: 12px;
}
.latest-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-title {
  font-size: 14px;
  font-weight: 600;
}

/* Responsivo */
@media (max-width: 900px) {
  .single-post-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-latest {
    margin-top: 40px;
  }
}

.entry-meta-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 30px;
}

.post-date {
  font-size: 12px;
  font-weight: bold;
  color: #1a2533;
  letter-spacing: 0.5px;
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #e0b64a;
  padding-top: 15px;
  margin-top: 25px;
}

.post-date {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  letter-spacing: 0.3px;
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
}
.share-btn:focus, .share-btn:visited {
  color: #fff;
}
.share-btn:hover {
  transform: translateY(-3px);
  color: #FFF !important;
}

/* Cores especÃ­ficas */
.share-btn.x { background: #000; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.facebook { background: #1877f2; }
.share-btn.copy { background: #444; }
.share-btn.pdf { background: #e63946; }
.share-btn.print { background: #333; }

.share-btn i {
  font-size: 15px;
  line-height: 1;
}

.copy-alert {
  opacity: 0;
  visibility: hidden;
  background: #333;
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  position: absolute;
    top: 30%;
    left: 53%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.copy-alert.visible {
  opacity: 1;
  visibility: visible;
}


.news-press {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

/* TÃ­tulo */
.page-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #e5a84a;
  padding-bottom: 8px;
}

/* Busca */
.news-filter {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.search-form {
  display: flex;
  gap: 8px;
}
.search-field {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  flex: 1;
  min-width: 300px;
}
.search-submit {
  background: #e28d00;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}
.search-submit:hover {
  opacity: 0.9;
}

/* Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.news-card {
  background: #f6f6f6;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease;
  max-width: 400px !important;
}
.news-card:hover {
  transform: translateY(-3px);
}
.news-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.news-body {
  padding: 16px;
}
.news-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  text-transform: none !important;
  text-decoration: none !important;
  color: #0f1a29;
}
a:visited {
  text-decoration: none !important;
}
.read-more {
  color: #e28d00;
  font-weight: bold;
  font-size: 14px;
}

/* PaginaÃ§Ã£o */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 12px;
  border-radius: 50%;
  background: #f0f0f0;
  text-decoration: none;
  color: #000;
}
.pagination .current {
  background: #e28d00;
  color: #fff;
}