.elementor-1091 .elementor-element.elementor-element-7ca1ee8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-aab8653 */:root{
  --hp-red:#E10700;
  --hp-red-dark:#c10500;
  --hp-text:#111;
  --hp-max:1200px;

  /* alturas padrão */
  --hp-topbar-h:38px;
  --hp-mainbar-h:78px;

  /* logo */
  --hp-logo-h:50px;
  --hp-logo-maxw:240px;

  /* admin bar */
  --hp-adminbar-h:0px;
  --hp-header-h:calc(var(--hp-topbar-h) + var(--hp-mainbar-h));
}

.admin-bar{
  --hp-adminbar-h:32px;
}

@media (max-width:782px){
  .admin-bar{
    --hp-adminbar-h:46px;
  }
}

.hp-header,
.hp-header *{
  box-sizing:border-box;
}

body{
  padding-top:calc(var(--hp-header-h) + var(--hp-adminbar-h));
}

html{
  scroll-padding-top:calc(var(--hp-header-h) + var(--hp-adminbar-h));
}

.hp-header{
  position:fixed;
  top:var(--hp-adminbar-h);
  left:0;
  width:100%;
  z-index:999;
  background:#fff;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  border-bottom:1px solid rgba(0,0,0,.06);
}

/* TOPBAR */
.hp-topbar{
  height:var(--hp-topbar-h);
  background:var(--hp-red);
  display:flex;
  align-items:center;
  justify-content:center;
}

.hp-container{
  max-width:var(--hp-max);
  margin:0 auto;
  padding:0 16px;
}

.hp-topbar-link{
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
  line-height:1;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  display:block;
  width:100%;
}

/* MAINBAR */
.hp-mainbar-inner{
  height:var(--hp-mainbar-h);
  display:grid;
  grid-template-columns:max-content minmax(0,1fr) max-content;
  align-items:center;
  gap:18px;
}

/* LOGO */
.hp-brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  min-width:0;
}

.hp-brand-logo{
  display:block;
  height:var(--hp-logo-h);
  width:auto;
  max-height:var(--hp-logo-h);
  max-width:var(--hp-logo-maxw);
  object-fit:contain;
  object-position:left center;
}

/* MENU */
.hp-nav{
  display:flex;
  justify-content:center;
}

.hp-nav ul{
  display:flex;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}

.hp-nav a{
  position:relative;
  text-decoration:none;
  font-weight:600;
  font-size:18px;
  color:var(--hp-text);
  line-height:1.1;
  white-space:nowrap;
  transition:color .25s ease;
  padding-bottom:6px;
}

/* UNDERLINE ANIMADO */
.hp-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:var(--hp-red);
  border-radius:999px;
  transition:width .3s ease;
}

/* HOVER */
.hp-nav a:hover{
  color:var(--hp-red);
}

.hp-nav a:hover::after{
  width:100%;
}

/* ITEM ATIVO */
.hp-nav .current-menu-item > a,
.hp-nav .current_page_item > a,
.hp-nav .current-menu-ancestor > a{
  color:var(--hp-red);
}

.hp-nav .current-menu-item > a::after,
.hp-nav .current_page_item > a::after,
.hp-nav .current-menu-ancestor > a::after{
  width:100%;
}

/* BOTÕES */
.hp-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.hp-header .hp-actions .hp-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  height:52px !important;
  padding:0 18px !important;
  min-width:160px !important;

  font-size:15px !important;
  font-weight:700 !important;
  line-height:1.05 !important;

  border-radius:14px !important;
  text-decoration:none !important;
  text-align:center !important;
  white-space:normal !important;

  transition:all .25s ease;
}

/* BOTÃO CINZA */
.hp-header .hp-actions .hp-btn--outline{
  background:#ECECEC !important;
  border:2px solid #333 !important;
  color:#333 !important;
}

.hp-header .hp-actions .hp-btn--outline:hover{
  background:var(--hp-red) !important;
  border-color:var(--hp-red) !important;
  color:#fff !important;
  transform:translateY(-2px);
}

/* BOTÃO VERMELHO */
.hp-header .hp-actions .hp-btn--solid{
  background:var(--hp-red) !important;
  border:2px solid var(--hp-red) !important;
  color:#fff !important;
}

.hp-header .hp-actions .hp-btn--solid:hover{
  background:var(--hp-red-dark) !important;
  border-color:var(--hp-red-dark) !important;
  transform:translateY(-2px);
}

/* TOGGLE */
.hp-nav-toggle{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
  overflow:hidden;
}

/* DESKTOP */
.hp-burger{
  display:none;
}

.hp-backdrop{
  display:none;
}

.hp-drawer{
  display:contents;
}

.hp-drawer-head{
  display:none;
}

/* TABLET */
@media (max-width:1024px){

  :root{
    --hp-mainbar-h:74px;
    --hp-logo-h:46px;
    --hp-logo-maxw:220px;
  }

  .hp-nav ul{
    gap:18px;
  }

  .hp-nav a{
    font-size:14px;
  }

  .hp-header .hp-actions .hp-btn{
    height:50px !important;
    min-width:150px !important;
    font-size:14px !important;
  }
}

/* MOBILE */
@media (max-width:992px){

  :root{
    --hp-topbar-h:0px;
    --hp-mainbar-h:68px;
    --hp-logo-h:42px;
    --hp-logo-maxw:200px;
  }

  .hp-topbar{
    display:none;
  }

  .hp-mainbar-inner{
    grid-template-columns:1fr auto;
    gap:12px;
  }

  .hp-burger{
    display:flex;
    width:40px;
    height:40px;
    border:2px solid #e5e5e5;
    border-radius:10px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
  }

  .hp-burger span{
    width:18px;
    height:2px;
    background:#111;
    display:block;
    transition:.25s ease;
  }

  .hp-backdrop{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease;
  }

  .hp-drawer{
    display:block;
    position:fixed;
    left:0;
    right:0;
    top:calc(var(--hp-header-h) + var(--hp-adminbar-h));
    bottom:0;
    background:#fff;
    border-top:1px solid rgba(0,0,0,.08);
    transform:translateY(-10px);
    opacity:0;
    pointer-events:none;
    transition:transform .25s ease, opacity .25s ease;
    overflow:auto;
    padding:16px 18px 22px;
  }

  .hp-drawer-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:6px 0 14px;
    border-bottom:1px solid rgba(0,0,0,.08);
    margin-bottom:14px;
  }

  .hp-drawer-title{
    font-weight:800;
    font-size:13px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#111;
  }

  .hp-close{
    width:38px;
    height:38px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    border:2px solid #eee;
    font-size:22px;
    line-height:1;
    color:#111;
    user-select:none;
  }

  .hp-nav{
    display:block;
    width:100%;
    justify-content:flex-start;
  }

  .hp-nav ul{
    flex-direction:column;
    gap:12px;
    align-items:flex-start;
  }

  .hp-nav a{
    font-size:16px;
    padding:6px 0;
    white-space:normal;
  }

  .hp-actions{
    width:100%;
    flex-direction:column;
    gap:12px;
    padding-top:14px;
  }

  .hp-header .hp-actions .hp-btn{
    width:100% !important;
    min-width:0 !important;
    height:52px !important;
    font-size:15px !important;
  }

  .hp-nav-toggle:checked ~ .hp-backdrop{
    opacity:1;
    pointer-events:auto;
  }

  .hp-nav-toggle:checked ~ .hp-drawer{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
}/* End custom CSS */