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

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

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 40;
  background: #111;
  color: #fff;
  padding: 8px 12px;
}

/* Header */
.site-header {
  position: relative;
  z-index: 30;
  background: #fff;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}

.topbar {
  background: var(--gray-bar);
  color: #fff;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 12px 15px;
}

.topbar-phones,
.topbar-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.topbar-phones li,
.topbar-social li {
  display: flex;
}

.topbar-phones a,
.topbar-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 300;
  padding: 0 15px;
}

.topbar-phones svg,
.topbar-social svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.topbar-social a {
  padding: 0 8px;
}

.topbar-social a:hover svg {
  fill: var(--gold);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 15px 15px;
}

.logo {
  display: block;
  flex: 0 0 auto;
  width: 16.138%;
  min-width: 140px;
  max-width: 194px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-wrap {
  flex: 1 1 auto;
  align-self: stretch;
  display: flex;
  justify-content: center;
}

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

.nav-desktop > li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-desktop > li > a {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  gap: 6px;
  font-family: var(--font-nav);
  font-size: 17px;
  font-weight: 500;
  color: var(--nav);
  padding: 0;
}

.nav-desktop > li > a:hover,
.nav-desktop > li > a.is-active,
.nav-desktop > li:hover > a {
  color: var(--gold);
}

.nav-desktop .caret {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 40;
}

.nav-desktop > li:hover > .nav-dropdown,
.nav-desktop > li:focus-within > .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 500;
  color: var(--nav);
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.nav-dropdown li:last-child a {
  border-bottom: 0;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  color: var(--gold);
}

.btn-locacao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-bar);
  color: #fff;
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 4px;
  flex: 0 0 auto;
}

.btn-locacao:hover {
  background: #f58634;
  color: #fff;
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 0;
  color: #16163f;
  cursor: pointer;
  padding: 8px;
}

.mobile-panel {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.mobile-panel a {
  display: block;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 500;
  color: var(--nav);
  padding: 11px 20px;
  border-bottom: 1px solid #eee;
}

.mobile-panel a:hover,
.mobile-panel a.is-active {
  color: var(--gold);
}

.mobile-panel .sub a {
  padding-left: 32px;
  font-size: 14px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

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

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.is-active .hero-slide-bg.kenburns,
.locacao-band .hero-slide-bg.kenburns {
  animation: kenburns 6s ease-out forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
}

.hero-overlay.dark {
  background: rgba(0, 0, 0, 0.57);
}

.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px;
  max-width: 66%;
  margin: 0 auto;
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.hero-copy p {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  border: 1px solid var(--navy);
}

.btn-navy:hover {
  background: var(--navy);
  color: #fff;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
}

.slider-nav.prev {
  left: 8px;
}

.slider-nav.next {
  right: 8px;
}

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

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 3;
  display: none;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

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

/* About */
.about {
  padding: 25px 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px 40px;
}

.about-copy h1,
.about-copy h2 {
  margin: 0 0 25px;
  color: var(--orange);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.about-copy p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}

.about-copy p strong,
.about-copy p b {
  color: var(--text-dark);
  font-weight: 700;
}

.about-copy ul {
  margin: 0 0 16px;
  padding-left: 28px;
  color: var(--text);
}

.about-copy li {
  margin: 4px 0;
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* Products */
.products-head {
  background: var(--gray-soft);
  text-align: center;
  padding: 5% 15px 0;
}

.products-head h2 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

.products-head p {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  color: var(--navy);
}

.products-grid {
  background: var(--gray-soft);
  padding: 2% 15px 5%;
}

.products-grid .cards,
.products-grid + .products-grid .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.product-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s ease forwards;
}

.product-card:nth-child(2) {
  animation-delay: 0.08s;
}

.product-card:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.product-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 635 / 470;
  object-fit: cover;
  transition: filter 2.5s;
}

.product-card:hover img {
  filter: hue-rotate(30deg);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10%;
  text-align: center;
  flex: 1;
}

.product-card h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #212121;
}

.product-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #000;
  font-weight: 400;
}

.product-card li {
  margin: 0;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #000;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  padding: 10px 15px;
  transition: transform 0.3s;
}

.btn-outline:hover {
  transform: scale(1.1);
}

.btn-outline.light {
  color: #fff;
  border-color: #fff;
  fill: #fff;
}

/* Locacao faixa */
.locacao-band {
  position: relative;
  height: 570px;
  overflow: hidden;
  color: #fff;
}

.locacao-band .hero-slide-bg {
  background-size: cover;
  background-position: center;
}

.locacao-band .hero-copy {
  align-items: flex-start;
  text-align: left;
  max-width: 66%;
  margin: 0;
  padding: 15% 5% 5% 8%;
  height: 100%;
  justify-content: flex-start;
}

.locacao-band .hero-copy p {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 24px;
}

.locacao-band .btn-navy:hover {
  background: #f05323;
  border-color: #f05323;
}

/* CTA icons */
.cta-row {
  background: var(--gray-mid);
  padding: 2% 15px 1%;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--container);
  margin: 0 auto;
}

.cta-item {
  text-align: center;
  color: #fff;
  padding: 2em;
  margin-bottom: 50px;
}

.cta-item svg {
  width: 150px;
  height: 150px;
  fill: #fff;
}

.cta-item h3 {
  margin: -5% 0 16px;
  font-size: 1.5em;
  font-weight: 500;
  color: #fff;
  white-space: pre-line;
}

/* Interior */
.page-banner {
  background: var(--gray-bar);
  color: #fff;
  padding: 10px 20px 10px 10px;
}

.page-banner h1 {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.interior {
  padding: 40px 0 60px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.split-copy h2,
.interior h2.navy {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
}

.split-copy p {
  margin: 0 0 14px;
}

.split-copy p strong {
  color: #333;
}

.checklist {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 22px;
  margin: 6px 0;
  color: var(--text);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #c0392b;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
}

.split-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border: 2px solid #b8b6b5;
  aspect-ratio: 4 / 3;
  background: #f3f3f3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s, filter 0.8s;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
  filter: brightness(0.85);
}

.gallery-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Contact */
.contact-intro {
  text-align: center;
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 24px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.contact-card {
  background: #efefef;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  padding: 28px 16px;
}

.contact-card svg {
  width: 35px;
  height: 35px;
  fill: var(--orange);
}

.contact-card h3 {
  margin: 15px 0 8px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 600;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  display: block;
}

.map-wrap {
  width: 100%;
  height: 320px;
  margin-top: 8px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Locacao page */
.rental-logo {
  display: block;
  width: 176px;
  height: auto;
  margin: 18px auto 24px;
}

.locacao-split .gallery-grid {
  margin-top: 0;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  background: var(--gray-foot);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 25% 26.317% 25% 25%;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px 20px;
}

.footer-logo img {
  display: block;
  width: 43%;
  max-width: 180px;
  height: auto;
}

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

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 4px 0;
  font-size: 15px;
  color: #000;
}

.footer-list svg {
  width: 18px;
  height: 18px;
  fill: var(--red-icon);
  flex: 0 0 auto;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #555;
  color: #fff;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.footer-copy {
  background: var(--gray-bar);
  color: #b4b4b4;
  text-align: center;
  font-size: 14px;
  padding: 18px 15px;
  margin-top: 20px;
}

.footer-copy a {
  color: #b4b4b4;
}

.wa-float {
  position: fixed;
  right: 25px;
  bottom: 10px;
  z-index: 40;
}

.wa-float-btn {
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  padding: 10px;
}

.wa-float-btn:hover {
  background: #036628;
}

.wa-float-btn svg {
  width: 45px;
  height: 45px;
}

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

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

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close {
  top: 12px;
  right: 18px;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .btn-locacao {
    display: none;
  }

  .logo {
    width: auto;
    max-width: 150px;
  }

  .products-grid .cards {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .topbar-inner {
    flex-direction: column;
    padding: 15px;
  }

  .topbar-phones {
    justify-content: center;
  }

  .topbar-phones a {
    font-size: 12px;
    padding: 4px 8px;
  }

  .topbar-social {
    justify-content: center;
    width: 100%;
  }

  .header-main {
    padding: 20px 15px;
  }

  .hero-slider {
    height: 288px;
  }

  .hero-copy {
    max-width: 92%;
  }

  .hero-copy h2 {
    font-size: 22px;
  }

  .hero-copy p {
    font-size: 14px;
    line-height: 1.2;
  }

  .slider-dots {
    display: flex;
  }

  .about-grid,
  .split,
  .cta-grid,
  .footer-grid,
  .products-grid .cards {
    grid-template-columns: 1fr;
  }

  .about-copy h1,
  .about-copy h2 {
    font-size: 26px;
  }

  .products-head {
    padding: 15% 5%;
  }

  .products-head h2 {
    font-size: 24px;
  }

  .products-head p {
    font-size: 18px;
  }

  .product-card h3 {
    font-size: 24px;
    letter-spacing: 0;
  }

  .btn-outline {
    letter-spacing: 2px;
    padding: 15px 30px;
  }

  .locacao-band {
    height: 420px;
  }

  .locacao-band .hero-copy {
    padding: 12% 8%;
    max-width: 100%;
  }

  .locacao-band .hero-copy p {
    font-size: 18px;
  }

  .cta-item {
    margin-bottom: 24px;
    padding: 1em;
  }

  .cta-item h3 {
    font-size: 30px;
  }

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

  .footer-logo img {
    width: 50%;
  }

  .footer-grid {
    text-align: left;
    gap: 24px;
    padding-bottom: 40px;
  }
}
