@import "header.css";

* { margin: 0; padding: 0; box-sizing: border-box;}
:root {
  --primary-color: #e56d11;
  --text-color: #333333;
}

@font-face {font-family: "Montserrat";  src: url("../assets/font/Montserrat-VariableFont_wght.ttf")   format("truetype");}
@font-face {font-family: "Anastasia";  src: url("../assets/font/Anna.ttf")   format("truetype");}

body {
   font-family: 'Montserrat', sans-serif;
   background-color: #fffaee;
   margin-top: 60px;
   

}

.cta-section {
   position: relative;
   width: 100%;
   height: 100vh;  /* adjust as needed */
   background: url("../assets/img/IMG_4121.jpg") center/cover no-repeat;
}

.cta-section .overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 90%;
  max-width: 1000px;
  padding: 3rem 1.5rem;

  /* 🔥 Liquid Glass */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.25)
  );
  backdrop-filter: blur(7px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);

  border-radius: 24px;

  /* Borde luminoso */
  border: 1px solid rgba(255, 255, 255, 0.4);

  /* Sombra profunda */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);

  z-index: 500;
}

.cta-section .overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );

  opacity: 0.8;
  pointer-events: none;
}


.cta-section .overlay .title {
   font-family: 'Anastasia';
   font-size: 4rem;
   color: #333;
   margin-bottom: 1.5rem;
   text-align: center;
   text-shadow:
   2px 2px 2px rgba(255,255,255,0.9),   /* small tight glow */
   2px 2px 8px rgba(255,255,255,0.6);   /* larger softer glow */
}



.cta-search {
  width: 100%;
  display: flex;
  flex-direction: column;   /* 🔥 botón debajo */
  align-items: center;      /* 🔥 centrado horizontal */
  gap: 1.2rem;
}


.cta-search button {
  margin-top: 0.5rem;
}

/* Mobile */
@media (max-width: 600px) {
  .select-group {
    flex-direction: column;
  }

  .cta-search button {
    width: 100%;
  }
}

.input-group {
   display: flex;
   flex: 1 1 300px;
}
.search-input {
   flex: 1;
   padding: 0.75rem 1rem;
   border: 1px solid #ccc;
   border-right: none;
   border-radius: 4px 0 0 4px;
   font-size: 1rem;
}


.select-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;

  width: 100%;
  padding: 1.2rem 1.6rem;
  margin-bottom: 1rem;

}

.select-group::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.4),
    transparent 60%
  );

  pointer-events: none;
  position: relative;
}



.search-select {
  min-width: 180px;
  padding: 0.85rem 1.1rem;
  width: 100%;

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);

  background: rgba(255, 255, 255, 0.705);
  color: #000000;
   font-size: clamp(0.9rem, 1rem + 0.2vw, 1.1rem);
  font-weight: 600;

  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.15);

  appearance: none;
  cursor: pointer;

  transition: all 0.25s ease;

    background-image:
    linear-gradient(45deg, transparent 50%, #ff9900 50%),
    linear-gradient(135deg, #ff9900 50%, transparent 50%),
    linear-gradient(to right, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0));
  background-position:
    calc(100% - 22px) calc(1.1em),
    calc(100% - 16px) calc(1.1em),
    calc(100% - 2.8em) 0.6em;
  background-size:
    10px 10px,
    10px 10px,
    1px 1.8em;
  background-repeat: no-repeat;
}

.search-select:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.22);
}

.search-select:focus {
  outline: none;
  border-color: #ff7a00; /* naranja RE */
  box-shadow:
    0 0 0 3px rgba(255, 122, 0, 0.28),
    0 12px 24px rgba(0, 0, 0, 0.25);
}



h2 {
   font-family: "Montserrat";
   font-size: clamp(1.9rem, 4vw, 3.9rem);
   color: var(--Foundation-Orange-Normal, #000000);
   text-align: center;
   padding: 2.5rem;
}

.section-inmuebles-destacados {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
}

/* CONTENEDOR PRINCIPAL */
.slider-destacados {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 700px;
}

.slider-window {
  overflow: hidden;
  width: 100%;
  position: relative;
  min-height: 260px;
}

/* Track con animación */
.slider-track {
  display: flex;
  gap: 20px;
  width: 100%;
}

/* Animación cuando se pasa a la derecha */
.slide-next {
  animation: slideNext 0.45s ease forwards;
}

@keyframes slideNext {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animación cuando se pasa a la izquierda */
.slide-prev {
  animation: slidePrev 0.45s ease forwards;
}

@keyframes slidePrev {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Botones del slider */
.slider-btn {
  background: #ff9000;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

/* Botón izquierdo */
#btn_prev {
  left: 50px;
}

/* Botón derecho */
#btn_next {
  right: 50px;
}

/* Hover */
.slider-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.08);
}

/* Para pantallas pequeñas */
@media (max-width: 768px) {
  #btn_prev {
    left: -10px;
  }
  #btn_next {
    right: -10px;
  }
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}

/* Animación */
.slide-enter {
  opacity: 0;
  transform: translateX(40px);
  
}

.slide-enter-active {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.4s ease;
  
}

.slide-exit {
  opacity: 1;
  transform: translateX(0);
}

.slide-exit-active {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.4s ease;
}

.grid-cards {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 3rem;
   padding: 2rem;
}

#destacados {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;   /* Centra horizontal */
   gap: 2.5rem;                 /* Espacio entre tarjetas */
   padding: 2rem;
}

.card {
   width: 100%;
   max-width: 300px;
   border-radius: 20px;
   overflow: hidden;
   background: #fff;
   box-shadow: 0px 0px 15px 3px rgba(19, 17, 15, 0.2);
   display: flex;
   flex-direction: column;
   opacity: 0;
   transform: translateY(20px);
   animation: fadeUp 0.4s ease forwards;
}


@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
   .card {
      max-width: 250px;
   }
}

@media (max-width: 480px) {
   .card {
      max-width: 100%;
   }
}

.card span{
   font-family: "Montserrat";
   font-size: 1.4rem;
   font-weight: 600;
   color: var(--text-color);
   text-align: center;
   margin-top: 0.5rem;
}


.card__image {
   width: 100%;
   height: 200px;               /* 🔥 Todas las imágenes iguales */
   object-fit: cover;           /* Recorta sin deformar */
}


.card__info {
   padding: 1em;
   display: flex;
   flex-direction: column;
   justify-content: space-between;  /* 🔥 Asegura equilibrio vertical */
   flex-grow: 1;                     /* Ocupa espacio sobrante */
   font-family: "Montserrat";
   gap: 1rem;
}

.card__info a{
   text-align: center;
}


.card__description {
  font-size: 0.9rem;
  padding: 1em ;
  text-align: left;
}
.container__specs{
   display: flex;
   justify-content: center;
   gap: 2rem;
}

.card__price {
   color: var(--Foundation-Orange-Normal, var(--primary-color));
   text-align: center;
   text-shadow: 1.198px 0.799px 1.598px rgba(0, 0, 0, 0.25);
   font-size: 1.6rem;
   font-style: normal;
   font-weight: 800;
   line-height: normal;
}

.card .icon{
   width: 30px;
   height: 30px;
   vertical-align: middle;
   margin-right: 5px;
   box-shadow: #333;
}

.card__inm__especs {
   font-size: 1.2rem;
   font-weight: 550;

}

.layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    padding-top: 90px; /* evita tapar contenido bajo el header */
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel img {
  width: 100%;
  flex-shrink: 0;
}

/* 🔹 Barra lateral fija */
.filtros {
   position: sticky; 
   top: 90px; /* igual al header */
   overflow-y: auto;           /* Si el contenido es grande, hace scroll interno */

   display: flex;
   flex-direction: column;
   justify-content: flex-start; /* Cambiado a flex-start para ajustar la altura */
   gap: 1rem;

   padding: 2rem;
   margin: 10%;
   background: #ffffff;
   border-radius: 12px;
   box-shadow: 0 0 15px rgba(0,0,0,0.15);
   z-index: 1000; /* Asegura que la barra lateral esté en la primera capa */
   height: calc(100vh - 90px); /* Ajusta según la altura de tu header */
}

/* 🔹 Contenido */
.contenido {
   padding: 1rem;
   height: auto;
}

/* 🔹 Inputs del filtro */
.filtros select,
.filtros input,
.filtros button {
   width: 100%;
   padding: 12px;
   font-size: 1rem;
   border-radius: 8px;
   border: 1px solid #ccc;
   height: auto;
}

/* 🔹 Para pantallas pequeñas */
@media (max-width: 900px) {
   .layout {
      grid-template-columns: 1fr;
   }
   .filtros {
      position: relative;
      top: 0;
   }
}

/* 🔹 Contenido */
.contenido {
   width: 100%;
}

/* Elementos del filtro */
.filtros select,
.filtros input,
.filtros button {
   width: 100%;
   padding: 10px;
   font-size: 1rem;
   border-radius: 8px;
   border: 1px solid #ccc;
}

.filtros button {
   background: var(--primary-color, #ff6600);
   color: white;
   font-weight: bold;
   cursor: pointer;
}

.btn {
   display: inline-block;
   padding: 0.5em 1em;
   background: var(--primary-color);
   color: white;
   text-decoration: none;
   border-radius: 8px;
}

.section-nuestros-servicios {
   width: 100%;
   height: auto;        /* altura máxima del contenedor */
   display: flex;
   flex-wrap: wrap;          /* permite que los hijos salten a columna */
   justify-content: center;
   align-items: stretch;     /* hace que los hijos se estiren en vertical */
   padding: 50px 0;

   box-sizing: border-box;
}

.container-servicio {
   position: relative;
   flex: 1 1 200px;          /* ancho mínimo de 200px, se ajusta automáticamente */
   min-width: 200px;
   height: auto;
   max-height: 100%;         /* nunca excede la altura del padre */
   overflow: hidden;
   text-decoration: none;
   color: white;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
   font-family: "Montserrat";
}

@media (max-width: 768px) {
  .container-servicio {
    max-height: 300px;   /* altura máxima en pantallas pequeñas */
    height: auto;        /* deja que se ajuste al contenido */
  }

  .container-servicio img {
    height: 100%;        /* asegura que la imagen se adapte */
    object-fit: cover;   /* recorta la imagen si es necesario */
  }
}


.container-servicio:hover {
   transform: scale(1.1);
   filter: brightness(1.5);
   transition: transform 0.3s ease, filter 0.3s ease;
   z-index: 10; /* Ensure it stays on top */
   position: relative; /* Required for z-index to take effect */
}

.container-servicio:hover .servicio-title {
   font-size: 1.4rem; /* Slightly larger font size */
   transition: font-size 0.3s ease;
}

.container-servicio img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   filter: brightness(0.6);
}

.servicio-overlay {
   position: absolute;
   top: 0;
   left: 0;
   z-index: 2;
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
}

.servicio-title {
   font-size: 1.2rem;
   font-weight: bold;
   padding: 0 1rem;
}
/* ==========================================================
   ESTILOS PAGINA DETALLE INMUEBLE – GALERÍA CORREGIDA
========================================================== */

.inmueble-info {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 1rem;
   max-width: 1400px;
   width: 100%;
   margin: 70px auto 0;
   gap: 1rem;
}

.info-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    padding: 1rem;
    align-items: center;
}

/* =========================
   GALERÍA
========================= */

.galeria {
    flex: 1 1 60%;
    max-width: 60%;
}

/* Contenedor imagen grande */
.galeria-principal {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 1rem;
}

/* Imagen final (NO se anima) */
#imagen-principal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Imágenes temporales para slide + fade */
/* Imagen saliente */
.img-old {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        filter 0.45s ease;

    z-index: 1;
}

/* Imagen entrante */
.img-anim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 1;
    z-index: 2;

    transition: transform 0.45s ease;
}

/* Botones izquierda / derecha */
.galeria-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    font-size: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.galeria-btn.prev { left: 10px; }
.galeria-btn.next { right: 10px; }

.galeria-btn:hover {
    background: var(--primary-color);
}

/* Miniaturas */
.galeria-miniaturas {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
}

.galeria-miniaturas img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.galeria-miniaturas img:hover {
    opacity: 1;
}

.galeria-miniaturas img.activa {
    opacity: 1;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* =========================
   MAPA
========================= */

.mapa {
    width: 90%;
    height: 400px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    margin: 2rem;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    isolation: isolate;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .info-container {
        flex-direction: column;
    }

    .galeria,
    .info {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .galeria-principal {
        height: 300px;
    }

    .galeria-miniaturas img {
        width: 70px;
        height: 55px;
    }
}
/* INFO */
.info {
    flex: 1 1 40%;
    max-width: 40%;
}

.info .operacion {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background 0.2s ease, transform 0.2s ease;
}

.info p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}   

.info h1 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.precio {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.direccion {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Especificaciones */
.especificaciones {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0.8rem 1.5rem;
    margin-bottom: 2rem;
}

.especificaciones div {
    font-size: 1rem;
    background: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Descripción */
.info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* Botón WhatsApp */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background 0.2s ease, transform 0.2s ease;
    border: none;
}

.btn-primary:hover {
    background-color: #c95e0f;
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
    .inmueble-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .galeria-principal img {
        height: 320px;
    }

    .galeria-miniaturas img {
        width: 75px;
        height: 60px;
    }
}

.info-secundaria {
   margin: 1.5rem;
   min-width: auto;
    
}

.pagina-servicio-venta {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 100%;
   margin: 0 auto;
}
.section-subheader {
   text-align: center;
   background-color: #ff9000;
   color: white;
   padding: 1.5%;
   width: 100%;
}

.section-subheader h1 {
   margin-bottom: 0.5rem;
   font-size: clamp(1.5rem, 4vw, 3rem);
   padding: 1%;
}

.section-subheader P {
   font-size: clamp(0.9rem, 2vw, 1.2rem);
   margin-bottom: 0.5rem;
   font-weight: 550;
   padding: 1%;
}

.pagina-servicio-venta{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 100%;
   gap: 1rem;
}

.como-funciona {
   display: flex;
   flex-direction: column;
   align-items: start;
   justify-content: center;
   width: 100%;
   padding: 2%;
   gap: 1rem;
   max-width: 1200px;
   padding: 3rem;
   min-width: 330px;
   padding-bottom: 5rem;
}

.pagina-servicio-venta a{
   width: 100%;
   display: flex;
   justify-content: center;
}

.grid-cards-servicio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.card-servicio {                 
   border-radius: 20px;
   overflow: hidden;
   background: #fff;
   box-shadow: 0px 6px 12px 4px rgba(0, 0, 0, 0.1);
   display: flex;
   flex-direction: column;       
   font-family: "Montserrat";
   gap: 1rem;
   padding: 2rem;
   width: 100%;
}

.card-servicio h4 {
   font-size: 1.4rem;
   color: #ff9000;
   padding-bottom: 0.5rem;
}

.pagina-servicio-venta h3 {
   font-size: 2rem;
   font-weight: 500;

}

.comision {
   background-color: #ffd093;
   border-radius: 8px;
   text-align: start;
   display: flex;
   flex-direction: row;
   overflow: hidden;
   height: 40px;
   gap: 0px;
   width: 100%;
   height: auto;
   
}

.text-comision {
   display: flex;
   margin-left: 5px;
   align-items: center;
   font-size: 0.8rem;
   padding: 1rem;
}


.marcador-comision {
   width: 12px;
   background-color: var(--primary-color);
}

.documentos-afiliar {
   display: flex;
   flex-direction: column;
   align-items: start;
   justify-content: center;
   width: 100%;
   padding: 2%;
   gap: 1rem;
   max-width: 1200px;
   padding: 3rem;
   min-width: 330px;
   padding-bottom: 5rem;
}

.lista-requerimientos {
   display: flex;
   flex-direction: row;
   align-items: center;
   gap: 10px;
}

.icon-tick {
   width: 18px;
   height: 18px;
   vertical-align: middle;
   margin-right: 10px;
}

/* ========= SECCIÓN ========== */
.qs-section {
    width: 100%;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
}

/* ========= CONTENEDOR PRINCIPAL ========== */
.qs-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* ========= IMAGEN ========== */
.qs-img-wrapper {
    flex: 1;
    display: flex;
}

.qs-img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    object-fit: cover;
}

/* ========= TEXTO DERECHA ========== */
.qs-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: auto;
}

.qs-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.qs-info p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ========= BOTÓN ========== */
.qs-btn {
    display: inline-block;
    background: #ff8a00;
    color: #fff;
    padding: 0.8rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s ease;
}

.qs-btn:hover {
    background: #e27600;
}

/* ========= MAPA BOGOTÁ ========== */
.qs-mapa {
    width: 180px;
    height: auto;
    align-self: flex-end;
    margin-top: 1rem;
}

/* ========= RESPONSIVE ========== */
@media (max-width: 900px) {
    .qs-container {
        flex-direction: column;
        text-align: center;
    }

    .qs-info {
        align-items: center;
    }

    .qs-mapa {
        align-self: center;
    }
}

.division-1 {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: start;
}

.division-1 a{
   margin: 1%;
   

}
.division-2 {
   width: 50%;
   display: flex;
   flex-direction: column;

}

.paginacion {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.paginacion button {
    padding: 1rem 2.5rem;
    border-radius: 999px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.paginacion button:hover {
    opacity: 0.85;
}


        .mantenimiento {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(6px);
            padding: 3rem 2.5rem;
            border-radius: 18px;
            text-align: center;
            max-width: 600px;
            width: 90%;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }

        .mantenimiento h1 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            color: #e56d11;
            margin-bottom: 1rem;
        }

        .mantenimiento p {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .mantenimiento .icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .mantenimiento small {
            display: block;
            opacity: 0.7;
            font-size: 0.9rem;
        }