@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Prata&display=swap');

/* =========================================================
   BASE
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: #fff;
  text-decoration: none;
}


/* =========================================================
   HEADER PARK 110
   ========================================================= */

.site-header {
  background: linear-gradient(
    180deg,
    rgba(24, 29, 36, 0.70) 0%,
    rgba(24, 29, 36, 0.50) 22%,
    rgba(24, 29, 36, 0.28) 45%,
    rgba(24, 29, 36, 0.10) 68%,
    rgba(24, 29, 36, 0.03) 82%,
    rgba(24, 29, 36, 0) 100%
  );

  padding: 16px 40px 120px;

  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 9999 !important;

  /* El degradado no bloquea el iframe */
  pointer-events: none !important;
}

.site-header .header-container {
  position: relative;
  width: 100%;
  min-height: 100px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: auto;

  /* Solo los controles pueden recibir clic */
  pointer-events: auto;
}

.site-header .header-left,
.site-header .header-center,
.site-header .header-right {
  display: flex;
  align-items: center;
}

.site-header .header-left {
  gap: 10px;
}

.site-header .header-right {
  gap: 0;
}


/* =========================================================
   BOTÓN HAMBURGUESA
   ========================================================= */

.site-header button#menu-btn.menu-trigger {
  width: auto;
  height: 40px;
  padding: 0;
  margin: 0;

  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

   position: relative;
  overflow: hidden;

  transition:
    width 0.45s cubic-bezier(.16, 1, .3, 1),
    background 0.45s ease,
    border 0.45s ease,
    transform 0.3s ease;
}

.site-header button#menu-btn.menu-trigger::before,
.site-header button#menu-btn.menu-trigger::after {
  content: "";

  position: absolute;
  left: 50%;
  top: 50%;

  width: 22px;
  height: 2px;

  border-radius: 10px;

  background: #DCAF6C;

  opacity: 0;

  transform-origin: center;

  transition:
    transform 0.55s cubic-bezier(.16, 1, .3, 1),
    opacity 0.25s ease;
}

.site-header.menu-open button#menu-btn.menu-trigger {
  width: 64px;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.95);
}

.site-header.menu-open .menu-icon {
  opacity: 0;
  transform: scale(0.7) rotate(45deg);
}

.site-header.menu-open button#menu-btn.menu-trigger::before {
  opacity: 1;

  transform:
    translate(-50%, -50%)
    rotate(45deg);
}

.site-header.menu-open button#menu-btn.menu-trigger::after {
  opacity: 1;

  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}

.site-header .menu-icon {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
}

.site-header button#menu-btn.menu-trigger:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}


/* =========================================================
   BOTONES APARTAMENTOS + VIRTUAL TOUR
   ========================================================= */

.site-header .btn-apto,
.site-header .btn-360 {
  height: 40px;
  padding: 0 20px;

  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;

  background: transparent;
  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.site-header .btn-apto:hover,
.site-header .btn-360:hover {
  background: #fff;
  color: #181D24;
  font-weight: 600;
}


/* =========================================================
   DRAWER VIRTUAL TOUR
   ========================================================= */

.site-header .tour-drawer {
  position: fixed;
  top: 0;
  right: 0;

  /* altura real disponible del navegador */
  height: 100dvh;

  /* proporción 10 alto : 4 ancho */
  width: min(50dvh, 100vw);

  background: #181D24;

  z-index: 20002;

  overflow: hidden;

  transform: translateX(101%);
  visibility: hidden;
  pointer-events: none;

  transition:
    transform 0.85s cubic-bezier(.76, 0, .24, 1),
    visibility 0s linear 0.85s;
}


/* Abierto */

.site-header .tour-drawer.active {
  transform: translateX(0);

  visibility: visible;
  pointer-events: auto;

  transition:
    transform 0.85s cubic-bezier(.76, 0, .24, 1),
    visibility 0s linear 0s;
}


/* =========================================================
   IMAGEN SUPERIOR
   ========================================================= */

.tour-drawer-hero {
  position: relative;

  width: 100%;
  height: 25%;

  overflow: hidden;
}

.tour-drawer-hero img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}

.tour-drawer-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(24, 29, 36, 0.05) 35%,
    rgba(24, 29, 36, 0.75) 100%
  );

  pointer-events: none;
}

.tour-drawer-title {
  position: absolute;

  left: clamp(20px, 2.5dvh, 40px);
  bottom: clamp(18px, 2.5dvh, 26px);

  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(25px, 1.7vw, 32px);
  font-weight: 300;

  line-height: 1;

  text-transform: uppercase;
}


/* =========================================================
   LISTA DE TOURS
   ========================================================= */

.tour-drawer-list {
  height: 75%;

  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.tour-drawer-item {
  position: relative;

  display: flex;
  align-items: center;

  padding:
    clamp(16px, 6dvh, 40px)
    clamp(20px, 6dvh, 40px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.7);

  background: #181D24;
}

.tour-drawer-item:last-child {
  border-bottom: 0;
}


/* Contenido */

.tour-drawer-info {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 8px;
}

.tour-drawer-info h3 {
  margin: 0;

  color: #fff;

  font-family: 'Montserrat', sans-serif;
   font-size: clamp(11px, 2dvh, 24px);
  font-weight: 300;

  line-height: 1.1;
}

.tour-drawer-info p {
  margin: 0 0 4px;

  color: rgba(255, 255, 255, 0.92);

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 0.95vw, 17px);
  font-weight: 300;

  line-height: 1.25;
}


/* Botón */

.tour-drawer-button {
  min-width: clamp(90px, 13dvh, 112px);
  height: clamp(30px, 4.2dvh, 40px);

  padding: 0 clamp(14px, 2dvh, 20px);

  font-size: clamp(9px, 1.35dvh, 13px);

  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;

  color: #DCAF6C;

  font-family: 'Montserrat', sans-serif;
  font-weight: 400;

  line-height: 1;

  transition:
    background 0.2s ease,
    color 0.08s linear,
    transform 0.3s ease;
}

.tour-drawer-button:hover {
  background: #fff;

  color: #181D24;
  font-weight: 600;

  transform: translateX(4px);
}


/* =========================================================
   ANIMACIÓN INTERNA
   ========================================================= */

.tour-drawer-hero,
.tour-drawer-item {
  opacity: 0;
  transform: translateX(25px);

  transition:
    opacity 0.45s ease,
    transform 0.65s cubic-bezier(.16, 1, .3, 1);
}

.tour-drawer.active .tour-drawer-hero {
  opacity: 1;
  transform: translateX(0);

  transition-delay: 0.25s;
}

.tour-drawer.active .tour-drawer-item {
  opacity: 1;
  transform: translateX(0);
}

.tour-drawer.active .tour-drawer-item:nth-child(1) {
  transition-delay: 0.32s;
}

.tour-drawer.active .tour-drawer-item:nth-child(2) {
  transition-delay: 0.39s;
}

.tour-drawer.active .tour-drawer-item:nth-child(3) {
  transition-delay: 0.46s;
}


/* =========================================================
   LOGO CENTRAL
   ========================================================= */

.site-header .header-center {
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  pointer-events: auto;
}

.site-header .header-logo {
  display: block;
  width: auto;
  height: 90px;

  transition: opacity 0.25s ease;
}

.site-header .header-logo:hover {
  opacity: 0.88;
}


/* =========================================================
   CONTACTO / WHATSAPP
   ========================================================= */

.site-header .btn-contacto {
  height: 40px;
  padding: 0 0 0 18px;

  gap: 14px;

  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;

  color: #fff;
  background: transparent;

  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  transition: background 0.25s ease, color 0.25s ease;
}

.site-header .btn-contacto:hover {
  background: #fff;
  color: #181D24;
  font-weight: 600;
}

.site-header .whatsapp-circle {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;

  border-radius: 50%;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .icon-whatsapp {
  width: 100%;
  height: 100%;

  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.site-header .btn-contacto:hover .icon-whatsapp {
  transform: scale(1.06);
}

/* =========================================================
   MENÚ FULLSCREEN PARK 110
   ========================================================= */

.menu-overlay {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100dvh;

  overflow: hidden;
  z-index: 9000;

  visibility: hidden;
  pointer-events: none;

  /* Al cerrar, espera a que termine la animación */
  transition: visibility 0s linear 1.05s;
}

.menu-overlay.active {
  visibility: visible;
  pointer-events: auto !important;

  /* Al abrir debe hacerse visible inmediatamente */
  transition-delay: 0s;
}


/* Panel oscuro */

.menu-dark-panel {
  position: absolute;
  inset: 0 auto 0 0;

  width: 56.5%;
  height: 100%;

  background: #181D24;

  transform: translateX(-101%);

  transition: transform 1.05s cubic-bezier(.76, 0, .24, 1);
}


/* Fachada */

.menu-facade {
  position: absolute;
  top: 0;
  right: 0;

  width: 43.5%;
  height: 100%;

  overflow: hidden;

  transform: translateX(101%);

  transition: transform 1.05s cubic-bezier(.76, 0, .24, 1);
}

.menu-facade img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* Estado abierto */

.menu-overlay.active {
  visibility: visible;
  pointer-events: auto !important;
}

.menu-overlay.active .menu-dark-panel,
.menu-overlay.active .menu-facade {
  transform: translateX(0);
}


/* El overlay pasa por debajo del logo y del botón cerrar */

.site-header.menu-open {
  pointer-events: auto !important;
}

.site-header.menu-open .header-logo {
  opacity: 1;
}


/* Contenido */

.menu-overlay-content {
  position: relative;

  width: 56.5%;
  height: 100%;

  padding:
    clamp(50px, 18vh, 200px)
    clamp(55px, 8.5vw, 145px)
    clamp(42px, 5vh, 65px);

  display: flex;
  flex-direction: column;

  z-index: 2;

  opacity: 0;
  transform: translateX(-25px);

  /* SALIDA */
  transition:
    opacity 0.25s ease,
    transform 0.4s cubic-bezier(.76, 0, .24, 1);
}

.menu-overlay.active .menu-overlay-content {
  opacity: 1;
  transform: translateX(0);

  /* ENTRADA */
  transition:
    opacity 0.55s ease 0.55s,
    transform 0.75s cubic-bezier(.16, 1, .3, 1) 0.48s;
}


/* =========================================================
   LINKS DEL MENÚ
   ========================================================= */

.menu-nav {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: clamp(8px, 1.3vh, 17px);
}

.menu-nav .menu-link,
.menu-recorridos-title {
  position: relative;

  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 1.85vw, 31px);
  font-weight: 300;
  line-height: 1.05;

  text-transform: uppercase;
}


/* Todos los enlaces cambian de color inmediatamente.
   No usamos transition-delay aquí para que la animación de apertura
   no afecte al hover. */

.menu-nav a {
  transition:
    color 0.08s linear,
    transform 0.35s cubic-bezier(.16, 1, .3, 1);
}

.menu-nav a:hover {
  color: #DCAF6C;
  transform: translateX(7px);
}


/* Recorridos */

.menu-recorridos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: clamp(7px, 1vh, 12px);
}

.menu-recorridos-title {
  margin-bottom: 2px;
}

.menu-sub-link {
  margin-left: clamp(25px, 2.5vw, 42px);

  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 300;
  line-height: 1.05;

  text-transform: uppercase;
}


/* =========================================================
   FOOTER INTERNO DEL MENÚ
   ========================================================= */

.menu-footer {
  position: relative;

  width: 100%;
  min-height: clamp(90px, 12vh, 125px);

  display: grid;

  grid-template-columns:
    minmax(160px, 1fr)
    minmax(300px, 1.8fr);

  grid-template-rows: auto auto;

  column-gap: clamp(35px, 5vw, 90px);

  align-items: end;

  opacity: 0;
  transform: translateY(18px);

  /* SALIDA */
  transition:
    opacity 0.2s ease,
    transform 0.35s ease;
}

.menu-overlay.active .menu-footer {
  opacity: 1;
  transform: translateY(0);

  /* ENTRADA */
  transition:
    opacity 0.55s ease 0.75s,
    transform 0.7s cubic-bezier(.16, 1, .3, 1) 0.75s;
}


/* Proyecto */

.menu-project {
  grid-column: 1;
  grid-row: 1;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 8px;
}

.menu-project span {
  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 400;
}

.menu-project img {
  width: clamp(55px, 5vw, 85px);
  height: auto;
}


/* Centro */

.menu-footer-center {
  grid-column: 2;
  grid-row: 1 / span 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: clamp(9px, 1.3vh, 14px);
}


/* Brochure */

.menu-download {
  display: flex;
  align-items: center;

  gap: 14px;

  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.8vw, 13px);

  transition:
    color 0.08s linear,
    transform 0.3s ease;
}

.menu-download:hover {
  color: #DCAF6C;
  transform: translateX(5px);
}

.menu-download-icon {
  display: block;

  width: 30px;
  height: 30px;

  object-fit: contain;
  flex-shrink: 0;
}


/* Redes */

.menu-social {
  display: flex;
  align-items: center;

  gap: 30px;
}

.menu-social-link {
  display: flex;
  align-items: center;

  gap: 8px;

  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.8vw, 13px);

  transition:
    color 0.08s linear,
    transform 0.3s ease;
}

.menu-social-link:hover {
  color: #DCAF6C;
  transform: translateX(5px);
}

.menu-social-icon {
  display: block;

  width: 16px;
  height: 16px;

  object-fit: contain;
  flex-shrink: 0;
}


/* Copyright / crédito */

.menu-copyright {
  margin-top: 3px;

  color: rgba(255, 255, 255, 0.85);

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 0.7vw, 11px);
}

.menu-credit {
  grid-column: 1;
  grid-row: 2;

  align-self: end;

  color: rgba(255, 255, 255, 0.85);

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 0.7vw, 11px);
}



.site-header .btn-apto,
.site-header .menu-360,
.site-header .header-right {
  position: relative;
  z-index: 20001;
}

/* El menú fullscreen pasa por encima */
.site-header .menu-overlay {
  z-index: 30000;
}


/* El botón hamburguesa / cerrar debe quedar encima */
.site-header button#menu-btn.menu-trigger {
  position: relative;
  z-index: 30001;
}


/* El logo también queda encima */
.site-header .header-center {
  z-index: 40000;
}


.site-header .btn-apto,
.site-header .header-right {
  position: relative;
  z-index: 1;
}

.site-header .menu-360 {
  position: relative;
  z-index: 1;
}

.site-header .menu-360:has(.tour-drawer.active) {
  z-index: 20001;
}

/* =========================================================
   RESPONSIVE HEADER / MENÚ
   ========================================================= */

@media (max-width: 960px) {

  .site-header {
    padding: 16px 28px 45px;
  }

  .site-header .header-left {
    gap: 8px;
  }

  .site-header button#menu-btn.menu-trigger {
    width: 48px;
    height: 40px;
  }

  .site-header .btn-apto,
  .site-header .btn-360 {
    height: 40px;
    padding: 0 16px;

    font-size: 12px;
  }

  .site-header .header-logo {
    height: 60px;
  }

  .site-header .btn-contacto {
    height: 40px;

    font-size: 12px;
  }

  .site-header .whatsapp-circle {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  .site-header .panel-360 {
    left: -60px;
    top: 55px;
  }

  .site-header .panel-360::before {
    left: 75px;
  }

  .site-header .panel-item {
    min-width: 75px;
    min-height: 75px;
  }

  .site-header .panel-item span {
    font-size: 10px;
  }
}


@media (max-width: 768px) {

  body {
    padding-top: 92px;
  }

  /* Header móvil */

  .site-header {
    min-height: 92px;
    padding: 16px 20px 60px;

    pointer-events: none !important;
  }

  .site-header.menu-open {
    pointer-events: auto !important;
  }

  .site-header .header-container {
    width: 100%;
    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    pointer-events: auto;
  }

  .site-header .header-left {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 0;
    margin: 0;
  }

  .site-header button#menu-btn.menu-trigger {
    width: auto;
    height: 40px;

    flex-shrink: 0;
  }

  .site-header .menu-icon {
    width: auto;
    height: 40px;
  }

  .site-header .btn-apto {
    height: 40px;
    padding: 0 16px;

    font-size: 10px;

    flex-shrink: 0;
  }

  .site-header .menu-360,
  .site-header .header-right {
    display: none;
  }

  .site-header .header-center {
    position: static;

    left: auto;
    top: auto;

    transform: none;

    margin-left: auto;
    padding: 0 !important;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    pointer-events: auto;
  }

  .site-header .header-logo {
    display: block;

    width: auto;
    height: 68px;
  }


  /* Menú fullscreen móvil */

  .menu-overlay {
    height: 100dvh;
  }

  .menu-dark-panel {
    width: 100%;
  }

  .menu-facade {
    display: none;
  }

  .menu-overlay-content {
    width: 100%;

    padding:
      clamp(50px, 17vh, 190px)
      clamp(34px, 6.5vw, 70px)
      clamp(28px, 4vh, 45px);
  }

  .menu-nav {
    height: 100%;

    justify-content: top;

    gap: clamp(11px, 1.65vh, 20px);
  }

  .menu-nav .menu-link,
  .menu-recorridos-title {
    font-size: clamp(25px, 6.2vw, 40px);
  }

  .menu-recorridos {
    gap: clamp(9px, 1.25vh, 15px);
  }

  .menu-sub-link {
    margin-left: clamp(28px, 7vw, 48px);

    font-size: clamp(22px, 5.7vw, 36px);
  }


  /* Footer interno móvil */

  .menu-footer {
    min-height: auto;

    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;

    column-gap: 20px;
    row-gap: clamp(12px, 1.8vh, 22px);
  }

  .menu-footer-center {
    display: contents;
  }

  .menu-download {
    grid-column: 1 / -1;
    grid-row: 1;

    font-size: clamp(10px, 2.5vw, 14px);
  }

  .menu-social {
    grid-column: 2;
    grid-row: 1;

    justify-self: end;

    display: flex;
    align-items: center;

    gap: 14px;
  }

  .menu-social-link {
    padding: 0;
    gap: 0;

    font-size: 0;
  }

  .menu-social-link span {
    display: none;
  }

  .menu-social-icon {
    width: 28px;
    height: 28px;
  }

  .menu-project {
    grid-column: 1;
    grid-row: 2;

    margin-top: 8px;
  }

  .menu-project span {
    font-size: clamp(9px, 2.1vw, 12px);
  }

  .menu-project img {
    width: clamp(65px, 15vw, 90px);
  }

  .menu-copyright {
    grid-column: 2;
    grid-row: 2;

    justify-self: end;
    align-self: end;

    font-size: clamp(8px, 2vw, 11px);
  }

  .menu-credit {
    grid-column: 1 / -1;
    grid-row: 3;

    justify-self: end;

    font-size: clamp(8px, 2vw, 11px);
  }


    .site-header .tour-drawer {
    display: none;
  }

}


/* =========================================================
   BACKDROP VIRTUAL TOUR
   Permite detectar clic fuera aunque debajo haya un iframe
   ========================================================= */

.tour-drawer-backdrop {
  position: fixed;
  inset: 0;

  z-index: 20000;

  background: transparent;

  visibility: hidden;
  pointer-events: none;
}

.tour-drawer-backdrop.active {
  visibility: visible;
  pointer-events: auto;
}

/* =========================================================
   FOOTER PARK 110
   ========================================================= */

.site-footer {
  width: 100%;
  padding: 155px 70px 18px;

  background: #181D24;
  border-top: 1px solid rgba(255,255,255,0.35);

  color: #fff;

  font-family: 'Montserrat', sans-serif;
}


/* CONTACTO CENTRAL */

.footer-contacto {
  width: 100%;
  padding-bottom: 90px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.footer-phone {
  margin: 0 0 22px;

  color: #DCAF6C;

  font-family: "Prata", serif;
  font-size: clamp(38px, 3.5vw, 82px);
  line-height: 1;
}

.footer-address {
  margin: 0 0 8px;

  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-hours {
  margin: 0;

  color: #DCAF6C;

  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}


/* FILA BROCHURE + PROYECTO */

.footer-row2 {
  width: 100%;
  margin-bottom: 35px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-col {
  flex: 1;
}

.download-link {
  display: flex;
  align-items: center;

  gap: 12px;

  color: #fff;

  font-size: 14px;
  line-height: 0.55em;
  font-weight: 300;
}

.download-icon {
  width: 42px;
}


/* PROYECTO G&C */

.footer-project {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  gap: 10px;
}

.footer-project p {
  margin: 0;

  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;

  opacity: 0.8;
}

.footer-project img {
  width: clamp(90px, 5vw, 150px);
  height: auto;

  display: block;
}


/* SEPARADOR */

.site-footer hr {
  margin: 0;

  border: 0;
  border-top: 1px solid rgba(255,255,255,0.3);
}


/* FILA INFERIOR */

.footer-bottom {
  width: 100%;
  margin-top: 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 11px;

  opacity: 0.9;
}

.footer-bottom p {
  margin: 0;
}

.text-right {
  text-align: right;
}


/* =========================================================
   FOOTER MÓVIL
   ========================================================= */

@media (max-width: 768px) {

  .site-footer {
    padding: 55px 8% 25px;
  }

  .footer-contacto {
    padding-bottom: 55px;
  }

  .footer-phone {
    font-size: clamp(34px, 9vw, 54px);
    margin-bottom: 20px;
  }

  .footer-address {
    max-width: 310px;
    font-size: 11px;
    line-height: 1.5;
  }

  .footer-hours {
    font-size: 10px;
  }

  .footer-row2 {
    flex-direction: row;
    align-items: center;

    gap: 20px;
  }

  .download-link {
    font-size: 10px;
  }

  .download-icon {
    width: 32px;
  }

  .footer-project {
    align-items: flex-end;
    text-align: right;
  }

  .footer-project p {
    font-size: 9px;
  }

  .footer-project img {
    width: 90px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 8px;

    font-size: 9px;
  }

  .text-right {
    text-align: left;
  }
}

.whatsapp-flotante{
  display: none;
}


@media (max-width: 768px) {
  .whatsapp-flotante {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 40px;
    width: 52px;
    height: 52px;
    z-index: 9998;
  }

  .whatsapp-flotante img {
    display: block;
    width: 100%;
    height: 100%;
  }
}