:root {
  --primary: #d7112a;
  --primary-dark: #8f0618;
  --royal: #1b4f9c;
  --sun: #f7c922;
  --leaf: #18b96f;
}

html {
  scroll-padding-top: 96px;
}

body {
  font-family: "Poppins", sans-serif;
  background:
    linear-gradient(180deg, #09090b 0%, #111113 44%, #09090b 100%);
}

.brand-mark {
  display: grid;
  height: 2.5rem;
  width: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun), var(--primary) 55%, var(--royal));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(215, 17, 42, 0.32);
}

.glass-nav {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(24, 24, 27, 0.48);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}

.header-hidden {
  transform: translateY(-120%);
}

.nav-link {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  transition: 0.25s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

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

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

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  height: 2px;
  width: 21px;
  border-radius: 999px;
  background: #fff;
  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);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  background: var(--leaf);
  padding: 0.85rem 1.2rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(24, 185, 111, 0.28);
  transition: 0.25s ease;
}

.whatsapp-button:hover,
.primary-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.hero-section {
  isolation: isolate;
}

.glass-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.7rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(18px);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.06));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.mini-stat {
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 1rem;
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-size: 1.35rem;
  color: #fff;
}

.mini-stat span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.hero-trust > div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  backdrop-filter: blur(18px);
}

.hero-trust strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-trust span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.5;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.primary-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 22px 45px rgba(215, 17, 42, 0.3);
}

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

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.18);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
}

.text-primary-DEFAULT {
  color: var(--primary);
}

.trust-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  padding: 1.25rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.trust-card strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.trust-card span {
  display: block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(215, 17, 42, 0.12);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.74);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 24px 70px rgba(24, 24, 27, 0.1);
  backdrop-filter: blur(20px);
  transition: 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(247, 201, 34, 0.22), transparent 34%), radial-gradient(circle at 90% 20%, rgba(27, 79, 156, 0.13), transparent 32%);
  opacity: 0;
  transition: 0.28s ease;
}

.service-card > * {
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 85px rgba(215, 17, 42, 0.16);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  margin-top: 0.5rem;
  font-size: 1.45rem;
  font-weight: 800;
}

.service-card p {
  margin-top: 1rem;
  color: #52525b;
  line-height: 1.75;
}

.service-card span {
  display: inline-flex;
  margin-top: 1.35rem;
  border-radius: 999px;
  background: rgba(215, 17, 42, 0.08);
  padding: 0.55rem 0.85rem;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 48%, var(--royal));
  padding: 4.5rem 0;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.cta-band > div {
  position: relative;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.gallery-card img {
  height: 100%;
  min-height: 280px;
  width: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(9, 9, 11, 0.62);
  padding: 0.75rem 0.9rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.contact-panel {
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.5rem;
  box-shadow: 0 24px 65px rgba(24, 24, 27, 0.11);
  backdrop-filter: blur(18px);
}

.contact-row {
  display: grid;
  gap: 0.2rem;
  border-bottom: 1px solid rgba(24, 24, 27, 0.08);
  padding: 0.9rem 0;
}

.contact-row span {
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row strong {
  color: #18181b;
  font-size: 0.96rem;
}

.contact-highlight {
  margin-top: 1.25rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(24, 185, 111, 0.12), rgba(27, 79, 156, 0.1));
  padding: 1rem;
}

.contact-highlight strong {
  display: block;
  color: #18181b;
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-highlight span {
  display: block;
  margin-top: 0.45rem;
  color: #52525b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.map-frame {
  min-height: 500px;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(24, 24, 27, 0.08);
  box-shadow: 0 24px 65px rgba(24, 24, 27, 0.11);
}

.map-frame iframe {
  display: block;
  height: 100%;
  min-height: 500px;
  width: 100%;
}

.floating-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: grid;
  height: 4rem;
  width: 4rem;
  place-items: center;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  box-shadow: 0 20px 45px rgba(24, 185, 111, 0.36);
  transition: 0.25s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .section-title {
    font-size: 2.2rem;
  }

  .contact-panel {
    padding: 1.15rem;
  }

  .floating-whatsapp {
    height: 3.5rem;
    width: 3.5rem;
  }
}
