*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 10000;
  background: #fff;
  padding: 8px 12px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.site-header {
  display: contents;
}

.header-top {
  background: var(--color-dark);
  padding: 10px;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  gap: 16px;
  padding: 0 80px;
}

.logo-link {
  display: block;
  width: 284px;
  max-width: 100%;
}

.logo-link img {
  width: 233px;
  height: 90px;
  object-fit: contain;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.header-contact .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}

.header-contact .icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.nav-bar {
  background: #fff;
  padding: 5px 0;
}

.nav-bar.is-sticky {
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.nav-list a {
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-nav);
  padding: 10px 4px;
  display: inline-block;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #242424;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-panel {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
}

.mobile-panel a {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #242424;
  border-bottom: 1px solid #f0f0f0;
}

/* Hero slider */
.hero-wrap {
  background: #fff;
}

.hero-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #000;
}

.hero-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background: #000 center / cover no-repeat;
}

.hero-slide.is-active .hero-slide-bg {
  animation: kenburns 6s ease-out forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.hero-prev {
  left: 12px;
}

.hero-next {
  right: 12px;
}

.hero-dots {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 0;
  background: #000;
  opacity: 0.2;
  cursor: pointer;
  padding: 0;
}

.hero-dots button.is-active {
  opacity: 1;
}

/* Home intro */
.home-intro-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 10px;
}

.home-intro {
  display: flex;
  align-items: stretch;
  column-gap: 30px;
}

.home-intro-photo,
.home-intro-copy {
  flex: 1 1 0;
  min-width: 0;
  width: 50%;
}

.home-intro-photo {
  display: flex;
  justify-content: center;
}

.home-intro-photo img {
  width: 75%;
  height: auto;
}

.home-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.home-intro-copy h1 {
  font-family: var(--font-title);
  font-size: 45px;
  font-weight: 400;
  color: var(--color-heading);
  margin: 0 0 8px;
}

.home-intro-copy h2 {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-heading);
  margin: 0 0 20px;
}

.home-intro-copy p {
  color: var(--color-muted);
  margin: 20px 0 20px;
}

.banner-orcamento {
  margin: 0;
  padding: 50px;
  background: center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-orcamento h2 {
  font-family: var(--font-title);
  font-size: 39px;
  font-weight: 400;
  line-height: 53px;
  color: #fff;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.stripe {
  width: 100%;
  display: block;
}

.stripe img {
  width: 100%;
  height: auto;
}

/* Flip services */
.flip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  padding: 30px 30px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.flip-row.second {
  padding-bottom: 50px;
}

.flip-col h2,
.flip-col h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
  color: var(--color-heading);
  text-align: center;
  margin: 0 0 16px;
}

.flip-box {
  height: 390px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease-in-out;
}

.flip-front {
  background: #fff center / contain no-repeat;
  z-index: 1;
}

.flip-back {
  background: var(--color-orange);
  color: #fff;
  transform: translateX(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  text-align: center;
  z-index: 2;
}

.flip-box:hover .flip-back,
.flip-box:focus-within .flip-back {
  transform: translateX(0);
}

.flip-back h3 {
  font-family: var(--font-title);
  font-size: 22px;
  color: #fff;
  margin: 0 0 12px;
}

.flip-back p {
  margin: 0;
  color: #fff;
  font-size: 15px;
}

/* Videos */
.videos-section {
  max-width: var(--container);
  margin: 0 auto 50px;
  padding: 0 15px;
}

.videos-section h2 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
  color: var(--color-heading);
  text-align: center;
  margin: 0 0 24px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Interior */
.page-wrap {
  max-width: var(--container);
  margin: 20px auto 50px;
  padding: 0 15px;
}

.page-title {
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-heading);
  margin: 0 0 6px;
}

.page-rule {
  height: 1px;
  background: #eeeeee;
  margin: 0 0 24px;
  border: 0;
}

.page-body {
  color: var(--color-muted);
  font-size: 16px;
}

.page-body p {
  margin: 0 0 16px;
}

.page-body h2 {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-heading);
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: 0;
}

.service-card {
  border: 1px solid #c7c7c7;
  padding: 20px;
  margin-bottom: 20px;
}

.service-card h2 {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-heading);
  margin: 0 0 16px;
}

.service-media {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.service-media img {
  width: 30%;
  max-width: 260px;
  flex-shrink: 0;
  object-fit: cover;
}

.service-media .copy {
  flex: 1;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--color-muted);
}

.service-media .copy p {
  margin: 0 0 12px;
}

.map-wrap {
  width: 100%;
  min-height: 450px;
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Form */
.contact-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
}

.req {
  color: #ff0000;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-orange);
  background: #fff;
  padding: 8px 10px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  color: var(--color-text);
  margin-bottom: 19px;
}

.contact-form textarea {
  min-height: 96px;
  resize: vertical;
}

.contact-form button {
  background: var(--color-orange);
  color: #fff;
  border: 0;
  padding: 10px 28px;
  font-size: 15px;
  cursor: pointer;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

#form-feedback {
  margin-top: 12px;
  font-family: Arial, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
}

#form-feedback.is-ok {
  color: #10c800;
}

#form-feedback.is-err {
  color: #e30000;
}

/* Legal */
.legal-doc {
  color: var(--color-muted);
  font-size: 16px;
}

.legal-doc h2 {
  font-size: 1.4em;
  color: var(--color-heading);
  margin: 24px 0 10px;
}

.legal-doc h3 {
  font-size: 1.15em;
  color: var(--color-heading);
  margin: 16px 0 8px;
}

.legal-doc ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 16px;
}

.legal-doc details {
  border: 1px solid #ddd;
  margin: 10px 0;
  padding: 10px 14px;
}

.legal-doc summary {
  cursor: pointer;
  font-weight: 700;
}

.archive-list a {
  display: block;
  color: #c44c8a;
  font-size: 28px;
  margin: 8px 0;
}

.archive-list a:hover {
  text-decoration: underline;
}

.wp-title {
  font-size: 32px;
  font-weight: 500;
  color: #333;
  margin: 0 0 20px;
}

/* Footer */
.site-footer {
  background: var(--color-footer);
  color: var(--color-footer-link);
}

.footer-main {
  display: grid;
  grid-template-columns: 20% 22% 28% 25%;
  gap: 20px;
  padding: 70px 10px;
  max-width: 1440px;
  margin: 0 auto;
  justify-content: center;
}

.footer-col h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-footer-title);
  margin: 0 0 8px;
}

.footer-rule {
  height: 1px;
  background: #ccc;
  margin: -15px 0 16px;
}

.footer-col a {
  display: block;
  color: var(--color-footer-link);
  font-size: 14px;
  font-weight: 500;
  padding: 3px 0;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #7a7a7a;
  margin: 0;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: 16px;
  font-weight: 500;
}

.footer-phone svg {
  width: 21px;
  height: 21px;
  fill: var(--color-orange);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 233px;
  height: 90px;
  object-fit: contain;
}

.footer-copy {
  background: var(--color-footer-bar);
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 50px 50px 70px;
}

.footer-copy a {
  color: #fff;
}

.footer-social {
  background: var(--color-footer);
  text-align: center;
  padding: 20px 50px;
}

.social-fb {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: var(--color-orange);
  color: #fff;
  align-items: center;
  justify-content: center;
}

.social-fb svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.wa-float {
  position: fixed;
  right: 25px;
  bottom: 10px;
  z-index: 9999;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: 15px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.wa-float svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

@media (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flip-row {
    gap: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 40px 16px;
  }
}

@media (max-width: 767px) {
  .nav-bar.is-sticky {
    position: static;
    box-shadow: none;
  }

  .header-top-inner {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .logo-link {
    width: auto;
  }

  .logo-link img {
    max-width: 68%;
    margin: 0 auto;
    width: auto;
    height: auto;
  }

  .header-contacts {
    flex-direction: column;
    gap: 8px;
    margin: 0 auto;
  }

  .header-contact .icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .header-contact .icon svg {
    width: 16px;
    height: 16px;
  }

  .nav-list {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .hero-slider {
    height: 100px;
  }

  .home-intro {
    flex-direction: column;
  }

  .home-intro-photo,
  .home-intro-copy {
    width: 100%;
  }

  .home-intro-photo img {
    width: 80%;
    margin: 0 auto;
  }

  .home-intro-copy h1 {
    font-size: 36px;
  }

  .banner-orcamento {
    padding: 28px 16px;
  }

  .banner-orcamento h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .flip-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 16px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .service-media {
    flex-direction: column;
  }

  .service-media img {
    width: 100%;
    max-width: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 10px;
    text-align: center;
  }

  .footer-phone {
    justify-content: center;
  }

  .page-title {
    font-size: 28px;
  }

  .map-wrap iframe {
    height: 320px;
  }
}
