:root {
  --gold: #b8883c;
  --black: #000000;
  --card: #222228;
  --footer-bottom: #343434;
  --wa: #0dc152;
  --white: #ffffff;
  --container: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--gold);
}

h1 {
  font-family: Philosopher, serif;
  font-weight: 400;
}

h2 {
  font-family: Poppins, sans-serif;
  font-weight: 200;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 10000;
  background: var(--gold);
  color: var(--black);
  padding: 8px 12px;
}

.container {
  width: min(90%, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  background: var(--black);
  position: relative;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 200px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  height: 200px;
}

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

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

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

.nav-desktop > li > a {
  display: block;
  font-family: Philosopher, serif;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 200px;
  padding: 0 14px;
}

.nav-desktop .has-sub > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-desktop .sub-menu {
  display: none;
  position: absolute;
  top: 160px;
  left: 0;
  min-width: 240px;
  background: var(--black);
  border: 1px solid var(--gold);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  z-index: 60;
}

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

.nav-desktop .sub-menu a {
  display: block;
  color: var(--gold);
  padding: 10px 16px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  text-transform: none;
}

.nav-desktop .sub-menu a:hover {
  background: var(--black);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--gold);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mobile-panel {
  display: none;
  background: var(--black);
  padding: 8px 0 24px;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 0 8%;
}

.mobile-panel a {
  display: block;
  color: var(--gold);
  font-family: Philosopher, serif;
  text-transform: uppercase;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(184, 136, 60, 0.25);
}

.mobile-panel .sub-menu {
  padding-left: 16px;
}

.mobile-panel .sub-menu a {
  text-transform: none;
  font-family: Poppins, sans-serif;
  font-size: 14px;
}

/* Hero slider */
.hero {
  position: relative;
  min-height: 650px;
  background: #000;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  min-height: 650px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000 center / cover no-repeat;
  opacity: 0.39;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-copy {
  grid-column: 2;
  padding: 100px 40px 40px 0;
  align-self: start;
}

.hero-copy h2 {
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 200;
  margin: 0 0 8px;
  font-family: Poppins, sans-serif;
}

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

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

.hero-prev {
  left: 12px;
}

.hero-next {
  right: 12px;
}

.hero-dots {
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #fff;
}

/* Buttons */
.btn-outline,
.button {
  display: inline-block;
  background: none;
  border: 2px solid var(--gold);
  color: #fff;
  padding: 10px 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  margin-top: 16px;
}

.button a,
.btn-outline {
  color: #fff;
}

.button:hover,
.btn-outline:hover {
  background: none;
  color: #fff;
}

/* About */
.about {
  background: #000 url('/assets/img/fundo.webp') no-repeat left center;
  background-size: auto 100%;
  margin-bottom: 70px;
}

.about-grid {
  display: grid;
  grid-template-columns: 45.6364% 54.3636%;
}

.about-photo {
  min-height: 280px;
}

.about-copy {
  background: #000;
  padding: 100px 10px 100px 30px;
}

.titulo-home {
  color: #fff;
  font-size: 50px;
  font-family: 'Open Sans', Poppins, sans-serif;
  font-weight: 400;
  margin: 0 0 20px;
}

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

/* Area cards */
.areas {
  margin-bottom: 70px;
}

.areas-row {
  display: grid;
  grid-template-columns: 10% 26.6667% 26.6667% 26.6667% 10%;
  gap: 30px;
  margin-bottom: 30px;
  align-items: start;
}

.area-card {
  background: var(--card);
  padding: 50px;
  text-align: center;
}

.area-card h3 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
}

.area-icon {
  width: 55px;
  height: 55px;
  fill: var(--gold);
  margin: 0 auto 12px;
  display: block;
}

.area-card .button {
  margin-top: 10px;
}

/* CTA band */
.cta-band {
  position: relative;
  min-height: 400px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: #000 center / cover no-repeat;
  opacity: 0.42;
}

.cta-inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.cta-inner h2 {
  color: #fff;
  font-size: 45px;
  text-transform: uppercase;
  margin: 0 0 30px;
  font-family: Philosopher, serif;
  font-weight: 400;
}

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

.page-header h1 {
  color: #fff;
  margin: 0 0 8px;
  font-size: 32px;
}

.breadcrumbs {
  color: #fff;
  font-size: 13px;
}

.breadcrumbs a {
  color: #fff;
}

.breadcrumbs span {
  margin: 0 6px;
}

/* Inner split (escritorio) */
.inner-split {
  background: #000 url('/assets/img/fundo.webp') no-repeat left center;
  background-size: auto 100%;
  margin-bottom: 70px;
}

.inner-split-grid {
  display: grid;
  grid-template-columns: 45.6364% 54.3636%;
}

.inner-split-copy {
  padding: 5px 10px 100px 30px;
}

.inner-split-copy h1 {
  color: #fff;
  font-size: 42px;
  margin: 0 0 8px;
}

.inner-split-copy h2 {
  color: #fff;
  font-size: 32px;
  margin: 0 0 18px;
  font-weight: 200;
}

.inner-split-copy p {
  text-align: justify;
  margin: 0 0 16px;
}

/* Specialty */
.specialty {
  padding: 40px 0 80px;
}

.specialty-title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
}

.specialty-title svg {
  width: 55px;
  height: 55px;
  fill: var(--gold);
  flex-shrink: 0;
}

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

.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.list-check svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
}

/* Contact form */
.contact-page {
  padding: 40px 0 80px;
}

.wpcf7-like label {
  display: block;
  margin: 0 0 16px;
}

.wpcf7-like input[type='text'],
.wpcf7-like input[type='email'],
.wpcf7-like textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  background: #111;
  border: 1px solid var(--gold);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 14px;
}

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

.wpcf7-like button,
.wpcf7-like input[type='submit'] {
  background: var(--gold);
  color: #fff;
  border: 0;
  padding: 12px 28px;
  cursor: pointer;
  font-family: Poppins, sans-serif;
  text-transform: uppercase;
}

.form-feedback {
  margin-top: 16px;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.map-wrap {
  padding: 20px 0 80px;
}

.map-wrap iframe {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--black);
}

.footer-widgets {
  padding: 50px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.footer-grid h2 {
  color: var(--gold);
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 200;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: #fff;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin: 0 0 6px;
}

.footer-ico {
  width: 18px;
  height: 18px;
  fill: #fff;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-left: 12px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  width: 300px;
  max-width: 100%;
}

.footer-bottom {
  background: var(--footer-bottom);
  padding: 16px 0;
  font-size: 13px;
  text-align: center;
}

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

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

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

.wa-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.wa-float-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.scroll-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.page-404 {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .header-inner {
    min-height: 140px;
  }
  .logo {
    height: auto;
    padding: 16px 0;
  }
}

@media (max-width: 780px) {
  .hero-content,
  .about-grid,
  .inner-split-grid,
  .areas-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    grid-column: 1;
    padding: 80px 24px 40px;
  }
  .hero,
  .hero-slide.is-active,
  .hero-content {
    min-height: 480px;
  }
  .about-photo {
    display: none;
  }
  .about-copy,
  .inner-split-copy {
    padding: 10px;
  }
  .areas-row .area-spacer {
    display: none;
  }
  .cta-inner h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .logo img {
    max-width: 195px;
    width: 195px;
  }
  .titulo-home {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-width: 141px;
    width: 141px;
  }
}
