:root {
  --black: #050505;
  --panel: #090909;
  --panel-2: #0d0d0d;
  --line: rgba(255, 255, 255, 0.14);
  --soft-line: rgba(255, 255, 255, 0.08);
  --white: #fff;
  --muted: #c8c8c8;
  --red: #e50914;
  --red-dark: #960006;
  --serif: "Libre Bodoni", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  grid-template-areas:
    "copy options"
    "copy actions";
  align-items: center;
  gap: 12px 24px;
  width: 100%;
  padding: 16px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 8, 0.94);
  color: var(--white);
  box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(16px);
}

.cookie-copy span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-copy {
  grid-area: copy;
  max-width: 720px;
}

.cookie-copy h2 {
  margin: 6px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.cookie-copy p {
  margin: 0;
  color: #d8d8d8;
  font-size: 12px;
  line-height: 1.55;
}

.cookie-options {
  grid-area: options;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-options label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #f1f1f1;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-options input {
  accent-color: var(--red);
}

.cookie-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions button {
  min-height: 40px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-link {
  padding: 0;
  color: #f2f2f2;
  background: transparent;
}

.cookie-secondary {
  padding: 0 14px;
  color: var(--white);
  background: #242424;
}

.cookie-primary {
  padding: 0 16px;
  color: var(--white);
  background: var(--red);
}

@media (min-width: 641px) {
  .whatsapp-btn {
    bottom: 148px;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    right: 16px;
    left: auto;
    bottom: 82px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "options"
      "actions";
    gap: 16px;
    width: min(520px, calc(100vw - 32px));
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  }

  .cookie-options {
    justify-content: flex-start;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions button {
    flex: 1 1 100%;
  }
}

.services-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 180px 1fr 150px;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 26px 44px 16px;
  background: #000;
}

.brand img {
  display: block;
  width: 120px;
  height: 54px;
  object-fit: contain;
}

.services-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.services-nav a,
.nav-dropdown-toggle {
  position: relative;
  opacity: 0.92;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.services-nav a::after,
.nav-dropdown-toggle::after {
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 2px;
  background: var(--red);
  content: "";
}

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

.services-nav a.is-active::after,
.nav-dropdown-toggle.is-active::after {
  width: 100%;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 20;
  display: none;
  min-width: 220px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.97);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 14px 16px;
  color: var(--white);
  line-height: 1.35;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: var(--red);
}

.nav-dropdown-menu a::after {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn span {
  margin-left: 18px;
  font-size: 21px;
}

.btn-red {
  background: var(--red);
  box-shadow: 0 18px 36px rgba(229, 9, 20, 0.22);
}

.menu-ring {
  display: none;
  align-content: center;
  gap: 4px;
  width: 34px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-ring span {
  display: block;
  width: 31px;
  height: 2px;
  background: var(--white);
}

.services-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 470px;
  padding: 118px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--soft-line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("../img/servicio.jpeg") right center / cover no-repeat;
  filter: none;
  animation: services-hero-zoom 24s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(229, 9, 20, 0.22), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 37%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.45) 100%);
}

@keyframes services-hero-zoom {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media {
    animation: none;
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 90px));
  margin-left: 56px;
}

.hero-copy > span,
.filter-group h2,
.material-controls h2 {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0 22px;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.hero-copy h1 strong {
  color: var(--red);
  font: inherit;
}

.hero-copy p {
  max-width: 440px;
  margin: 0 0 35px;
  color: #ededed;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.filters-panel {
  padding: 26px 56px 0;
  border-bottom: 1px solid var(--soft-line);
  background: var(--black);
}

.filter-group h2,
.material-controls h2 {
  margin: 0 0 13px;
  color: var(--white);
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 9px;
}

.service-tabs button,
.event-picker-trigger,
.sort-control select {
  border: 1px solid var(--line);
  background: #080808;
  color: var(--white);
}

.service-tabs button {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  min-height: 82px;
  padding: 10px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-tabs button.is-active,
.event-picker-trigger.is-active {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.16), rgba(229, 9, 20, 0.04));
  box-shadow: inset 0 0 0 1px rgba(229, 9, 20, 0.28);
}

.service-tabs svg,
.event-picker-trigger svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.material-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 27px;
  padding: 20px 0;
  border-top: 1px solid var(--soft-line);
}

.material-controls {
  display: flex;
  align-items: center;
  gap: 17px;
  flex: 1;
}

.material-controls h2 {
  margin: 0 10px 0 0;
}

.event-picker-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(430px, 100%);
  min-height: 44px;
  padding: 0 18px 0 20px;
  cursor: pointer;
  font-size: 10px;
  line-height: 1.15;
  text-align: left;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.event-picker-trigger:hover {
  border-color: rgba(229, 9, 20, 0.78);
  transform: translateY(-1px);
}

.event-picker-trigger span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-picker-trigger svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.event-picker-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.sort-control select {
  min-width: 142px;
  min-height: 40px;
  padding: 0 17px;
  color: #d8d8d8;
  outline: none;
}

.event-picker-wrap {
  position: relative;
  width: min(430px, 100%);
}

.event-filter-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  width: 100%;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(229, 9, 20, 0.52);
  border-radius: 8px;
  background: linear-gradient(180deg, #101010 0%, #070707 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.event-filter-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.event-filter-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  background: #080808;
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.event-filter-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 16px 0;
  padding: 0 16px;
  min-height: 46px;
  border: 1px solid var(--line);
  background: #050505;
}

.event-filter-search svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-filter-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-filter-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  overflow: auto;
}

.event-option {
  display: grid;
  gap: 7px;
  min-height: 74px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #080808;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.event-option:hover,
.event-option.is-active {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.18), rgba(229, 9, 20, 0.04));
  transform: translateY(-2px);
}

.event-option span {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.event-option small {
  color: #a9a9a9;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-filter-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 56px 12px;
}

.media-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 328px;
  min-height: 306px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #080808;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.media-card.is-video,
.media-card.is-image {
  cursor: pointer;
}

.media-card.is-video:focus-visible,
.media-card.is-image:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.media-shell {
  position: relative;
  flex: 0 0 205px;
  width: 100%;
  height: 205px;
  overflow: hidden;
  background: #000;
}

.media-shell.media-missing img {
  visibility: hidden;
}

.media-shell.media-missing::after {
  content: "Imagen no disponible";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.75rem;
  text-align: center;
  padding: 0 10px;
}

.media-shell img,
.media-shell video,
.media-shell iframe {
  display: block;
  width: 100%;
  height: 205px;
  border: 0;
  background: #000;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.05);
  transition: transform 0.35s ease;
}

.media-card.is-video .gallery-video {
  width: 100%;
  height: 205px;
}

.media-card.is-video iframe.gallery-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  aspect-ratio: 9 / 16;
  transform: translate(-50%, -50%);
}

.media-card.is-video iframe {
  pointer-events: none;
}

.media-card video:fullscreen {
  width: 100vw;
  height: 100vh;
  background: #000;
  object-fit: contain;
}

.media-card video:fullscreen::backdrop {
  background: #000;
}

.media-card video:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  background: #000;
  object-fit: contain;
}

.media-card video:-moz-full-screen {
  width: 100vw;
  height: 100vh;
  background: #000;
  object-fit: contain;
}

.media-card:hover .media-shell img,
.media-card:hover .media-shell video,
.media-card:hover .media-shell iframe {
  transform: scale(1.045);
}

.media-card:hover .media-shell video {
  transform: none;
}

.media-card:hover .media-shell iframe {
  transform: translate(-50%, -50%) scale(1.045);
}

.media-card::after {
  position: absolute;
  inset: 130px 0 67px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
  content: "";
  pointer-events: none;
}

.media-card.is-video::after {
  display: none;
}

.media-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
}

.media-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.duration {
  position: absolute;
  right: 14px;
  bottom: 76px;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
}

.media-copy {
  flex: 1;
  padding: 13px 14px 15px;
}

.media-copy h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.media-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.media-copy .media-description {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  color: #eeeeee;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.is-video-modal-open {
  overflow: hidden;
}

.service-video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(12px);
  transition: opacity 0.2s ease;
}

.service-video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-video-close {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.88);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.service-video-dialog {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(420px, calc(100vw - 32px));
  max-height: calc(100vh - 36px);
  padding: 16px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080808;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.service-video-frame {
  width: min(360px, calc(100vw - 68px), calc((100vh - 230px) * 0.5625));
  min-width: min(240px, calc(100vw - 68px));
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
}

.service-video-frame iframe,
.service-video-frame video,
.service-video-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}

.service-video-dialog.is-image-modal {
  width: min(920px, calc(100vw - 32px));
}

.service-video-dialog.is-image-modal .service-video-frame {
  width: min(820px, calc(100vw - 68px));
  aspect-ratio: 4 / 3;
}

.service-video-copy {
  width: 100%;
}

.service-video-copy span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-video-copy h2 {
  margin: 6px 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.service-video-copy p {
  margin: 0;
  color: #ededed;
  font-size: 12px;
  line-height: 1.55;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.legal-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-modal-card {
  position: relative;
  width: min(780px, 100%);
  max-height: 86svh;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #f7f7f5;
  color: #090909;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal.is-open .legal-modal-card {
  transform: translateY(0) scale(1);
}

.legal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #050505;
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.legal-content {
  display: none;
  max-height: 86svh;
  overflow-y: auto;
  padding: 48px 54px 52px;
}

.legal-content.is-active {
  display: block;
}

.legal-content > span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content h2 {
  margin: 0 48px 24px 0;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.legal-content h3 {
  margin: 26px 0 10px;
  color: #050505;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: #222;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.empty-gallery {
  grid-column: 1 / -1;
  margin: 18px 0 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  padding: 5px 0 34px;
}

.pager button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: #090909;
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.pager button.is-active {
  border-color: var(--red);
  background: var(--red);
}

.pager button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.services-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 188px;
  padding: 34px 56px;
  overflow: hidden;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.42)),
    url("https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?auto=format&fit=crop&w=1500&q=85") center / cover no-repeat;
}

.services-cta h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.03;
  text-transform: uppercase;
}

.services-cta h2 span {
  color: var(--red);
}

.services-cta p {
  margin: 0;
  font-size: 16px;
  color: #f0f0f0;
}

.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  place-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 18px 42px rgba(229, 9, 20, 0.28);
  animation: whatsapp-pulse 1.9s ease-in-out infinite;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
  background: var(--red-dark);
  transform: translateY(-3px) scale(1.04);
  animation-play-state: paused;
}

.whatsapp-btn svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-btn span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(229, 9, 20, 0.28), 0 0 0 0 rgba(229, 9, 20, 0.44);
  }

  50% {
    box-shadow: 0 18px 42px rgba(229, 9, 20, 0.28), 0 0 0 14px rgba(229, 9, 20, 0);
  }
}

.services-footer {
  padding: 31px 56px 26px;
  background: #050505;
}

.footer-top {
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;
  gap: 30px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--soft-line);
}

.footer-top nav {
  display: flex;
  justify-content: center;
  gap: 45px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-top nav a,
.footer-bottom a,
.footer-bottom span {
  white-space: nowrap;
}

.footer-top nav .is-active {
  color: var(--red);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.footer-social svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:nth-child(2) svg,
.footer-social a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 40px;
  padding-top: 24px;
  color: #888;
  font-size: 10px;
}

@media (max-width: 1100px) {
  .services-header {
    grid-template-columns: 145px 1fr 128px;
    padding-inline: 28px;
  }

  .services-nav,
  .footer-top nav {
    gap: 22px;
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-inline: 34px;
  }

  .filters-panel,
  .services-cta,
  .services-footer {
    padding-inline: 34px;
  }

  .whatsapp-btn {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 860px) {
  .services-header {
    grid-template-columns: 1fr auto;
    padding: 18px 22px;
    background: #000;
  }

  .services-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px 22px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.97);
  }

  .menu-ring {
    display: grid;
    justify-self: end;
    justify-items: center;
    width: 30px;
    height: 24px;
    gap: 4px;
  }

  .menu-ring span {
    width: 28px;
  }

  .services-nav.is-open {
    display: flex;
  }

  .services-nav a {
    padding: 13px 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 13px 0;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    transform: none;
    border: 0;
    border-left: 2px solid var(--red);
    margin: 0 0 8px 0;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    padding: 12px 0 12px 16px;
    white-space: normal;
  }

  .services-nav a::after,
  .nav-dropdown-toggle::after,
  .header-cta {
    display: none;
  }

  .hero-copy {
    width: min(100% - 44px, 520px);
    margin-left: 24px;
  }

  .services-hero {
    min-height: 500px;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
    padding-bottom: 4px;
  }

  .service-tabs button {
    min-height: 76px;
    padding: 7px 4px;
    gap: 6px;
    font-size: 6.5px;
    line-height: 1.15;
    word-break: normal;
  }

  .service-tabs svg {
    width: 22px;
    height: 22px;
  }

  .material-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .material-controls {
    gap: 8px;
    width: 100%;
  }

  .material-controls h2 {
    margin: 0 0 2px;
  }

  .event-picker-trigger {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

  .sort-control {
    width: 100%;
    justify-content: space-between;
  }

  .event-picker-wrap {
    width: 100%;
  }

  .event-filter-dropdown {
    max-height: 60vh;
  }

  .event-filter-list {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 22px;
  }

  .filters-panel,
  .services-cta,
  .services-footer {
    padding-inline: 22px;
  }

  .services-cta {
    grid-template-columns: 1fr;
  }

  .whatsapp-btn {
    width: 62px;
    height: 62px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top nav,
  .footer-social {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-top nav,
  .footer-bottom {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .footer-top nav::-webkit-scrollbar,
  .footer-bottom::-webkit-scrollbar {
    display: none;
  }

  .footer-top nav {
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 4px;
  }

  .footer-bottom {
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 4px;
  }

  .footer-bottom a {
    flex: 0 0 auto;
  }

  .footer-bottom span {
    flex: 0 0 100%;
  }
}

@media (max-width: 560px) {
  .services-header {
    padding: 14px 22px;
  }

  .brand img {
    width: 88px;
    height: 44px;
  }

  .menu-ring {
    width: 28px;
    height: 22px;
    gap: 3px;
  }

  .menu-ring span {
    width: 26px;
    height: 2px;
  }

  .services-hero {
    min-height: 100svh;
    padding: 78px 0 34px;
  }

  .hero-media {
    opacity: 0.35;
  }

  .hero-shade {
    background:
      linear-gradient(rgba(229, 9, 20, 0.045), rgba(229, 9, 20, 0.045)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 44%, rgba(0, 0, 0, 0.5) 100%);
  }

  .service-tabs {
    gap: 3px;
  }

  .service-tabs button {
    min-height: 66px;
    padding: 6px 2px;
    font-size: 5.5px;
  }

  .service-tabs svg {
    width: 19px;
    height: 19px;
  }

  .hero-copy h1 {
    margin: 12px 0 16px;
    font-size: clamp(27px, 8.6vw, 36px);
    line-height: 1.02;
  }

  .hero-copy > span {
    font-size: 9px;
  }

  .hero-copy p {
    max-width: 292px;
    margin-bottom: 24px;
    font-size: 10px;
    line-height: 1.62;
  }

  .hero-copy .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 8px;
  }

  .hero-copy .btn span {
    margin-left: 16px;
    font-size: 17px;
  }

  .whatsapp-btn {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .media-shell,
  .media-shell img,
  .media-shell video,
  .media-shell iframe,
  .media-card.is-video .gallery-video {
    flex-basis: 138px;
    height: 138px;
  }

  .media-card {
    height: 275px;
    min-height: 275px;
  }

  .media-copy {
    padding: 11px 10px 13px;
  }

  .media-copy h3 {
    font-size: 12px;
    line-height: 1.25;
  }

  .media-copy p {
    font-size: 9px;
  }

  .media-copy .media-description {
    font-size: 8.5px;
    line-height: 1.45;
  }

  .media-icon {
    width: 30px;
    height: 30px;
  }

  .services-cta h2 {
    font-size: 31px;
  }
}
