:root {
  --font: Georgia, "Times New Roman", Times, serif;
  --bevan: Bevan, Georgia, serif;
  --text: #555555;
  --muted: #9f9b9a;
  --accent: #faa74a;
  --nav-top: #3c3432;
  --nav-bot: #2b1d19;
  --footer-bg: #eeeae7;
  --container: 1100px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  background: #fff;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus { left: 8px; z-index: 9999; background: #fff; padding: 8px; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Header */
#header { background: #fff; }
#branding {
  position: relative;
  height: 255px;
  background: #fff;
}
#bg_image {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
}
#header-container {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  height: 255px;
  z-index: 2;
}
#logo {
  position: absolute;
  left: 80px;
  top: 10px;
  z-index: 3;
  display: block;
}
#logo img {
  width: 300px;
  height: 235px;
  object-fit: contain;
  display: block;
}
#header-widget-area {
  position: absolute;
  right: 0;
  top: 80px;
  z-index: 2;
  width: 420px;
}
.phone-box {
  text-align: center;
  font-family: var(--bevan);
  font-size: 25px;
  color: #fff;
  background: var(--accent);
  padding: 30px;
}

#nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #f3f3f3;
  margin: 8px 12px;
  cursor: pointer;
}
#nav-toggle span,
#nav-toggle span::before,
#nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #444;
  position: relative;
}
#nav-toggle span::before,
#nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
#nav-toggle span::before { top: -7px; }
#nav-toggle span::after { top: 7px; }

#access {
  border-top: 6px solid var(--accent);
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.75);
  background: linear-gradient(to bottom, var(--nav-top) 0%, var(--nav-bot) 100%);
  position: relative;
  z-index: 20;
}
#access .menu-inner {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: 0 auto;
}
#prime_nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
#prime_nav > li { position: relative; }
#prime_nav > li > a {
  color: #fff;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.6;
}
#prime_nav > li > a span {
  display: block;
  padding: 22px 22px;
  text-transform: none;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
}
#prime_nav > li > a:hover,
#prime_nav > li.current-menu-item > a,
#prime_nav > li:hover > a {
  color: var(--accent);
  text-decoration: none;
}
#prime_nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--nav-bot);
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
  z-index: 40;
}
#prime_nav li:hover > .sub-menu,
#prime_nav li:focus-within > .sub-menu,
#prime_nav li.open > .sub-menu { display: block; }
#prime_nav .sub-menu a {
  display: block;
  color: #fff;
  padding: 8px 18px;
  text-decoration: none;
  white-space: nowrap;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
}
#prime_nav .sub-menu a:hover,
#prime_nav .sub-menu .current-menu-item a { color: var(--accent); }

.menu-main-search { margin-left: auto; padding: 12px 0 12px 16px; }
.searchform {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  width: 200px;
  height: 36px;
}
.searchform input {
  flex: 1;
  border: 0;
  padding: 8px 10px;
  font: 14px var(--font);
  color: #555;
  background: transparent;
  outline: none;
  width: 100%;
}
.searchform button {
  border: 0;
  background: transparent;
  color: #888;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

/* Main */
#main { position: relative; }
#forbottom {
  width: min(100% - 0px, var(--container));
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 0 40px;
}
.home #forbottom { padding-top: 20px; }
.inner #forbottom { padding-top: 0; }

#breadcrumbs {
  padding: 14px 0 8px;
  color: var(--accent);
  font-size: 13px;
}
#breadcrumbs-box { display: flex; align-items: center; gap: 8px; }
#breadcrumbs a { color: var(--accent); }
.crumb-sep { color: #bbb; }
.current { color: #888; }
.home-crumb { display: block; }

.entry-title {
  color: #9f9b9a;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 16px;
  padding: 0;
  letter-spacing: normal;
}
.inner .entry-content .panel-grid:first-child .textwidget > h1:first-child { display: none; }

.wp-content h1,
.wp-content h2,
.wp-content h3,
.wp-content h4,
.wp-content h5,
.wp-content h6 {
  font-family: Bevan, Georgia, serif;
  font-weight: 400;
  color: #9f9b9a;
}
.wp-content h1 { font-size: 42px; }
.wp-content h2 { font-size: 36px; }
.wp-content h3 { font-size: 31px; }
.wp-content h4 { font-size: 26px; }
.wp-content h5 { font-size: 21px; line-height: 1.45; }
.wp-content h6 { font-size: 16px; }
.wp-content p { margin: 0 0 14px; font-size: 14px; line-height: 1.8; }
.wp-content .sombra,
.sombra-img img,
.wp-content img.sombra,
.wp-content a img {
  background: #fff;
  padding: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,.28);
}
.wp-content .alignleft { float: left; margin: 0 20px 12px 0; }
.wp-content .alignright { float: right; margin: 0 0 12px 20px; }
.wp-content .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-content::after { content: ""; display: block; clear: both; }

.panel-layout .panel-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.panel-layout .panel-grid-cell {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.btn-saiba,
.wp-content [style*="background: #faa74a"] a,
.wp-content span[style*="background: #faa74a"] {
  display: inline-block;
  padding: 10px;
  background: var(--accent) !important;
  color: #fff !important;
  text-decoration: none !important;
}
.ow-button-base a {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  text-decoration: none;
}

/* Home */
.home-page { padding: 18px 20px 0; }
.slider-wrap { max-width: 1060px; margin: 0 auto 28px; }
.cycloneslider {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 1100 / 444;
}
.cycloneslider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.cycloneslider .slide.active { opacity: 1; z-index: 1; }
.cycloneslider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cycloneslider-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.08));
  padding: 28px 24px 18px;
  border-bottom: 4px solid var(--accent);
}
.cycloneslider-caption-title {
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.12em;
  font-weight: 400;
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 60px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.slider-prev { left: 0; }
.slider-next { right: 0; }
.slider-prev .arrow,
.slider-next .arrow {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.slider-prev .arrow { transform: rotate(-135deg); margin-left: 16px; }
.slider-next .arrow { transform: rotate(45deg); margin-left: 8px; }

.home-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 8px 20px 30px;
}
.home-card {
  background-image: url("/assets/img/bg-destaque-home.webp");
  background-repeat: repeat;
  border: 1px solid #e5e5e5;
  padding: 20px;
}
.home-card-mid { border-color: var(--accent); }
.home-card h2 {
  font-family: Bevan, Georgia, serif;
  color: #9f9b9a;
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 10px;
}
.home-card .accent { color: var(--accent); }
.home-card ul {
  list-style: circle;
  padding-left: 18px;
  margin: 0 0 16px;
  color: #777;
}
.home-card li {
  border-bottom: 1px dotted #ddd;
  padding: 4px 0;
}
.btn-saiba {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 14px;
  display: inline-block;
  text-decoration: none !important;
}

.home-destaque {
  margin: 10px 20px 20px;
  min-height: 166px;
  background-image: url("/assets/img/bg_destaque-home11.webp");
  background-size: cover;
  background-position: left center;
  display: flex;
  align-items: center;
}
.destaque-copy {
  padding: 28px 36px;
  color: #fff;
}
.destaque-copy h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

/* Footer */
#footer {
  background: var(--footer-bg);
  color: #aaa;
  margin-top: 20px;
}
#colophon {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: 0 auto;
}
#footer-widget-area {
  display: grid;
  grid-template-columns: 16.3% 27% 32.8% 23.9%;
  gap: 0;
  padding: 24px 0 10px;
  line-height: 35px;
}
.foot-col { padding: 0 15px; }
.foot-precos {
  border-right: 1px solid #c7c7c7;
  min-height: 180px;
  padding-top: 30px;
  padding-right: 20px;
}
.foot-contato { padding-top: 30px; }
.foot-precos h2,
.foot-contato h2 {
  font-family: var(--bevan);
  font-size: 30px;
  font-weight: 400;
  color: var(--accent);
  margin: 0 0 8px;
  line-height: 1.2;
}
.foot-contato .tagline {
  font-family: var(--bevan);
  font-size: 12px;
  color: #000;
  margin: 0 0 8px;
  line-height: 1.4;
}
.foot-contato h3 {
  font-family: var(--bevan);
  font-size: 20px;
  color: #000;
  margin: 0 0 8px;
  font-weight: 400;
}
.foot-contato p {
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
  margin: 0;
}
.foot-logo { text-align: center; }
.foot-cifrao img { width: 150px; height: auto; }

#footer2 {
  background: #2b1d19;
  color: #cfc7c2;
  margin-top: 8px;
}
#footer2-inside {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  padding: 14px 0 18px;
}
.copy {
  margin: 0 0 15px;
  font-size: 13px;
}
.copy a { color: var(--accent); }
.socials { display: flex; justify-content: center; gap: 8px; }
.socials a { display: inline-block; line-height: 0; }
.socials img { width: 26px; height: 26px; }

#toTop {
  position: fixed;
  right: 40px;
  bottom: 18px;
  width: 50px;
  height: 50px;
  border: 0;
  background: rgba(0,0,0,.06);
  box-shadow: 0 0 1px rgba(0,0,0,.28);
  color: #666;
  cursor: pointer;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
#toTop.is-on { opacity: 1; pointer-events: auto; }

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox[hidden] { display: none; }
#lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  box-shadow: 0 0 24px #000;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
}
.lb-close { top: 12px; right: 20px; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

.search-hits { padding-left: 18px; }
.page-search { margin: 16px 0 24px; width: min(100%, 360px); }

iframe { max-width: 100%; }

@media (max-width: 1100px) {
  #logo { left: 16px; }
  #header-widget-area { width: min(420px, 48%); }
  .home-cols { margin-left: 10px; margin-right: 10px; }
}

@media (max-width: 780px) {
  #branding { height: auto; padding-bottom: 8px; }
  #bg_image { height: 160px; position: relative; }
  #header-container { height: auto; }
  #logo {
    position: relative;
    left: auto;
    top: auto;
    display: block;
    margin: -100px auto 0;
    width: fit-content;
  }
  #logo img { width: 240px; height: auto; }
  #header-widget-area {
    position: static;
    width: auto;
    margin: 8px 12px 0;
  }
  .phone-box { margin-top: 0; font-size: 22px; padding: 22px; }
  #nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  #access { display: none; }
  #access.is-open { display: block; }
  #prime_nav { flex-direction: column; align-items: stretch; }
  #prime_nav > li > a span { padding: 12px 18px; }
  #prime_nav .sub-menu { position: static; display: none; min-width: 0; box-shadow: none; }
  #prime_nav li.open > .sub-menu { display: block; }
  .menu-main-search { margin: 0; padding: 12px 18px 20px; }
  .searchform { width: 100%; }
  .home-cols { grid-template-columns: 1fr; margin: 0; }
  #footer-widget-area { grid-template-columns: 1fr; }
  .foot-precos { border-right: 0; min-height: 0; }
  .destaque-copy h1 { font-size: 32px; }
  .wp-content .alignleft,
  .wp-content .alignright { float: none; margin: 0 auto 12px; display: block; }
  .entry-title { font-size: 32px; }
  .wp-content h1 { font-size: 32px; }
  .wp-content h2, .home-card h2 { font-size: 28px; }
  .wp-content h5 { font-size: 18px; }
  .home-page { padding-left: 0; padding-right: 0; }
  .slider-wrap { margin-left: 10px; margin-right: 10px; }
}

@media (max-width: 390px) {
  .phone-box { font-size: 20px; padding: 18px; }
  .destaque-copy { padding: 20px; }
}
