.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; }

.site-header {
  border-bottom: 1px solid #000;
  background: #fff;
  position: relative;
  z-index: 40;
}
.header-wa-mobile {
  display: none;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 4%;
  min-height: var(--header-h);
}
.logo img {
  display: block;
  width: 168px;
  height: auto;
}
.nav-desktop {
  flex: 1;
}
.nav-desktop > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop a {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #111;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-desktop a:hover::after,
.nav-desktop a.is-current::after,
.nav-desktop a[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav-desktop .caret {
  width: 9px;
  height: 9px;
}
.has-sub {
  position: relative;
}
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}
.has-sub:hover > .sub-menu,
.has-sub:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.sub-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  white-space: nowrap;
}
.sub-menu a::after { display: none; }
.sub-menu a:hover { background: #f6f6f6; }
.header-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  white-space: nowrap;
  color: #111;
}
.header-wa svg { width: 16px; height: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.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 {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 8px 4% 24px;
}
.mobile-panel ul { list-style: none; margin: 0; padding: 0; }
.mobile-panel a,
.mobile-panel summary {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  cursor: pointer;
}
.mobile-panel details ul { padding-left: 14px; }

.hero-slider {
  position: relative;
  height: 820px;
  overflow: hidden;
  background: #111;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero-slide.is-active .bg { animation-play-state: running; }
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-slide .copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 10%;
  width: 100%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.hero-slide h2 {
  margin: 0 0 14px;
  font-family: var(--font);
  font-weight: 300;
  font-size: 32px;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero-slide p {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: 300;
  font-size: 25px;
  line-height: 1em;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 820px;
}
.hero-nav,
.hero-dots {
  position: absolute;
  z-index: 3;
}
.hero-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.hero-nav.prev { left: 16px; }
.hero-nav.next { right: 16px; }
.hero-nav svg { width: 22px; height: 22px; }
.hero-dots {
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}
.hero-dots button.is-active { background: #fff; }

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  align-items: center;
  width: min(1125px, 92%);
  margin: 0 auto;
  padding: 110px 0 80px;
  background: #fff;
}
.intro-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.intro-rule {
  display: block;
  width: 168px;
  height: 2px;
  background: #111;
}
.intro-title {
  margin: 0;
  font-family: var(--font);
  font-weight: 200;
  font-size: 50px;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
}
.intro-right {
  align-self: start;
}
.intro-right p {
  margin: 0;
  padding: 18px 0 18px 25px;
  border-top: 1px solid #111;
  font-family: var(--font);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.3em;
}

.ambientes {
  background: var(--cream);
  padding: 0 4% 60px;
  text-align: center;
}
.ambientes h2 {
  margin: -40px 0 0;
  font-family: var(--font);
  font-weight: 300;
  font-size: 105px;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0;
}
.ambientes .kicker {
  margin: 6px 0 0;
  font-family: var(--font);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0;
}
.flip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 28px 22px;
  max-width: 1240px;
  margin: 100px auto 0;
}
.flip {
  position: relative;
  width: 280px;
  height: 280px;
  overflow: hidden;
  display: block;
}
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
}
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flip-back {
  opacity: 0;
  background: var(--cream);
  border: 2px solid #141414;
  color: #141414;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 28px 24px;
  text-align: start;
  transition: opacity 0.6s ease;
  z-index: 2;
}
.flip:hover .flip-back,
.flip:focus-within .flip-back {
  opacity: 1;
}
.flip-back h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #141414;
}
.flip-back p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
  color: #141414;
}
.flip-back .btn-ghost {
  border: 2px solid #141414;
  color: #141414;
  align-self: center;
  background: transparent;
}
.btn-ghost,
.btn-solid,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  cursor: pointer;
}
.btn-solid {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  width: 100%;
}
.btn-outline:hover { background: #111; color: #fff; }
.orcamento-wrap {
  padding: 42px 0 20px;
  text-align: center;
}

.help {
  padding: 70px 6% 80px;
  text-align: center;
  background: #fff;
  margin-top: 5%;
}
.help h2 {
  margin: 0 0 50px;
  font-family: var(--font-alt);
  font-weight: 300;
  font-size: 38px;
  line-height: 1.4em;
  letter-spacing: -2px;
  text-transform: uppercase;
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 5%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.help-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.help-item .icon {
  display: block;
  width: 45px;
  height: 45px;
  color: var(--red);
  margin: 0 0 8px;
}
.help-item .icon svg {
  width: 45px;
  height: 45px;
  display: block;
}
.help-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-alt);
}
.help-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  max-width: 240px;
}

.news-block {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 730px;
  overflow: hidden;
}
.news-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 8% 60px 12%;
  background: #fff;
}
.news-copy h2 {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  font-size: 77px;
  line-height: 1em;
  text-transform: uppercase;
}
.news-copy .line {
  width: 90px;
  height: 2px;
  background: #111;
  margin: 22px 0;
}
.news-copy p {
  max-width: 360px;
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.6;
}
.news-copy input[type="email"] {
  width: 100%;
  max-width: 420px;
  height: 46px;
  border: 1px solid #333;
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 10px;
}
.photo-parallax {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.photo-parallax .parallax-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.photo-parallax .parallax-layer.is-active { opacity: 1; }
.news-photo { min-height: 730px; }
.renovar {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 640px;
  overflow: hidden;
}
.renovar-photo { min-height: 640px; }
.renovar-photo .parallax-layer { background-position: bottom left; }
.renovar-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 10% 60px 8%;
}
.renovar-copy .line {
  width: 90px;
  height: 2px;
  background: #111;
  margin-bottom: 22px;
}
.renovar-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-alt);
  font-weight: 300;
  font-size: 38px;
  line-height: 1.4em;
  letter-spacing: -2px;
  text-transform: uppercase;
}
.renovar-copy p {
  max-width: 420px;
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.6;
}

.page-title {
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 48px 0 18px;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-grid {
  width: min(92%, 1200px);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--red);
  border-radius: 15px;
  background: var(--card);
  padding: 15px;
  text-align: center;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
  display: block;
}
.product-card h2 {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.15em;
}
.product-hero {
  text-align: center;
  padding: 36px 16px 70px;
}
.product-hero h1 {
  margin: 0 auto 18px;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 900px;
}
.product-hero .rule {
  width: min(70%, 720px);
  height: 2px;
  background: #e7c9c9;
  margin: 0 auto 28px;
}
.product-hero img {
  max-width: 640px;
  width: 70%;
  display: block;
  margin: 0 auto;
}

.split-page {
  width: min(92%, 1140px);
  margin: 10px auto 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.split-page .lead {
  margin: 0;
  padding-left: 16px;
  border-left: 4px solid var(--red);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.45;
}
.split-page p { font-size: 15px; line-height: 1.7; }
.duo-photos {
  width: min(92%, 1140px);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.duo-photos img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.contact-lead {
  text-align: center;
  margin: 8px 0 28px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}
.contact-lead span {
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
}
.contact-cards {
  width: min(92%, 1100px);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-card {
  border: 1px solid var(--red);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--red);
  text-align: center;
  padding: 18px;
}
.contact-card svg { width: 28px; height: 28px; }
.contact-card small { display: block; font-size: 11px; letter-spacing: 0.4px; }
.map-wrap {
  width: min(92%, 1200px);
  margin: 0 auto 50px;
}
.map-wrap iframe {
  width: 100%;
  height: 720px;
  min-height: 720px;
  border: 0;
  display: block;
}
.legal {
  width: min(92%, 900px);
  margin: 0 auto 70px;
  font-size: 15px;
  line-height: 1.7;
}
.legal h2 { font-size: 26px; font-weight: 600; margin: 28px 0 10px; }

.site-footer {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 36px 4%;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 24px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-logo img { width: 260px; height: auto; }
.footer-col h5 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 500;
}
.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 14px;
  line-height: 1.55;
  color: #444;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 0 0 10px; }
.footer-col li a { display: flex; gap: 8px; align-items: flex-start; }
.footer-col svg { width: 14px; height: 14px; margin-top: 3px; flex: 0 0 auto; color: #111; }
.social { display: flex; gap: 14px; color: var(--red); }
.social a { color: var(--red); }
.social svg { width: 22px; height: 22px; }

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.form-feedback { min-height: 1.2em; font-size: 13px; margin-top: 8px; }

@media (max-width: 1024px) {
  .hero-slide h2 { font-size: 28px; }
  .hero-slide p { font-size: 22px; }
  .intro-title { font-size: 46px; }
  .ambientes h2 { font-size: 70px; margin-top: -35px; }
  .ambientes .kicker { font-size: 14px; }
  .flip-grid { gap: 50px; }
  .flip { width: calc(50% - 25px); max-width: 280px; }
  .help-grid { grid-template-columns: 1fr 1fr; }
  .help h2 { font-size: 30px; letter-spacing: 0; }
  .news-block { grid-template-columns: 47% 53%; min-height: 525px; }
  .news-photo, .renovar-photo { min-height: 525px; }
  .news-copy h2 { font-size: 70px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card h2 { font-size: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .map-wrap iframe { height: 520px; min-height: 520px; }
}

@media (max-width: 767px) {
  .header-wa-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 0;
    font-size: 13px;
  }
  .header-inner { min-height: 72px; }
  .nav-desktop, .header-wa { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .hero-slider { height: 70vh; min-height: 420px; }
  .hero-slide .copy { padding: 0 20px; }
  .hero-slide h2 { font-size: 24px; }
  .hero-slide p { font-size: 16px; letter-spacing: 0; }
  .intro { grid-template-columns: 1fr; padding: 50px 8%; width: 100%; gap: 28px; }
  .intro-title { font-size: 32px; }
  .intro-right p { font-size: 20px; }
  .ambientes h2 { font-size: 46px; margin-top: -25px; }
  .ambientes .kicker { font-size: 13px; }
  .flip-grid { gap: 28px; }
  .flip { width: 100%; max-width: none; height: 240px; }
  .help-grid, .contact-cards, .split-page, .duo-photos, .news-block, .renovar {
    grid-template-columns: 1fr;
  }
  .help h2 { font-size: 22px; letter-spacing: 0; }
  .photo-parallax .parallax-layer {
    top: 0;
    height: 100%;
    background-attachment: scroll;
  }
  .news-photo, .renovar-photo { min-height: 340px; }
  .news-block, .renovar { min-height: 0; }
  .news-copy { padding: 40px 6%; }
  .news-copy h2 { font-size: 46px; }
  .map-wrap iframe { height: 420px; min-height: 420px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card h2 { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-col li a { justify-content: center; }
  .social { justify-content: center; }
  .page-title { font-size: 26px; }
}
