:root {
  --font-body: Poppins, sans-serif;
  --font-head: Chivo, sans-serif;
  --black: #000;
  --text: #000;
  --h2: #333;
  --nav: #555;
  --accent: #020100;
  --header-border: #8e8d91;
  --btn: #252525;
  --social: #929292;
  --gray-page: #f5f5f5;
  --notice: #ececec;
  --coral: coral;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page .entry a,
.page a {
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--h2);
  line-height: 1.4;
}

h2 {
  font-size: 34px;
  margin: 0 0 20px;
}

h2::after {
  display: block;
  width: 56px;
  content: "";
  height: 5px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  background-color: #252525;
}

.botao {
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  padding: 18px 39px;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
  border: 2px solid #252525;
  color: #252525;
  background: transparent;
}

.botao a {
  color: inherit;
  text-decoration: none;
}

.botao.borda-branca,
.botao.borda_branca {
  border-color: #fff;
  color: #fff;
}

.botao.borda-branca a,
.botao.borda_branca a {
  color: #fff;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 5px solid var(--header-border);
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 10px 0;
  min-height: 121px;
}

.site-logo img {
  width: 202px;
  height: auto;
  max-width: 202px;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  color: var(--nav);
  padding: 0 15px;
  line-height: 74px;
  letter-spacing: 0.6px;
}

.nav-list > li > a:hover,
.nav-list > li.current > a {
  color: var(--accent);
}

.nav-list .has-children > a .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-top: 3px solid var(--accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  z-index: 50;
}

.has-children:hover > .sub-menu,
.has-children:focus-within > .sub-menu,
.has-children.open > .sub-menu {
  display: block;
}

.sub-menu a {
  display: block;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 16px;
  color: var(--nav);
  padding: 10px 18px;
  text-transform: none;
  line-height: 1.4;
}

.sub-menu a:hover {
  color: var(--accent);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  list-style: none;
  padding: 0;
}

.header-social a {
  color: var(--social);
  padding: 0 8px;
  line-height: 30px;
}

.header-social a:hover {
  color: var(--accent);
}

.header-social svg {
  display: block;
  width: 30px;
  height: 30px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--nav);
  cursor: pointer;
  padding: 12px;
}

.menu-toggle .bars {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  position: relative;
}

.menu-toggle .bars::before,
.menu-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.menu-toggle .bars::before {
  top: -7px;
}

.menu-toggle .bars::after {
  top: 7px;
}

/* Hero */
.hero {
  position: relative;
  height: 645px;
  overflow: hidden;
  background: #333;
}

.hero-slides {
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background: #333;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  height: 645px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-head);
  font-size: 45px;
  font-weight: 600;
  line-height: 1.375;
  text-align: center;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  text-shadow: 0.1em 0.1em 0.2em #000;
}

.hero-nav,
.hero-dots {
  position: absolute;
  z-index: 3;
}

.hero-nav {
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: none;
  border: 0;
  font-size: 25px;
  opacity: 0.75;
  cursor: pointer;
  padding: 15px;
  line-height: 1;
}

.hero-nav.prev {
  left: 5px;
}

.hero-nav.next {
  right: 5px;
}

.hero-dots {
  right: 30px;
  left: auto;
  bottom: 20px;
  display: flex;
  gap: 4px;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  opacity: 0.45;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  padding: 0;
}

.hero-dots button.is-active {
  opacity: 0.85;
}

/* Home sections */
.sobre {
  background: #fff;
  padding: 50px 0;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 52.5455% 47.4545%;
  gap: 70px;
  align-items: start;
}

.sobre-icon {
  display: flex;
  justify-content: center;
}

.sobre-icon p {
  margin: 0;
}

.sobre-icon img {
  width: 512px;
  max-width: 100%;
  margin: 0 auto;
}

.sobre-text {
  text-align: center;
}

.sobre-text p {
  text-align: justify;
  margin: 0 0 16px;
}

.sobre-text .botao {
  margin-top: 8px;
}

.home-work {
  padding: 70px 0 0;
}

.home-work.dark {
  background: #1a1a1a url("/assets/img/bg_preto_1.webp") center / cover no-repeat;
}

.home-work.muted {
  background: #ececec url("/assets/img/bg_cinza_1.webp") center / cover no-repeat;
}

.home-work h2 {
  text-align: center;
}

.home-work.dark h2 {
  color: #fff;
}

.home-work-grid {
  display: grid;
  grid-template-columns:
    calc(5% - 28.5px)
    calc(30% - 21px)
    calc(30% - 21px)
    calc(30% - 21px)
    calc(5% - 28.5px);
  column-gap: 30px;
  margin: 30px 0;
}

.home-work-grid .spacer {
  display: block;
  min-height: 0;
}

.home-work-grid p {
  margin: 0;
  width: 100%;
  max-width: none;
}

.home-work-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0;
}

.efeito-imagem img {
  transition: filter 0.25s ease, border 0.25s ease;
}

.efeito-imagem img:hover {
  filter: grayscale(100%);
  border-style: ridge;
  border-color: var(--coral);
  border-width: 7px;
}

.home-work .cta {
  text-align: center;
  padding-bottom: 70px;
}

.home-work.dark .cta .botao,
.home-work.dark .cta a {
  color: #fff;
}

.banner-turismo {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: #333;
  text-align: center;
  color: #fff;
}

.banner-turismo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-turismo .inner {
  position: relative;
  z-index: 1;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-turismo h2 {
  color: #fff;
  margin-bottom: 15px;
}

.banner-turismo h2::after {
  background: #252525;
}

.banner-turismo a {
  color: #fff;
}

/* Page header */
.page-header {
  background: var(--gray-page);
  padding: 28px 0;
}

.page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-header-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--h2);
}

.page-header-title::after {
  display: none;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #777;
}

.breadcrumbs a {
  color: #777;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs .sep {
  color: #aaa;
}

.content-wrap {
  padding: 50px 0 60px;
}

/* Sobre interna */
.sobre-page {
  display: grid;
  grid-template-columns: 52.5455% 47.4545%;
  gap: 70px;
  align-items: start;
}

.sobre-page .text {
  padding-top: 35px;
  text-align: justify;
}

.sobre-page .text p {
  margin: 0 0 16px;
}

/* Serviços */
.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
}

.servico-card {
  padding-top: 20px;
  text-align: center;
  margin-top: -50px;
  padding-bottom: 40px;
}

.servico-card h2 {
  text-align: center;
}

.servico-card img {
  width: 100%;
  max-width: 1000px;
  margin: 16px auto;
  aspect-ratio: 1000 / 630;
  object-fit: cover;
}

.servico-card .botao {
  margin-top: 8px;
}

/* Galeria WP 3 colunas */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  padding: 10px;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0 auto;
  transition: filter 0.25s ease, border 0.25s ease;
}

.gallery-item img:hover {
  filter: grayscale(100%);
  border-style: ridge;
  border-color: var(--coral);
  border-width: 7px;
}

/* Contato CF7-like */
.wpcf7 {
  max-width: 100%;
}

.wpcf7 label {
  display: block;
  margin: 0 0 18px;
  font-weight: 300;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  margin-top: 6px;
  padding: 8px 10px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: #000;
  background: #fff;
  border-radius: 0;
}

.wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}

.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
  background: #020100;
  color: #fff;
  border: 0;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-transform: none;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover {
  background: #828282;
}

.form-status {
  margin-top: 16px;
  font-size: 15px;
}

.form-status.ok {
  color: #1a7a3a;
}

.form-status.err {
  color: #b00020;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer */
.site-footer {
  background: #fff;
}

.footer-widgets {
  padding: 70px 0 30px;
  color: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 42.12% 24.55% 33.33%;
  gap: 30px;
  align-items: start;
}

.footer-contact strong {
  font-weight: 600;
}

.footer-contact p {
  margin: 0;
}

.footer-contact a {
  color: #000;
}

.footer-contact a:hover {
  color: #0f0901;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 6px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social a {
  color: #333;
  border-radius: 5px;
}

.footer-social svg {
  width: 35px;
  height: 35px;
  display: block;
}

.footer-logo {
  margin-top: -30px;
  text-align: center;
}

.footer-logo img {
  width: 260px;
  height: auto;
  margin: 0 auto;
}

.footer-bottom {
  background: #fff;
  padding: 0 0 24px;
  color: #000;
  font-size: 13px;
}

#msgVenda {
  padding: 10px;
  margin-bottom: 10px;
  background: #ececec;
  border-radius: 10px;
}

.footer-bottom a {
  color: #000;
}

.footer-bottom a:hover {
  color: #000;
}

/* WhatsApp */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.wa-float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.wa-float-btn:hover {
  transform: scale(1.06);
}

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.75;
  animation: wa-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes wa-ping {
  75%,
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.wa-float-btn svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  padding: 16px;
  opacity: 0.8;
}

.lightbox-prev {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

/* 404 */
.not-found {
  text-align: center;
  padding: 80px 0;
}

@media (max-width: 959px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 40;
    margin: 0;
  }

  .site-header {
    position: relative;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list > li > a {
    line-height: 1.4;
    padding: 14px 20px;
    border-top: 1px solid #eee;
  }

  .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: #fafafa;
  }

  .has-children.open > .sub-menu {
    display: block;
  }

  .header-social {
    display: none;
  }

  .sobre-grid,
  .sobre-page,
  .servicos-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .page-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    margin-top: 0;
  }

  .servico-card {
    margin-top: 0;
  }

  .hero,
  .hero-copy {
    height: 350px;
  }

  .hero-copy h1 {
    font-size: 25px;
    line-height: 1.35;
  }

  h2 {
    font-size: 25px;
  }
}

@media (max-width: 780px) {
  .home-work-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 30px;
  }

  .home-work-grid .spacer {
    display: none;
  }
}

@media (max-width: 400px) {
  .site-logo img {
    max-width: 100%;
    width: auto;
  }

  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .menu-toggle {
    margin: 0 auto;
    float: none;
  }
}
