/* ==========================================
   POSADA DEL RÍO - CSS PAGES RENZO22
   Estilos específicos por página
   ========================================== */

/* ==========================================
   INDEX.HTML - HERO SECTION
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding-top: 70px;
  box-sizing: border-box;
  margin-bottom: 0;
  animation: heroBreathing 12s ease-in-out infinite;
}

/* OPTIMIZACIONES PARA PARALLAX */
.hero-image {
  width: 100%;
  height: 100%;
  overflow: hidden; /* ✅ IMPORTANTE: Evitar que la imagen se salga */
}

.hero-image img {
  width: 100%;
  height: 120%; /* ✅ NUEVO: Extra height para el parallax */
  object-fit: cover;
  object-position: center;
  /* ✅ NUEVO: Optimizaciones performance */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* ==========================================
   HERO - GRADIENTE SUTIL QUE FUNCIONA
   Reemplazar .hero-overlay y eliminar ::before
   ========================================== */

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* ✅ REDUCIDO: De 70% a 50% - gradiente más sutil */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.4) 80%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 1; /* ✅ REDUCIDO: Para que no interfiera con elementos superiores */
}

/* HERO TEXT - POSICIÓN ORIGINAL DE BdC + TEXTO CENTRADO */
body .hero .hero-text,
html .hero .hero-text {
  position: absolute !important;
  bottom: 25% !important; /* ✅ POSICIÓN ORIGINAL BdC */
  left: auto !important;
  left: 55% !important; /* ✅ POSICIÓN ORIGINAL BdC */
  right: auto !important;
  width: auto !important;
  max-width: 40% !important; /* ✅ ANCHO ORIGINAL BdC */
  text-align: center !important; /* ✅ NUEVO: TEXTO CENTRADO INTERNO */
  color: white !important;
  padding: 1.5rem 2rem !important;
  z-index: 3 !important;
  box-sizing: border-box !important;
  background: rgba(0,0,0,0.4) !important;
  backdrop-filter: blur(4px) !important;
  border-radius: 12px !important;
  border-right: 4px solid var(--color-boton) !important; /* ✅ BORDE ORIGINAL BdC */
}

body .hero .hero-text h1,
html .hero .hero-text h1 {
  margin: 0 !important;
  font-size: 3rem !important;
  font-weight: bold !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
  text-align: center !important; /* ✅ CENTRADO INTERNO */
}

body .hero .hero-text p,
html .hero .hero-text p {
  margin: 1rem 0 0 !important;
  font-size: 1.5rem !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
  font-weight: 300 !important;
  text-align: center !important; /* ✅ CENTRADO INTERNO */
}

/* RESPONSIVE MOBILE - POSICIONES ORIGINALES BdC */
@media (max-width: 768px) {
  body .hero .hero-text,
  html .hero .hero-text {
    bottom: 25% !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 85% !important;
    max-width: none !important;
    text-align: center !important;
  }
}
/* ==========================================
   FIX TIMING ANIMACIONES HERO
   Reemplazar en pages.css la sección de animaciones
   ========================================== */

/* ANIMACIONES TEXTO HERO - TIMING CORREGIDO */
.hero-titulo-animado {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out 0.2s forwards; /* Reducido de 0.5s a 0.2s */
}

.hero-subtitulo-animado {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards; /* Reducido de 1s a 0.5s */
}
  
  /* AJUSTAR servicios para no competir */
  .hero-servicios {
    bottom: 8% !important;  /* Mantenemos servicios abajo */
    font-size: 0.85rem;
  }


@media (max-width: 480px) {
  .hero-text {
    bottom: 28% !important;  /* CAMBIADO: aún más arriba en móviles pequeños */
    width: 95%;
    padding: 1.2rem;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-text p {
    font-size: 0.95rem;
  }
  
  .hero-servicios {
    bottom: 6% !important;
    margin: 0 0.5rem;
    padding: 0.5rem;
  }
}

/* CONTENEDOR PRINCIPAL DE SERVICIOS */
.hero-servicios {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
  color: white;
  padding: 0.8rem 2rem;
  z-index: 2 !important;
  box-sizing: border-box;
}

/* LISTA DE SERVICIOS COMO CARDS */
.servicios-lista {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 750px;
  padding-left: 1.5rem; /* ✅ NUEVO: Doble del gap para separar del borde */
}

/* CADA SERVICIO COMO CARD FLOTANTE */
.servicio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  min-width: 80px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* HOVER EFFECT MODERNO */
.servicio-item:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* ICONO DEL SERVICIO */
.servicio-icon {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.servicio-item:hover .servicio-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

/* TEXTO DEL SERVICIO */
.servicio-item span:not(.servicio-icon) {
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.servicio-item:hover span:not(.servicio-icon) {
  font-size: 0.9rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* TOOLTIP MODERNO */
.servicio-item::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
  line-height: 1.3;
}

.servicio-item::after {
  content: '';
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.servicio-item:hover::before,
.servicio-item:hover::after {
  opacity: 1;
}

/* ANIMACIÓN DE ENTRADA */
.servicio-item {
  animation: fadeInUp 0.6s ease forwards;
}

.servicio-item:nth-child(1) { animation-delay: 0.1s; }
.servicio-item:nth-child(2) { animation-delay: 0.2s; }
.servicio-item:nth-child(3) { animation-delay: 0.3s; }
.servicio-item:nth-child(4) { animation-delay: 0.4s; }
.servicio-item:nth-child(5) { animation-delay: 0.5s; }
.servicio-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .hero-servicios {
    bottom: 10%;
    padding: 0.6rem 1rem;
  }
  
  .servicios-lista {
    gap: 0.6rem;
    justify-content: flex-start; /* ✅ MANTENER: Izquierda también en mobile */
  }
  
  .servicio-item {
    padding: 0.6rem 0.8rem;
    min-width: 70px;
    backdrop-filter: blur(8px);
  }
  
  .servicio-icon {
    font-size: 1.5rem;
  }
  
  .servicio-item span:not(.servicio-icon) {
    font-size: 0.8rem;
  }
  
  /* Tooltip más pequeño en mobile */
  .servicio-item::before {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    bottom: 130%;
  }
  
  /* Hover effects más sutiles en mobile */
  .servicio-item:hover {
    transform: translateY(-4px) scale(1.02);
  }
}

@media (max-width: 480px) {
  .hero-servicios {
    bottom: 8%;
    padding: 0.5rem;
  }
  
  .servicios-lista {
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: flex-start; /* ✅ MANTENER: Siempre a la izquierda */
  }
  
  .servicio-item {
    padding: 0.5rem 0.6rem;
    min-width: 65px;
    font-size: 0.75rem;
  }
  
  .servicio-icon {
    font-size: 1.3rem;
  }
  
  .servicio-item::before {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
  }
}

/* ANIMACIÓN DE ENTRADA */
.servicio-item {
  animation: fadeInUp 0.6s ease forwards;
}

.servicio-item:nth-child(2) { animation-delay: 0.1s; }
.servicio-item:nth-child(3) { animation-delay: 0.2s; }
.servicio-item:nth-child(4) { animation-delay: 0.3s; }
.servicio-item:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .hero-servicios {
    bottom: 10%;
    padding: 0.6rem 1rem;
  }
  
  .servicios-lista {
    gap: 0.6rem;
  }
  
  .servicio-item {
    padding: 0.6rem 0.8rem;
    min-width: 70px;
  }
  
  .servicio-icon {
    font-size: 1.5rem;
  }
  
  .servicio-item span:not(.servicio-icon) {
    font-size: 0.8rem;
  }
  
  /* Tooltip más pequeño en mobile */
  @media (max-width: 768px) {
  .servicio-item::before {
    font-size: 0.8rem;                      /* ✅ AUMENTADO: de 0.7rem a 0.8rem */
    padding: 0.5rem 0.8rem;                 /* ✅ AUMENTADO: más padding */
    bottom: 130%;
  }
}
}

/* ==========================================
   COMPLETAR CSS MOBILE - SERVICIOS
   UBICACIÓN: pages.css
   AGREGAR: Al final de la sección de servicios (después del responsive existente)
   ========================================== */

/* RESPONSIVE MOBILE COMPLETO */
@media (max-width: 768px) {
  .hero-servicios {
    bottom: 10%;
    padding: 0.6rem 1rem;
    margin: 0 1rem;
    max-width: calc(100% - 2rem);
  }
  
  .servicios-lista {
    gap: 0.6rem;
    justify-content: center;
  }
  
  .servicio-item {
    padding: 0.6rem 0.8rem;
    min-width: 70px;
    backdrop-filter: blur(8px);
  }
  
  .servicio-icon {
    font-size: 1.5rem;
  }
  
  .servicio-item span:not(.servicio-icon) {
    font-size: 0.8rem;
  }
  
  /* Tooltip más pequeño en mobile */
   .servicio-item::before {
    font-size: 0.8rem;                      /* ✅ AUMENTADO: de 0.7rem a 0.8rem */
    padding: 0.5rem 0.8rem;                 /* ✅ AUMENTADO: más padding */
    bottom: 130%;
  }
  
  /* Hover effects más sutiles en mobile */
  .servicio-item:hover {
    transform: translateY(-4px) scale(1.02);
  }
}

@media (max-width: 480px) {
  .hero-servicios {
    bottom: 8%;
    padding: 0.5rem;
    margin: 0 0.5rem;
    max-width: calc(100% - 1rem);
  }
  
  .servicio-item::before {
    font-size: 0.75rem;                     /* ✅ AUMENTADO: mantener legible en ultra-mobile */
    padding: 0.4rem 0.7rem;
  }

  .servicios-lista {
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .servicio-item {
    padding: 0.5rem 0.6rem;
    min-width: 65px;
    font-size: 0.75rem;
  }
  
  .servicio-icon {
    font-size: 1.3rem;
  }
}
/* CONTENEDOR PRINCIPAL BQH - COMPACTO PARA ENCAJAR */
.banner-que-hacer-hero {
  position: absolute;
  bottom: 10%;
  left: 75%; /* ✅ MANTENER: Zona derecha como text-hero */
  transform: translateX(-50%);
  width: 45%; /* ✅ MANTENER: Ancho similar al text-hero */
  max-width: 480px; /* ✅ REDUCIDO: De 520px a 480px */
  color: white;
   z-index: 5 !important;
  box-sizing: border-box;
  
  /* ✅ CONTENEDOR COMPACTO */
  background: rgba(34, 197, 94, 0.15);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(70, 129, 137, 0.4);
  border-radius: 12px; /* ✅ REDUCIDO: De 16px a 12px */
  padding: 0.8rem 1rem; /* ✅ REDUCIDO: De 1.2rem 1.5rem */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  
  /* ✅ Layout en columna compacto */
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* ✅ REDUCIDO: De 0.8rem a 0.5rem */
}

/* ✅ TÍTULO COMPACTO */
.bqh-titulo {
  font-size: 0.9rem; /* ✅ REDUCIDO: De 1rem a 0.9rem */
  font-weight: 600;
  margin-bottom: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  line-height: 1.3; /* ✅ REDUCIDO: De 1.5 a 1.3 */
  display: block;
  width: 100%;
  order: 1;
  white-space: nowrap;
}

/* ✅ CONTENEDOR HORIZONTAL - COMPACTO */
.bqh-contenedor-interno {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem; /* ✅ REDUCIDO: De 0.6rem a 0.4rem */
  width: 100%;
  order: 2;
}

/* ✅ ÍTEMS INDIVIDUALES - COMPACTOS */
.bqh-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem; /* ✅ REDUCIDO: De 0.3rem a 0.2rem */
  padding: 0.4rem 0.2rem; /* ✅ REDUCIDO: De 0.5rem 0.3rem */
  background: transparent;
  border: none;
  border-radius: 6px; /* ✅ REDUCIDO: De 8px a 6px */
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  min-width: 0;
}

.bqh-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ✅ ICONOS - LIGERAMENTE REDUCIDOS */
.bqh-icono {
  font-size: 1.1rem; /* ✅ REDUCIDO: De 1.2rem a 1.1rem */
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.bqh-item:hover .bqh-icono {
  transform: scale(1.1);
}

/* ✅ TEXTO - COMPACTO */
.bqh-texto {
  font-size: 0.65rem; /* ✅ REDUCIDO: De 0.7rem a 0.65rem */
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
  white-space: nowrap;
}

/* ✅ CTA "DESCUBRIR" - COMPACTO */
.bqh-cta-central {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem; /* ✅ REDUCIDO: De 0.2rem a 0.1rem */
  padding: 0.5rem 0.4rem; /* ✅ REDUCIDO: De 0.7rem 0.5rem */
  background: linear-gradient(135deg, #468189, #3a6f74);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px; /* ✅ REDUCIDO: De 10px a 8px */
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1.1;
  box-shadow: 0 3px 8px rgba(70, 129, 137, 0.3);
  min-width: 0;
}

.bqh-cta-central:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 16px rgba(70, 129, 137, 0.5);
  background: linear-gradient(135deg, #3a6f74, #468189);
}

.bqh-cta-texto {
  font-size: 0.65rem; /* ✅ REDUCIDO: De 0.70rem a 0.65rem */
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.2px; /* ✅ REDUCIDO: De 0.3px a 0.2px */
  text-align: center;
  white-space: nowrap;
}

/* ✅ RESPONSIVE MOBILE - AJUSTADO */
@media (max-width: 768px) {
  .banner-que-hacer-hero {
    bottom: 19%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: none;
    padding: 0.7rem 0.9rem; /* ✅ COMPACTO: Para mobile */
    gap: 0.4rem;
  }
  
  .bqh-contenedor-interno {
    gap: 0.3rem;
  }
  
  .bqh-titulo {
    font-size: 0.85rem; /* ✅ REDUCIDO: Para mobile */
  }
  
  .bqh-item {
    padding: 0.3rem 0.15rem;
  }
  
  .bqh-icono {
    font-size: 0.95rem;
  }
  
  .bqh-texto {
    font-size: 0.6rem;
  }
  
  .bqh-cta-central {
    padding: 0.4rem 0.25rem;
  }
  
  .bqh-cta-texto {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .banner-que-hacer-hero {
    bottom: 21%;
    width: 95%;
    padding: 0.6rem 0.8rem;
    gap: 0.3rem;
  }
  
  .bqh-titulo {
    font-size: 0.8rem;
  }
  
  .bqh-contenedor-interno {
    gap: 0.2rem;
  }
  
  .bqh-item {
    padding: 0.25rem 0.1rem;
  }
  
  .bqh-icono {
    font-size: 0.85rem;
  }
  
  .bqh-texto {
    font-size: 0.55rem;
  }
  
  .bqh-cta-texto {
    font-size: 0.55rem;
  }
}
/* ✅ ELIMINAR GRID ANTERIOR */
.bqh-grid {
  display: none; /* ✅ Ya no usamos grid 2x2 */
}

/* ==========================================
   INDEX.HTML - BUSCADOR PROMINENTE
   ========================================== */
.buscador-principal {
  background: var(--color-principal);
  padding: var(--buscador-padding, 3rem) var(--container-padding);
  margin-bottom: var(--space-3);
  position: relative;
}

.buscador-container-prominente {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: var(--space-5, 2.5rem);
  position: relative;
  z-index: 10;
}

.buscador h2 {
  text-align: center;
  color: var(--color-acento);
  margin: 0 0 0.5rem 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.buscador-subtitulo {
  text-align: center;
  color: #666;
  margin: 0 0 2rem 0;
  font-size: 1rem;
  font-weight: 500;
}

.buscador-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--element-gap, 1.5rem);
  margin-bottom: var(--space-4, 2rem);
}

.buscador-item {
  display: flex;
  flex-direction: column;
}

.buscador label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-texto);
  font-size: 0.95rem;
}

.buscador input, 
.buscador select {
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.buscador input:focus, 
.buscador select:focus {
  border-color: var(--color-boton);
  box-shadow: 0 0 0 3px rgba(70, 129, 137, 0.1);
  outline: none;
}
/* ==========================================
   CAMPO CÓDIGO PROMOCIONAL EN BUSCADOR
   ========================================== */

/* Grid ajustado para 5 elementos */
.buscador-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--element-gap, 1.5rem);
  margin-bottom: var(--space-4, 2rem);
}

/* Campo código promocional que abarca 2 columnas */
.codigo-promocional-item {
  grid-column: 1 / -1; /* Abarca todas las columnas */
}

/* Estilo especial para label del código promocional */
.codigo-promocional-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-texto);
  font-size: 0.95rem;
}

.icono-promo {
  font-size: 1.1rem;
  animation: bouncePromo 2s ease-in-out infinite;
}

/* Input código promocional con estilo especial */
#codigo-promocional {
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s;
  font-weight: 500;
  letter-spacing: 1px;
}

#codigo-promocional:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
  outline: none;
  background: rgba(231, 76, 60, 0.02);
}

#codigo-promocional:not(:placeholder-shown) {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.05);
}

/* Placeholder especial */
#codigo-promocional::placeholder {
  color: #999;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Animación sutil para el icono */
@keyframes bouncePromo {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}

/* Responsive mobile */
@media (max-width: 768px) {
  .buscador-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .codigo-promocional-item {
    grid-column: 1;
  }
}

.btn-consultar-prominente {
  background: linear-gradient(135deg, var(--color-boton), #3a6f74);
  color: white;
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  box-shadow: 0 4px 16px rgba(70, 129, 137, 0.3);
}

.btn-consultar-prominente:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(70, 129, 137, 0.4);
}

.btn-texto-principal {
  font-size: 1.2rem;
  font-weight: bold;
}

.btn-subtexto {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: normal;
}

/* ==========================================
   INDEX.HTML - CREDIBILIDAD COMPACTA
   ========================================== */
.credibilidad-compacta {
  background: rgba(255, 255, 255, 0.7);
  padding: var(--credibilidad-padding, 2rem) var(--container-padding);
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-bottom: var(--space-8, 4rem);
}

.credibilidad-contenido {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2, 1rem);
}

.ubicacion-linea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
}

.ubicacion-info-compacta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  color: var(--color-texto);
}

.icono-ubicacion {
  font-size: 1.2rem;
}

.btn-mapa-compacto {
  background: var(--color-boton);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-mapa-compacto:hover {
  background: #3a6f74;
  transform: translateY(-1px);
}

.credenciales-linea {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.credencial-item-compacto {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-texto);
}

.check-icon {
  color: #22c55e;
  font-weight: bold;
  font-size: 1rem;
}

.testimonio-compacto {
  text-align: center;
  padding: 0.8rem;
  background: rgba(70, 129, 137, 0.05);
  border-radius: 6px;
  font-size: 0.9rem;
}

.estrellas {
  margin-right: 0.5rem;
}

.testimonio-texto {
  font-style: italic;
  color: #555;
}

/* ==========================================
   INDEX.HTML - DEPARTAMENTOS GRID
   ========================================== */
#departamentos {
  padding: var(--space-8) 0 !important;
  margin-bottom: var(--section-margin);
}

.section-intro {
  max-width: 800px;
  margin: 0 auto var(--space-4);
  color: var(--color-texto);
  font-size: 1.1rem;
  line-height: 1.5;
  padding: 0 1rem; /* Padding solo para el texto intro */
}

.departamentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.depto-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.depto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.depto-img-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.depto-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.depto-card:hover .depto-img-container img {
  transform: scale(1.05);
}

.depto-tag {
  position: absolute;
  top: 15px;
  left: 0;
  background: var(--color-acento);
  color: white;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: bold;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.depto-precio {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: bold;
}

.depto-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.depto-title {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-acento);
  font-size: 1.4rem;
}

.depto-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.depto-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #555;
}

.depto-feature img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.depto-description {
  flex-grow: 1;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.depto-btn-more {
  display: inline-block;
  background: var(--color-boton);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
}

.depto-btn-more:hover {
  background: #3a6f74;
  transform: translateY(-2px);
}

/* ==========================================
   INDEX.HTML - CLIMA SECTION
   ========================================== */
.clima {
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: var(--section-padding, 4rem) var(--container-padding);
  margin-bottom: var(--section-margin, 5rem);
}

.weatherwidget-io {
  display: block;
  position: relative;
  height: 180px;
  width: 100%;
  overflow: hidden;
}

/* ==========================================
   BUSCADOR.HTML - FORMULARIO Y CONTROLES
   ========================================== */
.volver-container {
  margin-bottom: 1.5rem;
}

.btn-volver {
  display: inline-flex;
  align-items: center;
  color: var(--color-boton);
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn-volver:hover {
  background-color: rgba(70, 129, 137, 0.1);
}

.flecha {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.resultado {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  background-color: #fff;
  max-width: none;
  width: 100%;
}

.error {
  color: red;
  font-weight: bold;
}

/* ==========================================
   RESPONSIVE MOBILE PARA PÁGINAS
   ========================================== */
@media (max-width: 768px) {
  /* Hero mobile */
  .hero {
    height: 100vh;
    padding-top: 60px;
  }

  /* Buscador mobile */
  .buscador-principal {
    padding: 2rem 1rem;
  }
  
  .buscador h2 {
    font-size: 1.4rem;
  }
  
  .buscador-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Credibilidad mobile */
  .ubicacion-linea {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .credenciales-linea {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }
  
  /* Departamentos mobile */
  .departamentos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  /* Clima mobile */
  .weatherwidget-io {
    height: 150px;
  }
}

/* Ultra mobile */
@media (max-width: 360px) {
  .departamentos-grid {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
  }
  
  .depto-content {
    padding: 1rem;
  }
}

/* Responsive tablet */
@media (max-width: 1200px) {
  .departamentos-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
/* OVERRIDE COMPLETO PARA FC = FR */
#departamentos {
  padding: var(--space-8, 4rem) 0 !important;
  margin-bottom: var(--section-margin, 5rem);
}

/* Texto intro con padding */
#departamentos .section-intro {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

/* GRID SIN PADDING - IGUAL QUE FR */
#departamentos .departamentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  max-width: none;
  width: 100%;
}

/* Mobile responsive */

@media (max-width: 768px) {
  #departamentos .departamentos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

/* ASEGURAR que los elementos internos del BQH mantengan la interactividad */
.bqh-item,
.bqh-cta-central {
  position: relative;
  z-index: 6 !important;
  pointer-events: auto !important;
}

/* ASEGURAR que los servicios mantengan su funcionalidad */
.servicio-item {
  position: relative;
  z-index: 3 !important;
  pointer-events: auto !important;
}
/* ==========================================
   FIX BQH DESKTOP - SOLUCIÓN ESPECÍFICA
   Problema: Botones BQH no funcionan en desktop
   ========================================== */

/* DESKTOP ESPECÍFICO - Solo pantallas grandes */
@media (min-width: 769px) {
  
  /* 1. ASEGURAR que el banner tenga prioridad absoluta */
  .banner-que-hacer-hero {
    position: absolute !important;
    bottom: 10% !important;
    right: 10% !important; /* ✅ POSICIÓN ORIGINAL: esquina inferior derecha */
    left: auto !important; /* ✅ ANULAR left */
    transform: none !important; /* ✅ ANULAR transform centrado */
    z-index: 50 !important; /* ✅ MUY ALTO para desktop */
    pointer-events: auto !important;
    width: 420px !important; /* ✅ ANCHO FIJO como original */
    max-width: 420px !important;
  }

  /* 2. ASEGURAR que los elementos internos mantengan interactividad */
  .bqh-item,
  .bqh-cta-central {
    position: relative !important;
    z-index: 51 !important; /* ✅ Aún más alto */
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  /* 3. PREVENIR que el hero-text interfiera */
  .hero-text {
    pointer-events: none !important; /* ✅ CRÍTICO: No bloquear clics */
    z-index: 2 !important; /* ✅ Por debajo del BQH */
  }
  
  /* 4. ASEGURAR que el texto del hero-text siga siendo seleccionable */
  .hero-text h1,
  .hero-text p {
    pointer-events: auto !important;
  }

  /* 5. OVERLAY no debe interferir */
  .hero-overlay {
    pointer-events: none !important;
    z-index: 1 !important;
  }

  /* 6. REMOVER bordes de debug - YA NO NECESARIOS */
  /* .banner-que-hacer-hero {
    border: 2px solid rgba(255, 0, 0, 0.3) !important;
    background: rgba(0, 255, 0, 0.1) !important;
  }
  
  .bqh-item:hover,
  .bqh-cta-central:hover {
    border: 1px solid yellow !important;
  } */
}

/* MOBILE - Mantener funcionamiento actual */
@media (max-width: 768px) {
  .banner-que-hacer-hero {
    z-index: 10 !important;
    pointer-events: auto !important;
  }
  
  .bqh-item,
  .bqh-cta-central {
    pointer-events: auto !important;
    z-index: 11 !important;
  }
}
/* ==========================================
   FIX MOBILE - SERVICIOS OPTIMIZADOS ECONÓMICOS
   Target: Mujeres 25-45, enfoque ahorro + comodidad
   ========================================== */

/* MOBILE ESPECÍFICO - Solo pantallas pequeñas */
@media (max-width: 768px) {
  
  /* 1. BAJAR MÁS el BQH para tapar P y liberar H1 */
  .banner-que-hacer-hero {
    bottom: 15% !important; /* ✅ MÁS ABAJO: para acercarse a servicios */
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    width: 90% !important;
    max-width: 400px !important;
    z-index: 15 !important;
  }

  /* 2. REPOSICIONAR servicios DEBAJO del BQH */
  .hero-servicios {
    position: absolute !important;
    bottom: 8% !important; /* ✅ Debajo del BQH */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 95% !important;
    max-width: 380px !important;
    z-index: 10 !important; /* ✅ Por debajo del BQH */
    padding: 0.5rem !important;
  }

  /* 3. MOSTRAR solo los 4 servicios clave económicos */
  .servicios-lista {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* ✅ 2x2 grid */
    gap: 0.5rem !important;
    padding: 0 !important;
  }

  /* 4. OCULTAR servicios menos prioritarios en mobile */
  .servicio-item:nth-child(n+5) {
    display: none !important; /* ✅ Solo mostrar primeros 4 */
  }

  /* 5. ASEGURAR que los 4 esenciales sean los correctos */
  /* Pileta (1), Asadores->Cocina (2), Pet Friendly (4), Cocheras (5) */
  .servicio-item:nth-child(2) .servicio-icon {
    content: "🍳" !important; /* ✅ Cambiar asador por cocina */
  }
  
  .servicio-item:nth-child(2) span:last-child {
    content: "Cocina" !important; /* ✅ Cambiar texto */
  }

  /* 6. ÍTEMS de servicio optimizados */
  .servicio-item {
    padding: 0.6rem 0.3rem !important; /* ✅ Más espacio vertical */
    border-radius: 8px !important;
    background: rgba(0, 0, 0, 0.7) !important; /* ✅ Más contraste */
    backdrop-filter: blur(6px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    text-align: center !important;
  }

  /* 7. ICONOS y texto legibles */
  .servicio-item .servicio-icon {
    font-size: 1.2rem !important; /* ✅ Iconos claros */
    margin-bottom: 0.3rem !important;
    display: block !important;
  }

  .servicio-item span:last-child {
    font-size: 0.7rem !important; /* ✅ Texto legible */
    font-weight: 600 !important;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.2 !important;
  }

  /* 8. AJUSTAR WhatsApp para que no interfiera */
  .whatsapp-fab {
    bottom: 1rem !important;
    z-index: 20 !important;
  }
}

/* ULTRA MOBILE - Pantallas muy pequeñas */
@media (max-width: 480px) {
  
  .banner-que-hacer-hero {
    bottom: 32% !important;
    width: 95% !important;
  }
  
  .hero-servicios {
    bottom: 6% !important;
    width: 98% !important;
  }
  
  .servicios-lista {
    gap: 0.4rem !important;
  }
  
  .servicio-item {
    padding: 0.5rem 0.2rem !important;
  }
  
  .servicio-item span:last-child {
    font-size: 0.65rem !important;
  }
}

/* ==========================================
   FIX HERO TEXT MOBILE - TIPOGRAFÍA OPTIMIZADA
   Opción 1: Reducir tipografía para mensaje completo
   ========================================== */

/* MOBILE ESPECÍFICO - Hero Text Legible */
@media (max-width: 768px) {
  
  /* HERO TEXT container - REVERTIR posición */
  .hero-text {
    position: absolute !important;
    bottom: 35% !important; /* ✅ REVERTIDO: Posición anterior */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 380px !important;
    text-align: center !important;
    color: white !important;
    padding: 1rem 1.5rem !important;
    z-index: 12 !important;
    background: rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(6px) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  /* H1 - Mantener tamaño original que funcionaba */
  .hero-text h1 {
    margin: 0 !important;
    font-size: 2.2rem !important; /* ✅ REVERTIDO: Tamaño anterior */
    font-weight: bold !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7) !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
  }

  /* P - Mantener tamaño anterior */
  .hero-text p {
    margin: 0 !important;
    font-size: 1.1rem !important; /* ✅ REVERTIDO: Tamaño anterior */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7) !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    opacity: 0.95 !important;
  }
}

/* ULTRA MOBILE - Pantallas muy pequeñas */
@media (max-width: 480px) {
  
  .hero-text {
    bottom: 42% !important;
    width: 95% !important;
    padding: 0.8rem 1.2rem !important;
  }
  
  .hero-text h1 {
    font-size: 1.6rem !important; /* ✅ Aún más pequeño */
    line-height: 1.05 !important;
  }
  
  .hero-text p {
    font-size: 0.8rem !important; /* ✅ Más compacto */
  }
}

/* DESKTOP - Mantener tamaño original */
@media (min-width: 769px) {
  
  /* Asegurar que desktop mantenga el estilo original */
  .hero-text h1 {
    font-size: 3rem !important;
  }
  
  .hero-text p {
    font-size: 1.5rem !important;
  }
}

/* DESKTOP - Mantener tamaño original */
@media (min-width: 769px) {
  
  /* Asegurar que desktop mantenga el estilo original */
  .hero-text h1 {
    font-size: 3rem !important;
  }
  
  .hero-text p {
    font-size: 1.5rem !important;
  }
}

/* DESKTOP - Mantener tamaño original */
@media (min-width: 769px) {
  
  /* Asegurar que desktop mantenga el estilo original */
  .hero-text h1 {
    font-size: 3rem !important;
  }
  
  .hero-text p {
    font-size: 1.5rem !important;
  }
}

/* DESKTOP - Mantener tamaño original */
@media (min-width: 769px) {
  
  /* Asegurar que desktop mantenga el estilo original */
  .hero-text h1 {
    font-size: 3rem !important;
  }
  
  .hero-text p {
    font-size: 1.5rem !important;
  }
}
/* ==========================================
   FIX MOBILE - REVISIÓN COMPLETA CON ESPECIFICIDAD ALTA
   UBICACIÓN: pages.css
   ACCIÓN: REEMPLAZAR toda la sección mobile anterior
   ========================================== */

/* MOBILE ESPECÍFICO - Revisión completa */
@media (max-width: 768px) {
  
  /* 1. HERO SECTION - Base limpia */
  body .hero,
  html .hero {
    height: 100vh !important;
    position: relative !important;
    overflow: hidden !important;
  }

  /* 2. OCULTAR párrafo completamente en mobile */
  body .hero .hero-text p,
  html .hero .hero-text p {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* 3. HERO TEXT - Posición y tipografía corregida */
  body .hero .hero-text,
  html .hero .hero-text {
    position: absolute !important;
    bottom: 42% !important; /* SUBIDO: Era 35%, ahora 42% para más espacio */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 85% !important; /* REDUCIDO: Era 90%, ahora 85% */
    max-width: 350px !important; /* REDUCIDO: Era 380px */
    text-align: center !important;
    color: white !important;
    padding: 0.6rem 1rem !important; /* MÁS COMPACTO */
    z-index: 12 !important;
    background: rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(6px) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  /* 4. H1 - Tipografía FORZADA más pequeña */
  body .hero .hero-text h1,
  html .hero .hero-text h1,
  .hero-text h1 {
    margin: 0 !important;
    font-size: 1.2rem !important; /* REDUCIDO: Era 1.4rem, ahora 1.2rem */
    font-weight: bold !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7) !important;
    line-height: 1.1 !important;
    margin-bottom: 0 !important;
    color: white !important;
  }

  /* 5. BQH - Posición ajustada para no pisar texto */
  body .banner-que-hacer-hero,
  html .banner-que-hacer-hero {
    position: absolute !important;
    bottom: 25% !important; /* BAJADO: Era 20%, ahora 25% para dar espacio al texto */
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    width: 88% !important; /* REDUCIDO: Era 90% */
    max-width: 380px !important;
    z-index: 15 !important;
    padding: 0.6rem 0.8rem !important; /* MÁS COMPACTO */
    gap: 0.4rem !important;
  }

  /* 6. BQH Contenedor interno - Más compacto */
  body .bqh-contenedor-interno,
  html .bqh-contenedor-interno {
    gap: 0.3rem !important;
  }

  body .hero-servicios,
html .hero-servicios {
  position: absolute !important;
  bottom: 10% !important;
  left: 48% !important;
  transform: translateX(-50%) !important;
  width: 85% !important; /* CAMBIADO: Era 88%, ahora 85% igual que hero-text */
  max-width: 350px !important; /* CAMBIADO: Era 380px, ahora 350px igual que hero-text */
  z-index: 10 !important;
  padding: 0.4rem !important;
}

  /* 8. SERVICIOS LISTA - Layout horizontal perfecto */
  body .servicios-lista,
  html .servicios-lista {
    display: flex !important;
    justify-content: space-between !important;
    align-items: stretch !important; /* CAMBIADO: Para misma altura */
    gap: 0.25rem !important; /* REDUCIDO */
    flex-wrap: nowrap !important;
    width: 100% !important;
  }

  /* 9. SERVICIOS ITEMS - Alineación perfecta */
  body .servicio-item,
  html .servicio-item {
    padding: 0.4rem 0.2rem !important; /* MÁS COMPACTO */
    border-radius: 6px !important;
    background: rgba(0, 0, 0, 0.75) !important; /* MÁS OPACO */
    backdrop-filter: blur(6px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    text-align: center !important;
    flex: 1 !important;
    min-width: 0 !important;
    height: auto !important; /* ALTURA AUTOMÁTICA */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* 10. ICONOS SERVICIOS - Tamaño consistente */
  body .servicio-item .servicio-icon,
  html .servicio-item .servicio-icon {
    font-size: 0.9rem !important; /* REDUCIDO */
    margin-bottom: 0.15rem !important;
    display: block !important;
    line-height: 1 !important;
  }

  /* 11. TEXTO SERVICIOS - Tamaño consistente */
  body .servicio-item span:last-child,
  html .servicio-item span:last-child {
    font-size: 0.6rem !important; /* REDUCIDO */
    font-weight: 600 !important;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 12. MOSTRAR solo 4 servicios en mobile */
  body .servicio-item:nth-child(n+5),
  html .servicio-item:nth-child(n+5) {
    display: none !important;
  }

  /* 13. TOOLTIPS más pequeños */
  body .servicio-item::before,
  html .servicio-item::before {
    font-size: 0.65rem !important;
    padding: 0.3rem 0.5rem !important;
    bottom: 115% !important;
  }
}
/* Estilo especial para link de ubicación en buscador */
.nav-ubicacion {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(70, 129, 137, 0.1);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-ubicacion:hover {
  background: var(--color-boton);
  color: white;
  transform: translateY(-2px);
}

.icono-nav {
  font-size: 1.1rem;
}