* {
  box-sizing: border-box;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(215, 168, 78, 0.12), transparent 28%),
    radial-gradient(circle at 80% 5%, rgba(164, 26, 26, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(13, 11, 10, 0), rgba(13, 11, 10, 0.85));
  z-index: -1;
}

.text-primary,
.text-primary-DEFAULT {
  color: #d7a84e;
}

.glass-nav,
.glass-panel,
.service-card,
.map-shell,
.floating-photo,
.gallery-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.nav-link {
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.nav-link:hover {
  color: #0d0b0a;
  background: #d7a84e;
}

.mobile-link {
  display: block;
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.whatsapp-button,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 999px;
  min-height: 3.1rem;
  padding: 0.85rem 1.25rem;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-button,
.primary-cta {
  background: linear-gradient(135deg, #d7a84e, #f1cf7a);
  color: #120f0c;
  box-shadow: 0 18px 38px rgba(215, 168, 78, 0.26);
}

.secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.whatsapp-button:hover,
.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: 0.25s ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.menu-open .hamburger {
  background: transparent;
}

.menu-open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.section-pad {
  padding: 6rem 0;
}

.eyebrow {
  display: inline-flex;
  color: #d7a84e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 0.8rem;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.95;
  font-weight: 950;
  text-transform: uppercase;
}

.floating-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 2rem;
}

.floating-photo:first-child {
  transform: rotate(-3deg);
}

.floating-photo:last-child {
  transform: rotate(3deg);
}

.mini-stat {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.mini-stat strong {
  display: block;
  color: #d7a84e;
  font-size: 1.4rem;
  font-weight: 950;
}

.mini-stat span {
  color: rgba(255, 255, 255, 0.68);
}

.proof-grid {
  display: grid;
  gap: 0.65rem;
}

.proof-item {
  border-left: 3px solid #d7a84e;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.95rem 1rem;
}

.proof-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 950;
}

.proof-item span {
  margin-top: 0.25rem;
  display: block;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

.service-bg {
  background:
    linear-gradient(180deg, #0d0b0a, rgba(95, 18, 18, 0.45), #11100f),
    url("img/fachada-por-do-sol.jpeg") center/cover fixed;
  background-blend-mode: multiply;
}

.service-card {
  min-height: 22rem;
  border-radius: 1.75rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 168, 78, 0.48);
  background: linear-gradient(135deg, rgba(215, 168, 78, 0.16), rgba(255, 255, 255, 0.06));
}

.service-card h3 {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 950;
}

.service-card p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.service-points {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.service-points span {
  border-radius: 999px;
  border: 1px solid rgba(215, 168, 78, 0.28);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.52rem 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 19rem;
  gap: 0.65rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.gallery-item figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  padding: 0.55rem 0.85rem;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.contact-bg {
  background:
    linear-gradient(135deg, rgba(13, 11, 10, 0.96), rgba(69, 20, 18, 0.88)),
    url("img/fachada-dia.jpeg") center/cover;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
}

.contact-list div {
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  padding: 1rem;
}

.contact-list span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong {
  margin-top: 0.35rem;
  display: block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  word-break: break-word;
}

.map-shell {
  min-height: 500px;
  overflow: hidden;
  border-radius: 1.75rem;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  filter: grayscale(0.2) contrast(1.08) saturate(0.92);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  width: min(100%, 46rem);
  max-height: min(90vh, 48rem);
  overflow-y: auto;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(22, 18, 16, 0.96), rgba(51, 24, 20, 0.92));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
  padding: 2rem;
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close:hover {
  background: #d7a84e;
  color: #0d0b0a;
}

@media (max-width: 900px) {
  .section-pad {
    padding: 4.5rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 20rem;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .floating-photo {
    position: relative;
    width: 100%;
    height: 22rem;
  }

  .floating-photo:last-child {
    margin-top: -5.5rem;
    margin-left: auto;
    width: 82%;
  }
}

@media (max-width: 560px) {
  .hero-section {
    min-height: 100svh;
  }

  .section-title {
    font-size: 2.35rem;
  }

  .service-card {
    min-height: auto;
  }
}
