.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root {
  --bg-header: #121212;
  --text-main: #F5F5F5;
  --text-muted: #B3B3B3;
  --gold: #C9A24D;
  --gold-hover: #B8923E;
  --green-delivery: #1F8A5B;
}

/* HEADER PRINCIPAL */
header {
  background-color: var(--bg-header);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* CONTAINER INTERNO */
.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header-logo {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold);
}

/* BOTÃO PRINCIPAL */
.btn-primary {
  background-color: var(--gold);
  color: #121212 !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
}

/* SELO ENTREGA RÁPIDA */
.delivery-badge {
  background-color: var(--green-delivery);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .header-container {
    padding: 12px 20px;
  }

  .btn-primary {
    padding: 9px 16px;
    font-size: 0.9rem;
  }
}/* End custom CSS */