html,
body {
  background-color: var(--cb-black);
}

body {
  background-image: url('../images/branding/general-MainBackground.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

/* HEADER */
.SPOT__header {
  position: sticky;
  top: 16px;
  z-index: 1100;
  margin-bottom: -104px;
  padding: 16px 18px 0;
  pointer-events: none;
}

.SPOT__headerBar {
  width: min(100%, 1600px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 42px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.0) 0%, rgba(2, 2, 2, 0.10) 100%);
  box-shadow:
    0 30px 50px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -12px 28px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
}

.SPOT__headerBrand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--cb-white);
  text-decoration: none;
}

.SPOT__headerLogo {
  display: block;
  width: clamp(180px, 18vw, 320px);
  height: auto;
}

.SPOT__headerNav {
  min-width: 0;
}

.SPOT__headerMenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 56px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.SPOT__headerMenu li {
  margin: 0;
}

.SPOT__headerMenu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.SPOT__headerMenu a:hover,
.SPOT__headerMenu .current-menu-item > a,
.SPOT__headerMenu .current_page_item > a,
.SPOT__headerMenu .current-menu-ancestor > a {
  color: #ffffff;
  opacity: 0.84;
}

@media screen and (max-width: 1100px) {
  .SPOT__headerBar {
    gap: 22px;
    padding: 14px 24px;
  }

  .SPOT__headerMenu {
    gap: 22px;
  }
}

@media screen and (max-width: 784px) {
  .SPOT__header {
    top: 10px;
    margin-bottom: -124px;
    padding: 10px 12px 0;
  }

  .SPOT__headerBar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
    padding: 18px 18px 16px;
  }

  .SPOT__headerLogo {
    width: min(250px, 60vw);
  }

  .SPOT__headerNav {
    width: 100%;
    overflow-x: auto;
  }

  .SPOT__headerMenu {
    width: max-content;
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 2px;
  }

  .SPOT__headerMenu a {
    min-height: 38px;
    font-size: 1rem;
    white-space: nowrap;
  }
}
/* HERO */
.SPOT__hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.SPOT__homeHero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 24px 80px;
  background-image: var(--spot-home-hero-bg);
  background-position: center;
  background-size: cover;
  text-align: center;
}

.SPOT__homeHero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 8, 108, 0.3) 0%, rgba(6, 8, 108, 0.86) 100%),
    rgba(0, 0, 0, 0.24);
}

.SPOT__homeHeroContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 1400px);
}

.SPOT__homeHeroContent h1 {
  max-width: min(100%, 1200px);
  line-height: 1.08;
}

.SPOT__homeHeroContent p {
  max-width: 620px;
}

.SPOT__homeHeroButton {
  margin-top: 10px;
}

@media (max-width: 784px) {
  .SPOT__homeHero {
    min-height: 88vh;
    padding: 110px 20px 64px;
    background-position: center top;
  }
}

/* GLOBAL HERO */
.SPOT__globalHero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 130px 24px 76px;
  background-image: var(--spot-global-hero-bg);
  background-position: center;
  background-size: cover;
  text-align: center;
}

.SPOT__globalHero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 8, 108, 0.28) 0%, rgba(6, 8, 108, 0.86) 100%),
    rgba(0, 0, 0, 0.2);
}

.SPOT__globalHeroContent {
  width: min(100% - 48px, 1440px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: end;
}

.SPOT__globalHeroHeading h1 {
  max-width: 760px;
  line-height: 1.08;
  text-align: left;
}

.SPOT__globalHeroDescription {
  display: flex;
  justify-content: flex-start;
}

.SPOT__globalHeroDescription p {
  max-width: 560px;
  margin: 0;
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

@media (max-width: 784px) {
  .SPOT__globalHero {
    min-height: 360px;
    padding: 116px 20px 64px;
  }

  .SPOT__globalHeroContent {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .SPOT__globalHeroDescription {
    justify-content: flex-start;
  }
}

.SPOT__nosotros{
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.SPOT__nosotros__textoContainer{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* HOME CONTACTO */
.SPOT__homeContacto {
  padding: clamp(64px, 8vw, 112px) 24px;
}

.SPOT__homeContactoInner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  margin: 100px auto;
  border-radius: 32px;
}

.SPOT__homeContactoMedia {
  min-height: 100%;
}

.SPOT__homeContactoImage {
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

.SPOT__homeContactoFormWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--cb-gray-100);
}

.SPOT__homeContacto .wpcf7,
.SPOT__homeContacto .wpcf7 form {
  width: 100%;
}

.SPOT__homeContacto .wpcf7 form > p,
.SPOT__homeContacto .wpcf7 .SPOT__homeContactoField > p,
.SPOT__homeContacto .wpcf7 .SPOT__homeContactoPhoneGroup > p,
.SPOT__homeContacto .wpcf7 .SPOT__homeContactoChecks > p {
  margin: 0;
}

.SPOT__homeContacto .wpcf7 br {
  display: none;
}

.SPOT__homeContacto .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.SPOT__homeContactoTitle {
  margin-bottom: 32px;
  color: var(--cb-gray-100);
  font-size: clamp(2.3rem, 1.6rem + 1.8vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  font-family: var(--cb-font-family-h1);
}

.SPOT__homeContactoForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.SPOT__homeContactoField,
.SPOT__homeContactoFieldset {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.SPOT__homeContactoField label,
.SPOT__homeContactoFieldset legend {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.98rem;
  font-weight: 500;
}

.SPOT__homeContactoField input,
.SPOT__homeContactoField textarea,
.SPOT__homeContactoPhoneGroup select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: #ffffff;
  color: #66738f;
  font-size: 1rem;
  font-family: var(--cb-font-sans);
  box-shadow: none;
}

.SPOT__homeContactoField textarea {
  min-height: 132px;
  resize: vertical;
}

.SPOT__homeContactoField input::placeholder,
.SPOT__homeContactoField textarea::placeholder {
  color: #7d8aa7;
  opacity: 1;
}

.SPOT__homeContactoField input:focus,
.SPOT__homeContactoField textarea:focus,
.SPOT__homeContactoPhoneGroup select:focus {
  outline: none;
  border-color: rgba(82, 105, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(82, 105, 255, 0.18);
}

.SPOT__homeContactoPhoneGroup {
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
}

.SPOT__homeContactoPhoneGroup > p {
  display: flex;
  align-items: stretch;
  margin: 0;
  width: 100%;
}

.SPOT__homeContactoPhoneGroup > p > .wpcf7-form-control-wrap:first-child {
  flex: 0 0 94px;
  min-width: 0;
}

.SPOT__homeContactoPhoneGroup > p > .wpcf7-form-control-wrap:last-child {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

.SPOT__homeContactoPhoneGroup select {
  border-right: 0;
  border-radius: 10px 0 0 10px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #74809a 50%),
    linear-gradient(135deg, #74809a 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.SPOT__homeContactoPhoneGroup input {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  border-left: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0 10px 10px 0;
}

.SPOT__homeContactoChecks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.SPOT__homeContactoChecks .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.SPOT__homeContactoChecks .wpcf7-list-item {
  margin: 0;
}

.SPOT__homeContactoChecks .wpcf7-list-item label,
.SPOT__homeContactoConsent .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  cursor: pointer;
}

.SPOT__homeContactoCheck,
.SPOT__homeContactoConsent {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.98rem;
  line-height: 1.45;
  cursor: pointer;
}

.SPOT__homeContactoCheck input,
.SPOT__homeContactoConsent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #4f5fff;
  flex: 0 0 auto;
}

.SPOT__homeContactoConsent {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.SPOT__homeContactoConsent .wpcf7-form-control-wrap,
.SPOT__homeContactoConsent .wpcf7-acceptance,
.SPOT__homeContactoConsent .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
}

.SPOT__homeContactoSubmit.btn {
  margin-top: 8px;
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #4a59f7 0%, #4e63ff 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.SPOT__homeContactoSubmit.btn:hover:not(:disabled) {
  background: linear-gradient(90deg, #4150ea 0%, #465cf6 100%);
}

@media (max-width: 980px) {
  .SPOT__homeContactoInner {
    grid-template-columns: 1fr;
  }

  .SPOT__homeContactoImage {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .SPOT__homeContacto {
    padding: 48px 16px;
  }

  .SPOT__homeContactoInner {
    padding: 20px;
    border-radius: 24px;
  }

  .SPOT__homeContactoTitle {
    margin-bottom: 24px;
  }

  .SPOT__homeContactoChecks {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .SPOT__homeContactoChecks .wpcf7-checkbox {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .SPOT__homeContactoPhoneGroup {
    display: flex;
  }

  .SPOT__homeContactoPhoneGroup > p > .wpcf7-form-control-wrap:first-child {
    flex-basis: 84px;
  }

  .SPOT__homeContactoImage {
    min-height: 320px;
    border-radius: 18px;
  }
}

.SPOT__nosotros__textoContainer-Upper{
  max-width: 700px;
}
.SPOT__nosotros__textoContainer-Down{
  width: 100%;

  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.SPOT__nosotros__textoContainer-Down>p{
  max-width: 500px;
}

/* Servicios */
.SPOT__serviciosAccordionSection {
  padding: 0;
}

.SPOT__serviciosAccordionIntro {
  padding: 0 0 40px;
}

.SPOT__serviciosAccordionIntro h2 {
  margin-top: 0;
  margin-bottom: 18px;
}

.SPOT__serviciosAccordionIntro p {
  max-width: 840px;
  margin: 0;
  opacity: 0.78;
}

.SPOT__serviciosAccordion {
  width: 100%;
}

.SPOT__serviciosAccordionItem {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--cb-white);
}

.SPOT__serviciosAccordionItem:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.SPOT__serviciosAccordionTrigger {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(72px, 26vw) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 34px);
  min-height: 92px;
  padding: 24px clamp(24px, 5vw, 76px);
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.SPOT__serviciosAccordionNumber {
  display: block;
  font-size: var(--cb-font-size-h4);
  line-height: 1;
}

.SPOT__serviciosAccordionTitle {
  display: block;
  font-size: var(--cb-font-size-h5);
  font-weight: 600;
  line-height: 1.18;
  text-transform: uppercase;
}

.SPOT__serviciosAccordionPanel {
  height: 0;
  overflow: hidden;
}

.SPOT__serviciosAccordionItem.is-open .SPOT__serviciosAccordionPanel {
  height: auto;
}

.SPOT__serviciosAccordionContent {
  display: grid;
  grid-template-columns: minmax(72px, 26vw) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 30px);
  padding: 0 clamp(24px, 5vw, 76px) 96px;
}

.SPOT__serviciosAccordionContent p {
  grid-column: 2;
  max-width: 760px;
  margin-top: 0;
  margin-bottom: 18px;
}

.SPOT__serviciosAccordionCta {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  color: var(--cb-white);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  transition: opacity 180ms ease, border-color 180ms ease;
}

.SPOT__serviciosAccordionCta:hover {
  color: var(--cb-white);
  opacity: 0.78;
  border-color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 784px) {
  .SPOT__serviciosAccordionIntro {
    padding: 0 0 28px;
  }

  .SPOT__serviciosAccordionTrigger {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 82px;
    gap: 20px;
    padding: 22px 20px;
  }

  .SPOT__serviciosAccordionContent {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;
    padding: 0 20px 56px;
  }
}


/* WHY Section */
.SPOT__whySection{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.SPOT__whySection--cardsContainer {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 140px;
  overflow: hidden;
}

.SPOT__whySection--cardsContainer__cardGroup {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.SPOT__whySection--cardsContainer__card {
  width: 100%;
  min-height: 270px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  border-radius: 28px;
  perspective: 500px;
  margin-bottom: 36px;
  overflow: hidden;
}

.SPOT__whySection--cardsContainer__card:nth-child(even) {
  flex-direction: row-reverse;
}

.SPOT__whySection--cardsContainer__card--text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  flex: 1 1 52%;
  padding: clamp(32px, 4vw, 48px);
}
.SPOT__whySection--cardsContainer__card--text>p{
  max-width: 650px;
}

.SPOT__whySection--cardsContainer__card--image {
  align-self: stretch;
  flex: 1 1 48%;
  margin: 0;
  min-height: 270px;
  position: relative;
}

.SPOT__whySection--cardsContainer__card--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--cb-white) 0%, rgba(255, 255, 255, 0) 34%);
}

.SPOT__whySection--cardsContainer__card:nth-child(even) .SPOT__whySection--cardsContainer__card--image::before {
  background: linear-gradient(270deg, var(--cb-white) 0%, rgba(255, 255, 255, 0) 34%);
}

.SPOT__whySection--cardsContainer__card--image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 784px) {
  .SPOT__whySection--cardsContainer {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .SPOT__whySection--cardsContainer__card,
  .SPOT__whySection--cardsContainer__card:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .SPOT__whySection--cardsContainer__card--text {
    padding: 32px 24px;
  }

  .SPOT__whySection--cardsContainer__card--image {
    min-height: 220px;
  }

  .SPOT__whySection--cardsContainer__card--image::before,
  .SPOT__whySection--cardsContainer__card:nth-child(even) .SPOT__whySection--cardsContainer__card--image::before {
    background: linear-gradient(180deg, var(--cb-white) 0%, rgba(255, 255, 255, 0) 38%);
  }
}

/* CLIENTES */

.SPOT__clientesGrid--item,
.SPOT__clientesGrid--itemMensaje {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
}

.SPOT__clientesGrid--item::before,
.SPOT__clientesGrid--itemMensaje::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.SPOT__clientesGrid--item::before {
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
}

.SPOT__clientesGrid--itemMensaje::before {
  background-image: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-hover));
}

.SPOT__clientesGrid--item:hover::before,
.SPOT__clientesGrid--itemMensaje:hover::before {
  opacity: 1;
}

.SPOT__clientesGrid--item *,
.SPOT__clientesGrid--itemMensaje * {
  position: relative;
  z-index: 1;
}

.SPOT__clientesGrid--itemMensaje:hover .fc-primary {
  color: var(--color-white);
}
.SPOT__clientesGrid--item__img-white {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.img-default {
  transition: opacity 0.3s ease;
}
.SPOT__clientesGrid--item:hover .SPOT__clientesGrid--item__img-white {
  opacity: 1;
}
.SPOT__clientesGrid--item:hover .img-default {
  opacity: 0;
}
.SPOT__clientesGrid--item__tooltip {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  background: var(--color-white);
  color: var(--color-primary);
  padding: 6px 10px;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  width: 90%;
  text-align: center;
}

.SPOT__clientesGrid--item:hover .SPOT__clientesGrid--item__tooltip {
  transform: translate(-50%, -20px);
  opacity: 1;
}
.SPOT__clientesGrid--item__tooltip span {
  display: inline-block;
  white-space: normal;
  width: 100%;
}

.SPOT__clientesGrid--item__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--color-white) transparent transparent transparent;
}
.SPOT__clientesGrid--item:hover .SPOT__clientesGrid--item__tooltip {
  opacity: 1;
}

@media (max-width: 590px) {
  .SPOT__clientesGrid--item__tooltip {
    display: none;
  }
}


/* CONTACT FORM */

input.SPOT__contactFormControl, textarea.SPOT__contactFormControl {
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
  margin: 0.5rem 0;
  width: 100%;
}
input.SPOT__contactFormControl:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid var(--color-primary);
}
textarea.SPOT__contactFormControl {
  height: 4lh;
}
textarea.SPOT__contactFormControl:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 2px solid var(--color-principal);
}

.SPOT__checkboxInvisible{
  box-sizing: border-box;
  border: 1px solid #000;
  height: 50px;
  padding: 0;
  margin: 0;
}
.SPOT__checkboxInvisible--Label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: transparent;
}

.SPOT__checkboxInvisible input[type="checkbox"],
.SPOT__checkboxInvisible input[type="radio"] {
  display: none;
}
.SPOT__checkboxInvisible input[type="checkbox"]:checked + .SPOT__checkboxInvisible--Label,
.SPOT__checkboxInvisible input[type="radio"]:checked + .SPOT__checkboxInvisible--Label {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.SPOT__checkboxInvisible .SPOT__checkboxInvisible--Label::before,
.SPOT__checkboxInvisible .SPOT__checkboxInvisible--Label::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: all 0.3s ease;
}

.SPOT__checkboxInvisible--Label:hover {
  background-color: var(--color-secondary-hover);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


.SPOT__general--paddingTOP{
  padding-top: 100px;
}

/* AREAS ARCHIVE */
.SPOT__areasArchive {
  padding: clamp(80px, 10vw, 130px) 0;
}

.SPOT__areasArchiveInner {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(88px, 12vw, 150px);
}

.SPOT__areasArchiveItem {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

.SPOT__areasArchiveItem--reverse {
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.SPOT__areasArchiveItem--reverse .SPOT__areasArchiveContent {
  grid-column: 2;
}

.SPOT__areasArchiveItem--reverse .SPOT__areasArchiveMedia {
  grid-column: 1;
  grid-row: 1;
}

.SPOT__areasArchiveContent h2 {
  margin-top: 0;
}

.SPOT__areasArchiveLead {
  max-width: 520px;
  opacity: 0.78;
}

.SPOT__areasSubservices {
  margin-top: 36px;
}

.SPOT__areasSubservice {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.SPOT__areasSubserviceTrigger {
  appearance: none;
  width: 100%;
  min-height: 54px;
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: var(--cb-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
}

.SPOT__areasSubserviceTrigger span {
  font-size: var(--cb-font-size-h6);
}

.SPOT__areasSubserviceIcon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  position: relative;
}

.SPOT__areasSubserviceIcon::before,
.SPOT__areasSubserviceIcon::after {
  content: "";
  position: absolute;
  background-color: var(--cb-white);
  transition: transform 0.2s ease;
}

.SPOT__areasSubserviceIcon::before {
  width: 12px;
  height: 2px;
  top: 8px;
  left: 3px;
}

.SPOT__areasSubserviceIcon::after {
  width: 2px;
  height: 12px;
  top: 3px;
  left: 8px;
}

.SPOT__areasSubservice.is-open .SPOT__areasSubserviceIcon::after {
  transform: scaleY(0);
}

.SPOT__areasSubservicePanel {
  height: 0;
  overflow: hidden;
}

.SPOT__areasSubservicePanel p {
  max-width: 560px;
  margin-top: 0;
  padding-bottom: 20px;
  color: var(--cb-white);
  opacity: 0.72;
}

.SPOT__areasArchiveMedia {
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  position: relative;
  background-color: rgba(255, 255, 255, 0.04);
}

.SPOT__areasArchiveImageMain {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.SPOT__areasArchiveImageMain {
  min-height: 380px;
}

/* AREA SINGLE */
.SPOT__areaSingle {
  padding: clamp(76px, 10vw, 132px) 0;
}

.SPOT__areaSingleInner {
  width: min(100% - 48px, 1340px);
  margin-inline: auto;
}

.SPOT__areaSingleIntro {
  max-width: 940px;
  margin-bottom: clamp(56px, 8vw, 96px);
}

.SPOT__areaSingleIntro h2,
.SPOT__areaSingleSubservicesWrap h2 {
  margin-top: 0;
  margin-bottom: 22px;
}

.SPOT__areaSingleIntro p {
  margin: 0;
  font-size: clamp(1.05rem, 1.3vw, 1.32rem);
  line-height: 1.6;
  opacity: 0.8;
}

.SPOT__areaSingleSubservicesGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.SPOT__areaSingleSubserviceCard {
  min-height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.SPOT__areaSingleSubserviceCard h3 {
  margin: 0 0 14px;
  font-size: clamp(1rem, 1.05vw, 1.3rem);
  line-height: 1.25;
}

.SPOT__areaSingleSubserviceCard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .SPOT__areasArchiveItem,
  .SPOT__areasArchiveItem--reverse {
    grid-template-columns: 1fr;
  }

  .SPOT__areasArchiveItem--reverse .SPOT__areasArchiveContent,
  .SPOT__areasArchiveItem--reverse .SPOT__areasArchiveMedia {
    grid-column: auto;
    grid-row: auto;
  }

  .SPOT__areasArchiveMedia {
    min-height: 320px;
  }

  .SPOT__areasArchiveImageMain {
    min-height: 320px;
  }

  .SPOT__areaSingleSubservicesGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .SPOT__areasArchiveInner {
    width: min(100% - 40px, 1240px);
  }

  .SPOT__areasArchiveMedia,
  .SPOT__areasArchiveImageMain {
    min-height: 260px;
  }

  .SPOT__areaSingleInner {
    width: min(100% - 40px, 1340px);
  }

  .SPOT__areaSingleSubservicesGrid {
    grid-template-columns: 1fr;
  }

  .SPOT__areaSingleSubserviceCard {
    padding: 22px 18px;
  }
}

/* STAFF ARCHIVE */
.SPOT__staffArchive {
  padding: clamp(92px, 11vw, 150px) 0 clamp(90px, 10vw, 130px);
}

.SPOT__staffArchiveInner {
  margin-inline: auto;
}


.SPOT__staffGrid {
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.SPOT__staffCard {
  min-width: 0;
}

.SPOT__staffCardLink {
  display: block;
  color: inherit;
  text-decoration: none;
}

.SPOT__staffCardImage {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 28px;
  background-color: var(--cb-white);
}

.SPOT__staffCardImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 108, 0.02) 0%, rgba(6, 8, 108, 0.4) 100%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.SPOT__staffCardImage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 320ms ease, filter 320ms ease;
}

.SPOT__staffCardImageCta {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background-color: rgba(7, 9, 78, 0.26);
  color: var(--cb-white);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 14px));
  transition: opacity 220ms ease, transform 220ms ease, background-color 220ms ease;
  pointer-events: none;
}

.SPOT__staffCard:hover .SPOT__staffCardImage img,
.SPOT__staffCardLink:hover .SPOT__staffCardImage img {
  transform: scale(1.2);
  filter: saturate(90%);
}

.SPOT__staffCard:hover .SPOT__staffCardImage::after,
.SPOT__staffCardLink:hover .SPOT__staffCardImage::after {
  opacity: 1;
}

.SPOT__staffCard:hover .SPOT__staffCardImageCta,
.SPOT__staffCardLink:hover .SPOT__staffCardImageCta {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.SPOT__staffCard:hover .SPOT__staffCardImageCta,
.SPOT__staffCardLink:hover .SPOT__staffCardImageCta {
  background-color: rgba(7, 9, 78, 0.42);
}

.SPOT__staffCardBody {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-left: 14px;
}

.SPOT__staffCardBody::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 2px;
  height: 56px;
  background-color: var(--cb-white);
}

.SPOT__staffCardBadge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  margin-bottom: 2px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1;
}

.SPOT__staffCardBody h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.25vw, 2rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.SPOT__staffCardBody p {
  max-width: 380px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.1;
}

@media (max-width: 900px) {
  .SPOT__staffArchiveIntro {
    grid-template-columns: 1fr;
  }

  .SPOT__staffGrid.grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .SPOT__staffArchiveInner {
    width: min(100% - 40px, 1440px);
  }

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

/* STAFF SINGLE */
.SPOT__staffSingle {
  padding: clamp(124px, 12vw, 170px) 0 clamp(88px, 10vw, 130px);
}

.SPOT__staffSingleInner {
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.SPOT__staffSingleMedia {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.06);
}

.SPOT__staffSingleMedia img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: none;
}

.SPOT__staffSingleContent {
  min-width: 0;
  padding-top: clamp(12px, 2vw, 36px);
}

.SPOT__staffSingleHeader {
  position: relative;
  margin-bottom: 26px;
}


.SPOT__staffSingleHeader h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.SPOT__staffSingleRole {
  margin: 4px 0 0;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.15;
  opacity: 0.96;
}

.SPOT__staffSingleBody {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.SPOT__staffSingleBody p {
  margin: 0;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.84);
}

.SPOT__staffSingleTags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.SPOT__staffSingleTag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--cb-white);
  font-size: 0.94rem;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.02);
}

@media (max-width: 900px) {
  .SPOT__staffSingleInner {
    grid-template-columns: 1fr;
  }

  .SPOT__staffSingleContent {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .SPOT__staffSingleInner {
    width: min(100% - 40px, 1400px);
  }

  .SPOT__staffSingleHeader {
    padding-left: 14px;
  }

  .SPOT__staffSingleHeader::before {
    top: 8px;
    height: 44px;
  }

  .SPOT__staffSingleTag {
    min-height: 32px;
    font-size: 0.88rem;
  }
}

/* FAQ */
.SPOT__faqSection {
  padding: clamp(72px, 9vw, 120px) 0 clamp(88px, 10vw, 140px);
}

.SPOT__faqInner {
  width: min(100% - 48px, 1380px);
  margin-inline: auto;
}

.SPOT__faqInner > h2 {
  margin: 0 0 clamp(76px, 10vw, 130px);
  text-align: center;
}

.SPOT__faqGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.SPOT__faqItem {
  min-height: 240px;
  padding: 0 clamp(28px, 4vw, 58px) 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.SPOT__faqItem:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  padding-left: 0;
}

.SPOT__faqItem:nth-child(even) {
  padding-right: 0;
}

.SPOT__faqItem:nth-last-child(-n + 2) {
  border-bottom: 0;
  padding-top: 54px;
  padding-bottom: 0;
}

.SPOT__faqItem:nth-child(3),
.SPOT__faqItem:nth-child(4) {
  padding-top: 54px;
}

.SPOT__faqQuestion {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 32px;
}

.SPOT__faqQuestion span {
  color: var(--cb-white);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.1vw, 1.5rem);
  line-height: 1.18;
}

.SPOT__faqQuestion h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.1vw, 1.5rem);
  line-height: 1.18;
}

.SPOT__faqItem p {
  max-width: 610px;
  margin: 0 0 0 52px;
  line-height: 1.25;
}

@media (max-width: 820px) {
  .SPOT__faqGrid {
    grid-template-columns: 1fr;
  }

  .SPOT__faqItem,
  .SPOT__faqItem:nth-child(odd),
  .SPOT__faqItem:nth-child(even),
  .SPOT__faqItem:nth-last-child(-n + 2),
  .SPOT__faqItem:nth-child(3),
  .SPOT__faqItem:nth-child(4) {
    min-height: auto;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .SPOT__faqItem:last-child {
    border-bottom: 0;
  }

  .SPOT__faqItem p {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .SPOT__faqInner {
    width: min(100% - 40px, 1380px);
  }
}

/* FOOTER */
.SPOT__footer {
  padding: clamp(72px, 10vw, 120px) 0 24px;
  background-image: url('../images/branding/footer-background.png');
  background-size: cover;
  background-position: center;
}

/* CONTACT PAGE */
.SPOT__contactHighlights {
  padding: 0 0 clamp(56px, 7vw, 88px);
  background: #01020d;
}

.SPOT__contactHighlightsGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 26px 34px;
  align-items: center;
  padding: 42px 0 54px;
}

.SPOT__contactHighlight h3,
.SPOT__contactSchedule h3 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 1.4vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
}

.SPOT__contactHighlightValue {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  color: var(--cb-white);
  font-size: clamp(1rem, 1.1vw, 1.3rem);
  text-decoration: none;
}

.SPOT__contactHighlightValue:hover {
  color: var(--cb-white);
  opacity: 0.82;
}

.SPOT__contactHighlightDivider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.72);
}

.SPOT__contactSchedule {
  text-align: center;
  padding-bottom: 8px;
}

.SPOT__contactSchedule p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.2rem, 1.5vw, 1.85rem);
  line-height: 1.24;
}

/* NOSOTROS PAGE */
.SPOT__nosotrosSection {
  padding: clamp(56px, 7vw, 96px) 0;
}

.SPOT__nosotrosSectionA {
  padding-top: clamp(72px, 9vw, 120px);
}

.SPOT__nosotrosSectionAGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.SPOT__nosotrosSectionAContent h2 {
  max-width: 560px;
  margin: 0 0 24px;
  line-height: 1.02;
}

.SPOT__nosotrosSectionAContent p {
  max-width: 560px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

.SPOT__nosotrosSectionAButton.btn {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.SPOT__nosotrosSectionAMedia {
  margin: 0;
}

.SPOT__nosotrosSectionAMedia img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
}

.SPOT__nosotrosSectionBGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  grid-template-areas:
    "large top"
    "large bottom";
  grid-template-rows: minmax(96px, auto) minmax(152px, auto);
  gap: 16px 28px;
  align-items: stretch;
}

.SPOT__nosotrosInfoCard {
  border-radius: 28px;
  background: #4a4194;
  padding: clamp(26px, 2.5vw, 34px);
}

.SPOT__nosotrosInfoCard--large {
  grid-area: large;
  min-height: 264px;
}

.SPOT__nosotrosInfoCard--small {
  min-height: 0;
}

.SPOT__nosotrosInfoCard--top {
  grid-area: top;
}

.SPOT__nosotrosInfoCard--bottom {
  grid-area: bottom;
}

.SPOT__nosotrosInfoCard h2 {
  max-width: 280px;
  margin: 0 0 16px;
  line-height: 1.02;
}

.SPOT__nosotrosInfoCard h3 {
  max-width: 340px;
  margin: 0 0 16px;
  line-height: 1.08;
}

.SPOT__nosotrosInfoCard p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
}

.SPOT__nosotrosSectionC {
  background: #2e1579;
}

.SPOT__nosotrosStatsIntro {
  text-align: center;
  margin-bottom: clamp(42px, 6vw, 80px);
}

.SPOT__nosotrosStatsIntro h2 {
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.02;
}

.SPOT__nosotrosStatsGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.SPOT__nosotrosStatItem {
  padding: clamp(36px, 4vw, 48px) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.SPOT__nosotrosStatsGrid .SPOT__nosotrosStatItem:nth-child(-n + 2) {
  border-top: 0;
}

.SPOT__nosotrosStatItem h3 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 2.4vw, 3.8rem);
  line-height: 1;
}

.SPOT__nosotrosStatItem p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .SPOT__contactHighlightsGrid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 38px 0 42px;
  }

  .SPOT__contactHighlightDivider {
    display: none;
  }

  .SPOT__nosotrosSectionAGrid,
  .SPOT__nosotrosSectionBGrid,
  .SPOT__nosotrosStatsGrid {
    grid-template-columns: 1fr;
  }

  .SPOT__nosotrosSectionBGrid {
    grid-template-areas:
      "large"
      "top"
      "bottom";
    grid-template-rows: auto;
    gap: 20px;
  }

  .SPOT__nosotrosSectionAMedia img {
    min-height: 320px;
  }

  .SPOT__nosotrosStatsGrid .SPOT__nosotrosStatItem:nth-child(-n + 2) {
    border-top: 1px solid rgba(255, 255, 255, 0.72);
  }

  .SPOT__nosotrosStatsGrid .SPOT__nosotrosStatItem:first-child {
    border-top: 0;
  }
}

.SPOT__footerInner {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(180px, 1fr));
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}

.SPOT__footerBrand {
  max-width: 420px;
}

.SPOT__footerLogoLink {
  display: inline-flex;
  margin-bottom: 28px;
}

.SPOT__footerLogo {
  display: block;
  width: min(100%, 280px);
  height: auto;
}

.SPOT__footerDescription {
  max-width: 360px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.76);
}

.SPOT__footerSocials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.SPOT__footerSocials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--cb-white);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.SPOT__footerSocials a:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.SPOT__footerColumnTitle {
  font-size: clamp(1.05rem, 1.1vw, 1.15rem);
  font-weight: 600;
  margin: 0 0 22px;
}

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

.SPOT__footerColumn li {
  margin: 0 0 16px;
}

.SPOT__footerColumn a,
.SPOT__footerContactList a,
.SPOT__footerLegal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.SPOT__footerColumn a:hover,
.SPOT__footerContactList a:hover,
.SPOT__footerLegal a:hover {
  color: var(--cb-white);
}

.SPOT__footerContactList {
  margin-bottom: 26px;
}

.SPOT__footerContactList li {
  line-height: 1.5;
}

.SPOT__footerCta {
  display: inline-flex;
  min-width: 0;
}

.SPOT__footerBottom {
  width: min(100% - 48px, 1440px);
  margin: clamp(44px, 6vw, 72px) auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
}

.SPOT__footerCopyright {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}

.SPOT__footerLegal {
  display: flex;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
}

.SPOT__footerLegal a {
  position: relative;
  font-size: 0.82rem;
}

.SPOT__footerLegal a + a::before {
  content: "|";
  position: absolute;
  left: -11px;
  color: rgba(255, 255, 255, 0.34);
}

@media (max-width: 900px) {
  .SPOT__footerInner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .SPOT__footerInner {
    width: min(100% - 40px, 1440px);
    grid-template-columns: 1fr;
  }

  .SPOT__footerBottom {
    width: min(100% - 40px, 1440px);
  }

  .SPOT__footerLegal {
    gap: 8px 16px;
  }

  .SPOT__footerLegal a + a::before {
    left: -10px;
  }
}























@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-ThinItalic.woff') format('woff');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-UltraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-UltraLightItalic.woff') format('woff');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-RegularItalic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-SemiboldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-Extrabold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-ExtraboldItalic.woff') format('woff');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-Heavy.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-HeavyItalic.woff') format('woff');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-Black.woff') format('woff');
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-BlackItalic.woff') format('woff');
  font-weight: 950;
  font-style: italic;
  font-display: swap;
}
