/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 01 2026 | 19:58:14 */
.map-widget {
  max-width: 760px;
  margin: 16px auto;
  font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #222;
}
.map-header {
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
}
.map-title { font-weight:700; font-size:16px; }
.map-actions { display:flex; gap:8px; }
.map-actions button {
  background:#0ea5a4; color:white; border:0; padding:8px 10px; border-radius:8px;
  cursor:pointer; font-weight:600; box-shadow:0 2px 6px rgba(0,0,0,0.12);
}
.map-actions button.secondary { background:#efefef; color:#222; }
#mapCanvas { height:360px; width:100%; border-radius:10px; overflow:hidden; border:1px solid #e6e6e6; }
.map-footer { display:flex; gap:12px; align-items:center; justify-content:space-between; margin-top:8px; }
.map-info { font-size:14px; color:#444; }
.small { font-size:13px; color:#666; }
.btn-link { background:transparent; border:0; color:#0ea5a4; cursor:pointer; text-decoration:underline; padding:0; }
@media (max-width:600px){ #mapCanvas{height:300px} .map-header{gap:8px} }

/* estilos de las notificaciones simuladas */

/* ======= ESTILOS DEL SIMULADOR ======= */
#notificaciones-quartzalia {
  position: fixed;
  bottom: 100px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.notificacion {
  background: #fff;
  color: #222;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: aparecer 0.6s ease forwards;
  border-left: 4px solid #0ea5a4;
}
.notificacion img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.notificacion strong { color: #0ea5a4; font-weight: 700; }
@keyframes aparecer {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes desaparecer {
  to { opacity: 0; transform: translateY(30px); }
}

/* estilos del formulario */

/* --- Fuentes y Colores --- */
.contact-banner-widget {
    --banner-bg-color: #1a3b63; /* El azul oscuro de fondo */
    --form-bg-color: #ffffff;
    --text-color: #ffffff !important;
    --placeholder-color: #777;
    --line-color: #ccc;
    --line-focus-color: #1a3b63; /* Azul oscuro al hacer foco */
    --button-bg-color: #0d47a1; /* Un azul un poco más oscuro para el botón */
    --button-text-color: #ffffff;
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--banner-bg-color);
    /* 👇 Cambia esta URL por la de tu imagen de fondo (ej. la obra) */
    background-image: linear-gradient(rgba(26, 59, 99, 0.85), rgba(26, 59, 99, 0.85)), 
                      url('https://quartzalia.com/wp-content/uploads/2025/03/formaciones_quartzalia2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden; /* Clave para el hexágono */
}

/* --- El Hexágono de Fondo --- */
.contact-banner-widget::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 35%; /* Posición del hexágono */
    transform: translate(-50%, -50%);
    width: 450px; /* Tamaño del hexágono */
    height: 500px;
    background-color: rgba(255, 255, 255, 0.05); /* Color sutil del hexágono */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

/* --- Estructura de Rejilla (2 columnas) --- */
.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas de igual tamaño */
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2; /* Para que esté por encima del hexágono */
}

/* --- Columna Izquierda: Imagen del Hombre --- */
.banner-image-col {
    text-align: center;
}

.banner-image-col img {
    max-width: 100%;
    height: auto;
    /* Efecto de "flotación" */
    transform: scale(1.1) translateX(20px);
}

/* --- Columna Derecha: Formulario --- */
.banner-form-col {
    color: var(--text-color);
}

.banner-form-col h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 5px 0;
	color: #fff !important;
}

.banner-form-col p {
    font-size: 18px;
    margin: 0 0 25px 0;
    opacity: 0.9;
}

.contact-form-card {
    background-color: var(--form-bg-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--line-color);
    padding: 10px 5px;
    font-size: 16px;
    font-family: inherit;
    background-color: transparent;
    color: #333;
}
.form-group input::placeholder {
    color: var(--placeholder-color);
}
.form-group input:focus {
    outline: none;
    border-bottom-color: var(--line-focus-color);
}

.submit-btn {
    width: 100%;
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    border: none;
    padding: 15px;
    border-radius: 50px; /* Bordes de píldora */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #0a367d; /* Azul más oscuro al pasar el cursor */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Adaptación para Móviles --- */
@media (max-width: 768px) {
    .banner-grid {
        grid-template-columns: 1fr; /* Una sola columna */
    }
    
    /* Ocultamos al hombre en móviles para dar espacio al formulario */
    .banner-image-col {
        display: none; 
    }
    
    .contact-banner-widget {
        padding: 30px;
    }
    
    .contact-banner-widget::before {
        /* Movemos el hexágono para que se vea mejor en móvil */
        left: 10%; 
        width: 300px;
        opacity: 0.3;
    }

    .banner-form-col h2 {
        font-size: 28px;
    }
    .banner-form-col p {
        font-size: 16px;
    }
}

/* ESTILOS LANDING 2 */

/* =========================
MENU STICKY QUARTZALIA
========================= */

.QZ282026-menuqz{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  padding: 18px 24px;

  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(30,25,18,0.06);

  transition: all 0.30s ease;
}


/* estado cuando se hace scroll */

.QZ282026-menuqz.scrolled{
  padding: 14px 24px;

  background: rgba(255,255,255,0.88);

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}


/* layout centrado elegante */

/* contenedor */

.QZ282026-menuqz__wrap{

  max-width:1200px;
  margin:0 auto;

  display:flex;
  justify-content:center;
  align-items:center;

  width:100%;

}


/* logo */

.QZ282026-menuqz__logo{

  display:flex;
  justify-content:center;
  align-items:center;

  width:100%;

}


/* imagen logo */

.QZ282026-menuqz__logo-img{

  height:200px !important;
  width:auto;

}


/* ajuste específico móvil */

@media (max-width:768px){

.QZ282026-menuqz{

  padding:12px 0;

}


.QZ282026-menuqz__wrap{

  padding-left:0;
  padding-right:0;

}


.QZ282026-menuqz__logo{

  width:100%;
  text-align:center;

}


.QZ282026-menuqz__logo-img{

  height:26px;

}

}
/* =========================
EVITA QUE EL MENU TAPE EL HERO
========================= */

.QZ282026-CPiscM{

  padding-top:125px;

}

.QZ282026-CPiscM{
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
 
}

.QZ282026-CPiscM__wrap{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.QZ282026-CPiscM__content{
  position: relative;
  z-index: 2;
}

.QZ282026-CPiscM__eyebrow{
  display: inline-block;
  margin: 0 0 20px;
  padding: 9px 16px;
  border: 1px solid rgba(80, 63, 34, 0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #094669;
}

.QZ282026-CPiscM__title{
  margin: 0 0 22px;
  font-size: clamp(1rem, 2.5vw, 3.9rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -1.8px;
  color: #4A4A4A;
  max-width: 680px;
  text-wrap: balance;
}

.QZ282026-CPiscM__text{
  margin: 0 0 30px;
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #7C8C91;
}

.QZ282026-CPiscM__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.QZ282026-CPiscM__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.30s ease;
}

.QZ282026-CPiscM__btn--primary{
  background: linear-gradient(135deg, #191612 0%, #3d3226 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(28, 26, 23, 0.18);
}

.QZ282026-CPiscM__btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(28, 26, 23, 0.22);
	color:#85E3FF !important;
}

.QZ282026-CPiscM__btn--ghost{
  border: 1px solid rgba(28, 26, 23, 0.14);
  background: rgba(255,255,255,0.55);
  color: #1c1a17;
}

.QZ282026-CPiscM__btn--ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.82);
}

.QZ282026-CPiscM__highlights{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 820px;
}

.QZ282026-CPiscM__highlight{
  padding: 20px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(70, 55, 28, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.QZ282026-CPiscM__highlight h2{
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.3;
  color: #616161;
}

.QZ282026-CPiscM__highlight p{
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: #616161;
}

.QZ282026-CPiscM__visual{
  position: relative;
}

.QZ282026-CPiscM__figure{
  margin: 0;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 620px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.14);
}

.QZ282026-CPiscM__image{
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

.QZ282026-CPiscM__figure::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.26), rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.00));
}

.QZ282026-CPiscM__floating-card{
  position: absolute;
  z-index: 3;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.10);
  color: #1d1a16;
}

.QZ282026-CPiscM__floating-card--top{
  top: 22px;
  left: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.QZ282026-CPiscM__floating-card--bottom{
  right: 22px;
  bottom: 22px;
  max-width: 240px;
}

.QZ282026-CPiscM__floating-card--bottom strong{
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.QZ282026-CPiscM__floating-card--bottom small{
  display: block;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #5f584e;
}

@media (max-width: 991px){
  .QZ282026-CPiscM{
    padding: 100px 20px;
  }

  .QZ282026-CPiscM__wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .QZ282026-CPiscM__title,
  .QZ282026-CPiscM__text{
    max-width: 100%;
  }

  .QZ282026-CPiscM__highlights{
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .QZ282026-CPiscM__figure,
  .QZ282026-CPiscM__image{
    min-height: 520px;
  }
}

@media (max-width: 767px){
  .QZ282026-CPiscM{
    padding: 100px 16px;
  }

  .QZ282026-CPiscM__wrap{
    gap: 28px;
  }

  .QZ282026-CPiscM__eyebrow{
    font-size: 0.8rem;
    padding: 8px 14px;
    margin-bottom: 16px;
	 text-align:center;
  }

  .QZ282026-CPiscM__title{
    font-size: clamp(1.9rem, 8vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 18px;
  }

  .QZ282026-CPiscM__text{
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .QZ282026-CPiscM__actions{
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 26px;
  }

  .QZ282026-CPiscM__btn{
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
  }

  .QZ282026-CPiscM__highlights{
    gap: 12px;
  }

  .QZ282026-CPiscM__highlight{
    padding: 16px;
    border-radius: 16px;
  }

  .QZ282026-CPiscM__figure,
  .QZ282026-CPiscM__image{
    min-height: 380px;
    border-radius: 24px;
  }

  .QZ282026-CPiscM__floating-card--top{
    top: 14px;
    left: 14px;
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  .QZ282026-CPiscM__floating-card--bottom{
    right: 14px;
    left: 14px;
    bottom: 14px;
    max-width: none;
    padding: 12px 14px;
  }
}

/* seccion landing 2 */

/* Contenedor Principal: Apilamiento en Columna */
.QZ282026-CPiscVideo {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 900px; /* Evita que en escritorio el video sea gigante, ajústalo a tu gusto */
  margin: 0 auto;
  background-color: #0b0f1a; /* Fondo oscuro detrás del texto */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Contenedor del Video */
.QZ282026-CPiscVideo__media {
  position: relative; /* Resetea cualquier position absolute previo */
  width: 100%;
  background-color: #000;
  display: flex;
}

/* El Video en sí */
.QZ282026-CPiscVideo__video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Asegura que no se recorte */
}

/* Contenedor de Texto y Botones */
.QZ282026-CPiscVideo__content {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center; /* Centrado para que se vea elegante en la tarjeta */
}

/* Tipografía */
.QZ282026-CPiscVideo__eyebrow {
  color: #38bdf8;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
}

.QZ282026-CPiscVideo__title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.2;
  margin: 0;
}

.QZ282026-CPiscVideo__text {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}

/* Botones */
.QZ282026-CPiscVideo__actions {
  display: flex;
  flex-direction: column; /* Apilados en móvil por defecto */
  gap: 1rem;
  margin-top: 1rem;
}

.QZ282026-CPiscVideo__btn {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.QZ282026-CPiscVideo__btn--primary {
  background-color: #ffffff;
  color: #0b0f1a;
}

.QZ282026-CPiscVideo__btn--primary:hover {
  background-color: #f1f5f9;
}

.QZ282026-CPiscVideo__btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.QZ282026-CPiscVideo__btn--ghost:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Media Query: Botones lado a lado en Escritorio */
@media (min-width: 600px) {
  .QZ282026-CPiscVideo__actions {
    flex-direction: row;
    justify-content: center;
  }
  .QZ282026-CPiscVideo__btn {
    min-width: 200px;
  }
}

/* seccion antes después landing 2 */

.QZ282026-CPiscantes-despues{
  padding: 100px 24px;
 
}

.QZ282026-CPiscantes-despues__wrap{
  max-width: 1320px;
  margin: 0 auto;
}

.QZ282026-CPiscantes-despues__header{
  max-width: 860px;
  margin: 0 auto 50px;
  text-align: center;
}

.QZ282026-CPiscantes-despues__eyebrow{
  display: inline-block;
  margin: 0 0 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(80,63,34,0.10);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #677678;
}

.QZ282026-CPiscantes-despues__title{
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -1.3px;
  font-weight: 800;
  color: #1d1a16;
  text-wrap: balance;
}

.QZ282026-CPiscantes-despues__text{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #625a50;
}

.QZ282026-CPiscantes-despues__content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.QZ282026-CPiscantes-despues__card{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(60,45,25,0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}

.QZ282026-CPiscantes-despues__image-box{
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #ddd2c4;
}

.QZ282026-CPiscantes-despues__image{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.QZ282026-CPiscantes-despues__card:hover .QZ282026-CPiscantes-despues__image{
  transform: scale(1.04);
}

.QZ282026-CPiscantes-despues__badge{
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(12,152,173,0.75);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.QZ282026-CPiscantes-despues__badge--after{
  background: rgba(13,132,217,0.75);
}

.QZ282026-CPiscantes-despues__info{
  padding: 28px 26px 30px;
}

.QZ282026-CPiscantes-despues__info h3{
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.25;
  color: #1e1b17;
}

.QZ282026-CPiscantes-despues__info p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #625a50;
}

@media (max-width: 991px){
  .QZ282026-CPiscantes-despues{
    padding: 80px 20px;
  }

  .QZ282026-CPiscantes-despues__content{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .QZ282026-CPiscantes-despues__image-box,
  .QZ282026-CPiscantes-despues__image{
    min-height: 360px;
  }
}

@media (max-width: 767px){
  .QZ282026-CPiscantes-despues{
    padding: 60px 16px;
  }

  .QZ282026-CPiscantes-despues__header{
    margin-bottom: 32px;
    text-align: left;
  }

  .QZ282026-CPiscantes-despues__eyebrow{
    font-size: 0.78rem;
    padding: 8px 14px;
    margin-bottom: 14px;
  }

  .QZ282026-CPiscantes-despues__title{
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 14px;
    text-wrap: balance;
  }

  .QZ282026-CPiscantes-despues__text{
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .QZ282026-CPiscantes-despues__card{
    border-radius: 22px;
  }

  .QZ282026-CPiscantes-despues__image-box,
  .QZ282026-CPiscantes-despues__image{
    min-height: 280px;
  }

  .QZ282026-CPiscantes-despues__badge{
    top: 14px;
    left: 14px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .QZ282026-CPiscantes-despues__info{
    padding: 20px 18px 22px;
  }

  .QZ282026-CPiscantes-despues__info h3{
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .QZ282026-CPiscantes-despues__info p{
    font-size: 0.94rem;
    line-height: 1.65;
  }
}

/* sección de footer */

.QZ282026-Footer{
  position: relative;
  padding: 90px 24px 30px;
  background:
  radial-gradient(circle at top left, rgba(201, 169, 97, 0.08), transparent 30%),
  linear-gradient(180deg, #16130f 0%, #1b1712 100%);
  color: #f5efe6;
  overflow: hidden;
}

.QZ282026-Footer__wrap{
  max-width: 1320px;
  margin: 0 auto;
}

.QZ282026-Footer__top{
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.7fr;
  gap: 44px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.QZ282026-Footer__brand{
  max-width: 720px;
}

.QZ282026-Footer__eyebrow{
  display: inline-block;
  margin: 0 0 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(13,132,217,0.06);
  border: 1px solid rgba(150,210,255,0.10);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #fff;
}

.QZ282026-Footer__title{
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -1.2px;
  font-weight: 800;
  color: #ffffff;
  text-wrap: balance;
}

.QZ282026-Footer__text{
  margin: 0 0 26px;
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(214,249,255,0.82);
}

.QZ282026-Footer__cta {
  /* Tu estilo visual original */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #03DCFF 0%, #008EA6 100%);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  transition: all 0.30s ease;

  /* --- EL FIX PARA EL CLIC --- */
  position: relative !important;   /* Obligatorio para activar el z-index */
  z-index: 9999 !important;        /* Lo pone por encima de la "sombra" del header */
  pointer-events: auto !important;  /* Le dice al navegador: "Este elemento sí recibe clics" */
  cursor: pointer !important;       /* Asegura que salga la mano al pasar el mouse */
}

/* Efecto hover para que se sienta vivo */
.QZ282026-Footer__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(3, 220, 255, 0.25);
  filter: brightness(1.1);
  color: #fff; /* Evita que cambie de color si el tema tiene estilos globales */
}

.QZ282026-Footer__nav h3,
.QZ282026-Footer__contact h3{
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.2;
  color: #ffffff;
}

.QZ282026-Footer__nav ul,
.QZ282026-Footer__contact ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.QZ282026-Footer__nav li,
.QZ282026-Footer__contact li{
  margin-bottom: 12px;
}

.QZ282026-Footer__nav a,
.QZ282026-Footer__contact a{
  text-decoration: none;
  color: rgba(214,249,255,0.82);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.QZ282026-Footer__nav a:hover,
.QZ282026-Footer__contact a:hover{
  color: #ffffff;
}

.QZ282026-Footer__contact li{
  color: rgba(214,249,255,0.82);
  line-height: 1.7;
}

.QZ282026-Footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
}

.QZ282026-Footer__copy{
  margin: 0;
  font-size: 0.92rem;
  color: rgba(214,249,255,0.82);
}

.QZ282026-Footer__legal{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.QZ282026-Footer__legal a{
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(214,249,255,0.82);
  transition: color 0.25s ease;
}

.QZ282026-Footer__legal a:hover{
  color: #ffffff;
}

/* TABLET */
@media (max-width: 991px){
  .QZ282026-Footer{
    padding: 70px 20px 28px;
  }

  .QZ282026-Footer__top{
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .QZ282026-Footer__brand{
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .QZ282026-Footer__text{
    max-width: 100%;
  }

  .QZ282026-Footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* MOBILE */
@media (max-width: 767px){
  .QZ282026-Footer{
    padding: 56px 16px 24px;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
  }

  .QZ282026-Footer__top{
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 26px;
  }

  .QZ282026-Footer__eyebrow{
    font-size: 0.78rem;
    padding: 8px 14px;
    margin-bottom: 14px;
  }

  .QZ282026-Footer__title{
    font-size: clamp(1.6rem, 8vw, 2.3rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .QZ282026-Footer__text{
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .QZ282026-Footer__cta{
    width: 100%;
    min-height: 52px;
    border-radius: 15px;
  }

  .QZ282026-Footer__nav h3,
  .QZ282026-Footer__contact h3{
    margin-bottom: 14px;
    font-size: 1rem;
  }

  .QZ282026-Footer__bottom{
    padding-top: 18px;
    gap: 14px;
  }

  .QZ282026-Footer__legal{
    flex-direction: column;
    gap: 10px;
  }
}