

    /* ================================
   Estilos Globales y Variables
   ================================ */
    :root {
      --brand-primary: rgb(255, 201, 7);
      --brand-secondary: #2D2D2D;
      --brand-light: #f8f9fa;
      --brand-dark: #343a40;
      --brand-grey: #999;
    }

    /* Fuente global */
    body {
      font-family: 'Open Sans', Arial, sans-serif;
      color: #333;
    }

    /* ======================
   Header y Navbar
   ====================== */
    header {
      background-color: var(--brand-light);
    }

    .sticky-top {
      position: sticky;
      top: 0;
      z-index: 1020;
    }

    .navbar {
      background-color: transparent;
    }

    .navbar-brand {
      font-weight: bold;
      color: var(--brand-secondary);
    }

    .navbar-brand:hover {
      color: var(--brand-primary);
      text-decoration: none;
    }

    .navbar-nav .nav-link {
      color: #0e2b57;
      font-weight: 600;
      font-size: 0.75rem;
    }

    .navbar-nav .nav-link:hover {
      color: var(--brand-primary);
    }

    .navbar-toggler {
      border: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(45,45,45, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    /* ======================
   Sección Hero
   ====================== */
    .hero-section {
      position: relative;
      color: #fff;
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-section .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-section .hero-content {
      position: relative;
      z-index: 2;
      background-color: #00000087;
      padding-top: 15px;
      padding-bottom: 15px;
      max-width: 100%;
    }

    #hero-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    #hero-subtitle {
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }

    /* ======================
   Tarjeta de Búsqueda
   ====================== */
    .search-card {
      max-width: 600px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      padding: 1rem;
    }

    .weak-text {
      font-size: 14px;
      color: #9b9b9b;
    }

    .search-card .nav-tabs {
      border-bottom: none;
      justify-content: flex-start;
      margin-bottom: 0;
    }

    .search-card .nav-item {
      margin-right: 5px;
    }

    .search-card .nav-link {
      background-color: #f2f2f2;
      color: #0e2b57;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }

    .search-card .nav-link.active {
      background-color: #fff;
      color: #0e2b57;
      font-weight: 600;
    }

    .modal-content .form-control {
      border: 1px solid #0e2b57 !important;
      color: #0e2b57;
      font-size: 13px;
    }

    .modal-content .form-control::placeholder {
      color: rgb(166, 166, 166);
      font-size: 13px;
    }

    .search-card .form-control.form-control-lg {
      font-size: 1.1rem;
      border-radius: 0;
      border-bottom-left-radius: 5px;
    }

    .search-card .input-group .btn {
      border-radius: 0;
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
      background-color: #ffc907;
      border: none;
      color: #fff;
      font-weight: 100;
    }

    #searchFieldContainer {
      flex: 1;
    }

    /* ======================
   Cards de Propiedades
   ====================== */
    .property-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
      position: relative;
      cursor: pointer;
      min-height: 420px;
    }

    .property-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .img-container {
      position: relative;
    }

    .container-properties .property-card {

      margin-bottom: 18px !important;
      min-height: 410px;
    }

    .card-img-top {
      height: 200px;
      object-fit: cover;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      display: block;
    }

    /* Letrero de Objetivo */
    .property-objective {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: rgb(255, 201, 7);
      color: rgb(14, 43, 87);
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: bold;
      z-index: 3;
    }

    /* Letrero de Objetivo */
    .gem {
      font-size: 0.75rem !important;
      padding: 5px;
      color: #000;
    }

    .gem-lx {
      font-size: 25px !important;
      color: rgb(255, 201, 7);
    }

    /* Botones Compartir y Me Gusta */
    .share-fav-container {
      position: absolute;
      bottom: -20px;
      right: 10px;
      display: flex;
      gap: 5px;
      z-index: 3;
    }

    .share-fav-container button {
      width: 28px;
      height: 28px;
      border: none;
      border-radius: 50%;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      cursor: pointer;
    }

    .share-fav-container .btn-share i {
      color: #0e2b57;
      font-size: 0.8rem;
    }

    .share-fav-container .btn-favorite i {
      color: #0e2b57;
      font-size: 0.8rem;
    }

    .share-fav-container .btn-call i {
      color: #0e2b57;
      font-size: 0.8rem;
    }




    .btn-favorite.selected i {
      color: rgb(255, 201, 7) !important;
    }


    .property-card .card-body {
      padding: 1rem 1rem;
    }

    .card-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.55rem;
      color: #0e2b57;
    }

    .card-title-property {
      display: -webkit-box !important;
      -webkit-line-clamp: 1 !important;
      /* Número de líneas máximo */
      -webkit-box-orient: vertical !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
      font-size: 0.9rem !important;
      margin-top: 15px;

    }

    .card-text {
      color: #666;
      margin-bottom: 0.55rem;
    }

    /* Precio */
    .price-text {
      color: #000;
      font-weight: bold;
    }

    /* Detalles en Línea */
    .property-details li {
      display: inline-block;
      margin-right: 10px;
    }

    .property-details i::before {
      color: #0e2b57;
    }

    .text-truncate {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    /* ======================
   Slider de Propiedades
   ====================== */
    .property-slider .slick-slide {
      padding: 10px;
    }

    .slick-dots li button:before {
      color: var(--brand-primary);
    }

    /* ======================
   Sección CTA
   ====================== */
    .cta-section {
      background: #fff;
      text-align: center;
      padding: 50px 0;
    }

    .cta-section h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .cta-section p {
      font-size: 1.125rem;
      color: #666;
      margin-bottom: 1.5rem;
    }

    .cta-section .btn {
      background-color: var(--brand-primary);
      border-color: var(--brand-primary);
      border-radius: 50px;
      padding: 0.75rem 2rem;
      font-size: 1rem;
      font-weight: 600;
    }

    .cta-section .btn:hover {
      background-color: rgb(255, 201, 7);
      border-color: rgb(255, 201, 7);
      color: rgb(14, 43, 87);
    }

    /* ======================
   Footer
   ====================== */
    footer {
      background-color: rgb(14, 43, 87);
      color: #fff;
      padding: 40px 0;
    }

    footer li a {

      color: #fff;

    }

    footer h5 {
      font-weight: 700;
      margin-bottom: 1rem;
      color: rgb(255, 201, 7);
    }

    footer a {
      color: var(--brand-grey);
      text-decoration: none;
    }

    footer a:hover {
      color: #fff;
    }

    footer .social-icons {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    footer .social-icons li {
      display: inline-block;
      margin-right: 10px;
    }

    footer .social-icons li a {
      color: #fff;
      font-size: 1.2rem;
      transition: color 0.3s;
    }

    footer .social-icons li a:hover {
      color: var(--brand-primary);
    }

    footer .newsletter-input {
      border-radius: 25px;
    }

    footer .newsletter-btn {
      border-radius: 25px;
    }

    .copyrigth-text {
      font-size: 12px;
    }

    /* Títulos de Secciones */
    section h2 {
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    /* ======================
   Responsive (Móvil)
   ====================== */
    @media (max-width: 576px) {
      .hero-section {
        min-height: auto;
        padding: 60px 0;
      }

      #hero-title {
        font-size: 1.8rem;
      }

      #hero-subtitle {
        font-size: 1rem;
      }

      .card-img-top {
        height: 150px;
      }
    }

    /* ======================
   Modal de Autenticación
   ====================== */
    .auth-modal .modal-dialog {
      max-width: 550px;
      border-radius: 10px;
    }

    .auth-modal .modal-content {
      border-radius: 30px;
      padding: 1rem;
      position: relative;
    }

    .auth-modal .modal-header {
      border: none;
      padding-bottom: 0;
    }

    .auth-modal .modal-header .close {
      font-size: 1.5rem;
      position: absolute;
      right: 15px;
      top: 15px;
    }

    .modal-content {
      border-radius: 30px;
    }

    .auth-modal .nav-tabs {
      border-bottom: none;
      justify-content: center;
      margin-top: 1rem;
    }

    .auth-modal .nav-link {
      border: none;
      border-radius: 0;
      color: rgb(14, 43, 87);
      background-color: transparent;
      font-weight: 600;
    }

    .auth-modal .nav-link.active {
      border-bottom: 2px solid var(--brand-primary);
      color: rgb(14, 43, 87);
    }

    .auth-modal .modal-body {
      padding-top: 0.5rem;
    }

    .auth-modal .form-group label {
      font-weight: 600;
      color: rgb(14, 43, 87);
    }

    .social-login {
      margin-top: 1rem;
    }

    .social-btn {
      border: 1px solid rgb(14, 43, 87);
      background-color: #fff;
      color: rgb(14, 43, 87);
      width: 100%;
      padding: 0.5rem;
      font-size: 0.9rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.5rem;
      position: relative;
    }

    .social-btn i {
      position: absolute;
      left: 10px;
      font-size: 1.2rem;
      color: rgb(14, 43, 87);
    }

    .auth-modal .forgot-password {
      text-align: right;
      margin-top: -0.5rem;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .auth-modal .forgot-password a {
      color: rgb(14, 43, 87);
    }

    .auth-modal .terms-text {
      font-size: 0.8rem;
      color: #555;
      margin-top: 1rem;
      text-align: center;
    }

    .auth-modal .terms-text a {

      color: rgb(14, 43, 87);
      text-decoration: underline;
    }

    .forgot-modal .modal-content {
      border-radius: 30px;
      padding: 1rem;
    }

    .forgot-modal .modal-header {
      border: none;
      padding-bottom: 0;
    }

    .forgot-modal .modal-header .close {
      font-size: 1.5rem;
      position: absolute;
      right: 15px;
      top: 15px;
    }

    @media (max-width: 576px) {
      .auth-modal .modal-dialog {
        max-width: 90%;
        margin: auto;
      }
    }

    /* ======================
   Slick Slider
   ====================== */
    .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: 0.60rem;
      padding-left: 0.60rem;
    }

    .slick-prev,
    .slick-next {
      background-color: transparent;
      border: none;
      color: #333;
      font-size: 20px;
      padding: 10px;
      z-index: 1;
    }

    .slick-prev:hover,
    .slick-next:hover {
      color: #000;
    }

    /* ======================
   Acordeón y Checkboxes
   ====================== */
    /* Quitar subrayado en los botones del acordeón */
    .card-header .btn-link {
      text-decoration: none;
    }

    .card-header .btn-link:hover {
      text-decoration: none;
    }

    /* Aumentar tamaño de los checkboxes por defecto */
    input[type="checkbox"].large-checkbox {
      transform: scale(1.3);
      -ms-transform: scale(1.3);
      -moz-transform: scale(1.3);
      -webkit-transform: scale(1.3);
      -o-transform: scale(1.3);
      transform-origin: top left;
      margin-right: 8px;
    }

    /* Encabezado del acordeón: colocar el checkbox a la derecha y el signo a la izquierda */
    .accordion .card-header {
      padding: 0.5rem 1rem;
    }

    .accordion .card-header .toggle-icon {
      font-weight: bold;
      margin-right: 0.5rem;
    }

    /* ======================
   Animación Subrayado en Enlaces
   ====================== */
    .underline-animation {
      position: relative;
      display: inline-block;
      padding: 5px 0;
      text-decoration: none;
      color: #333;
      font-weight: bold;
      font-size: 16px;
      transition: color 0.3s ease-in-out;
    }

    .underline-animation::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 0;
      height: 2px;
      background-color: #0e2b57;
      transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
    }

    .underline-animation:hover::after {
      width: 100%;
      left: 0;
    }

    .underline-animation:hover {
      color: #0056b3;
    }

    /* ======================
   Sección: Función de Cálculo de Hipotecas
   (Overlay negro inicial que se desvanece al entrar en vista)
   ====================== */
    .hipoteca-section {
      position: relative;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      color: #fff;
    }

    .hipoteca-bg {
      background: url('/assets/images/house8.png') center / cover no-repeat;
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;

    }

    .hipoteca-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(255 255 255 / 21%);

      opacity: 1;
      transition: opacity 1.5s ease-in-out;
      z-index: 2;
    }

    .hipoteca-content {
      position: relative;
      z-index: 3;
      background: rgba(255, 255, 255, 0.1);
      padding: 30px;
      border-radius: 10px;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .hipoteca-title {
      font-size: 2rem;
      font-weight: bold;
    }

    .hipoteca-text {
      font-size: 1.1rem;
      margin-bottom: 15px;
    }

    .hipoteca-btn {
      display: inline-block;
      padding: 10px 20px;
      background: rgb(255, 201, 7);
      color: rgb(14, 43, 87);
      font-size: 1rem;
      font-weight: 600;
      border-radius: 50px;
      transition: transform 0.3s ease-in-out;
    }

    .hipoteca-btn:hover {
      transform: scale(1.1);
      color: rgb(14, 43, 87);
    }

    .hipoteca-image {
      position: absolute;
      overflow: hidden;
      bottom: 0;
      right: 0;
      /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); */
      z-index: 2;
    }

    .hipoteca-image img {
      width: 100%;
      transition: transform 0.5s ease-in-out;
    }

    .hipoteca-image:hover img {
      transform: scale(1.05);
    }





    .corredor-section {
      position: relative;
      z-index: 1;
      /* background: url('https://source.unsplash.com/1600x900/?city,buildings') center/cover no-repeat; */
      position: relative;
      color: #000;
    }

    .corredor-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      color: #000;

    }

    .corredor-section .container {
      position: relative;
      z-index: 2;
      color: #000;

    }

    .corredor-section h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #000;

    }

    .corredor-section p {
      font-size: 1.2rem;
      font-weight: 400;
      color: #000;

    }

    .corredor-section ul {
      list-style: none;
      padding: 0;
      color: #000;

    }

    .corredor-section ul li {
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: #000;

    }

    .corredor-section-overlay {
      content: "";
      position: absolute;
      z-index: 10;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 30%;
      background: linear-gradient(0deg,
          rgba(255, 255, 255, 1) 0%,
          rgba(255, 255, 255, 1) 10%,
          rgba(255, 255, 255, 1) 15%,
          /* Primer 15% completamente sólido */
          rgba(255, 255, 255, 0.98) 20%,
          rgba(255, 255, 255, 0.95) 25%,
          rgba(255, 255, 255, 0.9) 30%,
          rgba(255, 255, 255, 0.85) 35%,
          rgba(255, 255, 255, 0.75) 40%,
          rgba(255, 255, 255, 0.65) 45%,
          rgba(255, 255, 255, 0.55) 50%,
          rgba(255, 255, 255, 0.45) 55%,
          rgba(255, 255, 255, 0.35) 60%,
          rgba(255, 255, 255, 0.25) 65%,
          rgba(255, 255, 255, 0.15) 70%,
          rgba(255, 255, 255, 0.08) 75%,
          rgba(255, 255, 255, 0.05) 80%,
          rgba(255, 255, 255, 0.02) 85%,
          rgba(255, 255, 255, 0) 100%);
      pointer-events: none;

      background-size: cover;
      background-blend-mode: soft-light, normal;
      opacity: 0.9;
      pointer-events: none;
      z-index: 10000;
    }


    .bg-animation {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('/assets/images/agent2_part2.png') no-repeat center center;
      background-size: cover;
      z-index: -1;
      /* Envía el fondo detrás de la imagen */
    }



    .info-box {
      background: #fff;
      padding: 20px;
      /* text-align: center; */
      border-radius: 10px;
      min-height: 180px;
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    }


    .info-box h4 {
      font-size: 1rem;
      margin-bottom: 10px;
      font-weight: bold;
      color: rgb(255, 201, 7);
    }

    .info-box p {
      font-size: 0.9rem;
      font-weight: bold;
      color: rgb(14, 43, 87);
    }

    .btn-warning {
      z-index: 100;
      background-color: rgb(255, 201, 7) !important;
      position: absolute;
      left: 0;
      right: 0;
      width: 200px;
      margin: auto;
      color: #fff;
      border-radius: 30px;
    }

    .btn-warning:hover {
      z-index: 100;
      background-color: rgb(255, 201, 7) !important;
      position: absolute;
      left: 0;
      right: 0;
      width: 200px;
      margin: auto;
      color: #fff;
    }

    .title-primary {
      color: rgb(14, 43, 87) !important;
    }

    .container-logo-anim {
      position: relative;
      display: inline-block;
    }

    .logo-back {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0.5;
      /* Puedes ajustar la opacidad si deseas que sea visible */
      z-index: 1;
      width: 300px;
    }

    .logo-front {
      position: relative;
      z-index: 2;
      width: 300px;

    }

    .show-more {}

    .btn-show-more {
      background-color: rgb(255, 201, 7) !important;
      color: #fff;
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
      font-size: 12px;
      font-weight: bold;
    }

    .btn-show-more:hover {
      background-color: rgb(255, 201, 7) !important;
      color: rgb(14, 43, 87);
    }

    #cookieBanner {
      background-color: rgb(255, 201, 7);
    }

    #cookieBanner p {
      color: rgb(14, 43, 87);
    }

    #acceptCookies {
      background-color: rgb(14, 43, 87);
      color: rgb(255, 201, 7);
    }

    .openCookieSettings {
      color: rgb(14, 43, 87) !important;
      text-decoration: underline;
    }

    .openCookieSettings:hover {
      color: rgb(14, 43, 87) !important;
      text-decoration: underline;
    }

    input[type="checkbox"] {
      appearance: none;
      width: 20px;
      height: 20px;
      border: 1.5px solid #0e2b57;
      /* Borde del checkbox */
      border-radius: 4px;
      /* Opcional: esquinas redondeadas */
      background-color: white;
      display: inline-block;
      position: relative;
      cursor: pointer;
    }

    input[type="checkbox"].extra-large {
      appearance: none;
      width: 32px;
      height: 32px;
      border: 1.5px solid #0e2b57;
      /* Borde del checkbox */
      border-radius: 4px;
      /* Opcional: esquinas redondeadas */
      background-color: white;
      display: inline-block;
      position: relative;
      cursor: pointer;
    }

    /* Cuando el checkbox está marcado */
    input[type="checkbox"]:checked {
      background-color: white;
    }

    /* Agregar la palomita */
    input[type="checkbox"]:checked::after {
      content: "✔";
      color: #0e2b57;
      font-size: 16px;
      font-weight: bold;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }

    .btn-primary {
      color: #0e2b57;
      ;
      background-color: rgb(255, 201, 7);
      border-color: rgb(255, 201, 7);
      font-weight: 600;
      font-size: 14px;
    }

    .btn-primary:hover {
      color: rgb(255, 201, 7);
      background-color: #0e2b57;
      border-color: #0e2b57;
      font-weight: 600;
      font-size: 14px;
    }

    #backToSignIn {
      color: #0e2b57;
    }

    #forgotPasswordModalLabel {
      color: #0e2b57;
    }

    .dropdown-item.active,
    .dropdown-item:active {
      background-color: #0e2b57 !important;
      color: rgb(255, 201, 7) !important;
    }

    /* Estilos para evitar que Select2 sobrescriba el tamaño del select */
    .select2-container .select2-selection--single {
      height: 38px !important;
      padding: 6px 12px !important;
    }

    /* Ajuste para Select2 */
    .custom-select2 {
      width: 100%;
    }

    /* Contenedor de opciones personalizadas */
    .select2-dropdown {
      padding: 10px;
    }

    /* Estilos para los Sliders */
    .slider-container {
      width: 100%;
      padding: 10px;
    }

    #price_slider,
    #size_slider {
      margin: 10px 0;
    }

    /* Estilos para los Botones de Opciones */
    .button-grid {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
    }

    .button-grid button {
      background: #f8f9fa;
      border: 1px solid #ced4da;
      padding: 5px 10px;
      cursor: pointer;
      border-radius: 5px;
    }

    .button-grid button.active {
      background: #007bff;
      color: white;
    }


    /* properties */

    .btn-group-toggle .btn {
      min-width: 50px;
      /* Tamaño uniforme */
      text-align: center;
    }

    .btn-group-toggle .btn input {
      display: none;
      /* Oculta los inputs */
    }

    .btn-group-toggle .btn.active {
      background-color: #007bff;
      /* Azul cuando está seleccionado */
      color: white;
    }

    .dropdown-menu {
      max-width: 550px;
    }


    button:focus,
    input:focus,
    textarea:focus,
    select:focus {
      outline: none !important;
      -webkit-appearance: none !important;
      /* Para navegadores Webkit (Chrome, Safari) */
      appearance: none !important;
      /* Para otros navegadores */
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
      box-shadow: none !important;

    }



    .price-range-selector {
      width: auto;
      font-family: Arial, sans-serif;
    }

    .price-range-title {
      font-weight: bold;
      color: #0e2b57;
    }

    .price-range-slider {
      margin: 10px 0;
    }

    .price-inputs {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .price-input {
      width: 80px;
      text-align: center;
      border: 1px solid #ccc;
      padding: 5px;
      font-size: 14px;
      border-radius: 5px;
    }


    /* Color normal del manejador */
    .ui-slider-handle {
      background-color: rgb(255, 201, 7) !important;
      /* Cambia esto al color que desees */
      border: 2px solid rgb(255, 201, 7) !important;
    }

    /* Color cuando está seleccionado o en foco */
    .ui-slider-handle:focus,
    .ui-slider-handle:active {
      background-color: white !important;
      /* Cambia esto al color que prefieras */
      border: 1px solid rgb(255, 201, 7) !important;
    }



    .filters-modal-dialog .selectable-btn {
      border: 1px solid rgb(255, 201, 7);
      border-radius: 8px;
      padding: 15px;
      cursor: pointer;
      transition: background-color 0.3s, border-color 0.3s;
      min-height: 110px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #0e2b57;
      font-size: 14px;
    }

    .selectable-btn {
      border: 1px solid rgb(255, 201, 7);
      border-radius: 8px;
      padding: 15px;
      cursor: pointer;
      transition: background-color 0.3s, border-color 0.3s;
      min-height: 110px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #0e2b57;
    }

    .selectable-btn.selected {
      background-color: rgb(255, 201, 7);
      color: #0e2b57;
      border-color: rgb(255, 201, 7);
    }

    .selectable-btn i {
      font-size: 30px;
      margin-bottom: 5px;
      color: #0e2b57;
    }

    #dropdown-property-type .custom-dropdown-menu {
      width: 500px !important;
    }

    .filters-input {
      border: 1px solid #0e2b57 !important;
      color: #0e2b57;
      font-size: 12px;


      height: calc(1.5em + .75rem + 2px);
      padding: .375rem .75rem;
      font-size: 0.8rem;
      font-weight: 400;
      line-height: 1.5;
      color: #495057;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid #ced4da;
      border-radius: .25rem;
      transition: border-color .15sease-in-out, box-shadow .15sease-in-out;

    }

    select.filters-input {
      width: 120px;
      ;
    }

    select.filters-input-dialog {
      width: 100%;
    }

    .filters-input-dialog {
      border: 1px solid #0e2b57 !important;
      color: #0e2b57;
      font-size: 12px;


      height: calc(1.5em + .75rem + 2px);
      padding: .375rem .75rem;
      font-size: 0.8rem;
      font-weight: 400;
      line-height: 1.5;
      color: #495057;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid #ced4da;
      border-radius: .25rem;
      transition: border-color .15sease-in-out, box-shadow .15sease-in-out;

    }

    .btn-select-filter {
      padding: 10px 15px;
      margin: 0;
      border: 1px solid rgb(255, 201, 7);
      font-weight: bold;
      background-color: white;
      color: rgb(14, 43, 87);
      cursor: pointer;
      border-radius: 5px;
      position: relative;
      z-index: 1;
      transition: all 0.2sease-in-out;
      width: 100%;
      margin-top: 8px;
    }

    .btn-select-filter.active-filter {

      border: 1px solid rgb(255, 201, 7);
      background-color: rgb(255, 201, 7);

    }

    .btn-all-filters {

      padding: 10px 15px;
      margin: 0;
      border: 1px solid rgb(255, 201, 7);
      font-weight: bold;
      background-color: white;
      color: rgb(14, 43, 87);
      cursor: pointer;
      border-radius: 5px;
      position: relative;
      z-index: 1;
      transition: all 0.2sease -in-out;
    }



    .filters-modal-dialog {
      height: 100%;
      position: fixed;
      right: 0;
      top: 0;
      width: 100%;
      z-index: 1000000000000;

      background-color: #00000073;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
      overflow-x: hidden;
    }

    .filters-modal-dialog .close {
      display: flex;
      justify-content: center;
      align-items: end;
      padding-top: 18px;
      margin-right: 18px;
      font-size: 18px;
      color: rgb(14, 43, 87) !important;
      opacity: 1 !important;
      cursor: pointer;
    }

    /* Modal personalizado */
    .filters-modal-content {
      height: 100vh;
      position: fixed;
      right: -100%;
      top: 0;
      width: 90%;
      display: block;
      background-color: white;
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px;
      transition: right 0.6s ease-in-out;
      /* Animación suave */
      overflow-y: auto;


    }


    /* Ancho para pantallas grandes */
    @media (min-width: 992px) {
      .filters-modal-content {
        width: 45%;
      }
    }

    .filters-modal-dialog.active .filters-modal-content {
      right: 0;
    }

    .filters-modal-dialog.active {
      opacity: 1;
      visibility: visible;
    }

    .filters-modal-dialog-title {
      font-size: 18px;
      font-weight: bold;
      color: rgb(14, 43, 87);
      text-align: left;
    }

    .filters-modal-dialog .form-check-label {
      font-size: 14px;
      color: rgb(14, 43, 87);
      font-weight: 600;
    }

    .filter-modal-dialog-footer {
      position: sticky;
      bottom: 0;
      right: 0;
      width: 100%;
      color: white;
      text-align: center;
      padding: 10px;
      background-color: white;
      padding: 10px;
      display: flex;
      justify-content: space-between;
      z-index: 1000000000;
    }

    .filter-modal-dialog-header {
      position: sticky;
      top: 0;
      right: 0;
      width: 100%;
      color: white;
      text-align: center;
      padding: 10px;
      background-color: white;
      padding: 10px;
      display: flex;
      justify-content: end;
      z-index: 1000;
    }



    .page-link {
      position: relative;
      display: block;
      padding: .5rem .75rem;
      margin-left: -1px;
      line-height: 1.25;
      color: rgb(14, 43, 87);
      background-color: #fff;
      border: 1px solid rgb(255, 201, 7);
    }

    .page-link:hover {
      position: relative;
      display: block;
      padding: .5rem .75rem;
      margin-left: -1px;
      line-height: 1.25;
      color: white;
      background-color: rgb(14, 43, 87);
      border: 1px solid rgb(14, 43, 87);
    }

    .page-item.active .page-link {
      position: relative;
      display: block;
      padding: .5rem .75rem;
      margin-left: -1px;
      line-height: 1.25;
      color: white;
      background-color: rgb(14, 43, 87);
      border: 1px solid rgb(14, 43, 87);
    }


    .page-item.disabled .page-link {
      color: #6c757d;
      pointer-events: none;
      cursor: auto;
      background-color: #fff;
      border-color: rgb(255, 201, 7);
    }

    .count-pages-properties-head {
      color: rgb(14, 43, 87);
      font-weight: bold;
    }

    .count-pages-properties-head span {
      font-weight: normal;
    }

    .view-pages-properties {
      color: rgb(14, 43, 87);
      font-weight: bold;
    }

    .view-pages-properties span {
      font-weight: normal;
    }

    .head-properties-img {

      width: 100%;
      height: 300px;
      background: url('/assets/images/head-properties.jpg') no-repeat center center;
      background-size: cover;
    }

    .head-properties-img-deluxe {

      width: 100%;
      height: 300px;
      background: url('/assets/images/head-properties4.jpg') no-repeat center center;
      background-size: cover;
    }



    .container-filters-properties {
      z-index: 100;
      position: relative;
    }

    @media (min-width: 992px) {
      .head-properties-img {

        width: 100%;
        height: 400px;

      }
    }


    /* Estilos generales */
    .property-listing {
      margin-top: 0px;
    }

    /* Imagen principal */
    .main-image {
      position: relative;
      overflow: hidden;
    }

    .grid-item-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .grid-item-main {
      position: relative;
      overflow: hidden;
      /* Evita desbordamientos */
      padding: 5px;
    }

    /* Cuadrícula de imágenes */
    .grid-item {
      position: relative;
      overflow: hidden;
      /* Evita desbordamientos */
      padding: 5px;
    }

    .grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 50%;
      display: block;
    }

    /* Capa oscura en hover */
    .grid-item::after,
    .grid-item-main::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0);
      /* Transparente por defecto */
      transition: background 0.3s ease-in-out;
    }

    /* Efecto al pasar el mouse */
    .grid-item:hover::after,
    .grid-item-main:hover::after {
      background: rgba(0, 0, 0, 0.4);
      /* Oscurece en hover */
    }

    /* Sección de información */
    .property-info h2 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .property-info p {
      margin: 0.25rem 0;
    }

    .property-info .btn {
      margin-bottom: 0.5rem;
    }

    /* Etiqueta superior (opcional) */
    .badge-top {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #007bff;
      color: #fff;
      padding: 5px 10px;
      font-size: 0.9rem;
      border-radius: 3px;
    }

    /* Estilos de la lista de características */
    .property-info ul {
      padding-left: 20px;
    }

    .property-info ul li {
      list-style-type: disc;
    }


    .grid-item-main>img {
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;

    }

    .grid-item-main::after {
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;

    }

    .corner-right-top>img {
      border-top-right-radius: 20px;
    }

    .corner-right-bottom>img {
      border-bottom-right-radius: 20px;
    }

    .corner-right-top::after {
      border-top-right-radius: 20px;

    }

    .corner-right-bottom::after {

      border-bottom-right-radius: 20px;
    }

    @media (max-width: 765px) {
      .corner-right-top>img {
        border-top-right-radius: 0px;
      }

      .corner-right-bottom>img {
        border-bottom-right-radius: 0px;
        border-bottom-right-radius: 20px;
      }

      .corner-right-top::after {
        border-top-right-radius: 0px;

      }

      .corner-right-bottom::after {

        border-bottom-right-radius: 20px;
      }

      .corner-left-bottom>img {
        border-bottom-left-radius: 20px;
      }

      .corner-left-bottom::after {
        border-bottom-left-radius: 20px;
      }

      /*  */

      .grid-item-main>img {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;

      }

      .grid-item-main::after {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;

      }

    }

    .first-img-property {
      cursor: pointer;
    }

    #showAllImagesProperty img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 50%;
      display: block;
    }


    @media (min-width: 992px) {

      .modal-lg,
      .modal-xl {
        max-width: 1100px;
      }
    }

    #showAllImagesProperty img {
      cursor: pointer;
    }

    #showAllImagesProperty h5 {
      color: rgb(14, 43, 87);
      font-weight: 600;
      font-size: 18px;
      padding: 10px;
    }



    /* Estilos encapsulados para la sección */
    #property-detail {
      background-color: #fff;
      color: #000;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    #property-detail h2,
    #property-detail h3,
    #property-detail h4 {
      color: rgb(14, 43, 87);
    }

    #property-detail .price {
      font-size: 2rem;
      color: rgb(255, 201, 7);
      font-weight: bold;
    }

    /* Botones personalizados */
    #property-detail .btn-custom {
      background-color: rgb(14, 43, 87);
      color: #fff;
      border: none;
      transition: background-color 0.3s ease;
    }

    #property-detail .btn-custom:hover {
      background-color: rgb(255, 201, 7);
      color: rgb(14, 43, 87);
    }

    /* Info-boxes para datos clave */
    #property-detail .info-box {
      background-color: #f8f9fa;
      border-radius: 5px;
      padding: 1rem;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      min-height: auto !important;
    }

    #property-detail .info-box i {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      color: rgb(14, 43, 87);

    }

    #property-detail .info-box p {
      margin: 0;
      font-weight: bold;
      font-size: 1rem;
    }

    #property-detail .info-box small {
      display: block;
      font-size: 0.8rem;
      color: #555;
    }

    /* Cards para secciones */
    #property-detail .card {
      border-radius: 20px;
      margin-bottom: 1.5rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    #property-detail .card-header {
      background-color: rgb(14, 43, 87);
      color: #fff;
      font-weight: bold;
      font-size: 1.1rem;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px
    }

    /* Listas sin estilo para servicios y amenidades */
    .list-unstyled li {
      line-height: 1.8;
      font-size: 0.87rem;
    }

    /* Iconos para check y X */
    .icon-yes {
      color: rgb(14, 43, 87);
      font-size: 1.2rem;
    }

    .icon-no {
      color: rgb(255, 201, 7);
      font-size: 1.2rem;
    }

    .color-main1 {
      height: 30px;
      width: 33%;
      border: 1px solid rgb(212, 212, 212);
      border-right: none;
    }

    .color-main2 {
      height: 30px;
      width: 33%;
      border: 1px solid rgb(212, 212, 212);

    }

    .color-main3 {

      height: 30px;
      width: 33%;
      border: 1px solid rgb(212, 212, 212);
      border-left: none;

    }

    #property-detail .min-height-250 {
      min-height: 250px;
    }

    #property-detail .min-height-170 {
      min-height: 170px;
    }

    .badge-light {
      padding: 10px;
      background-color: rgb(255, 201, 7);
      color: rgb(14, 43, 87);
      vertical-align: middle;
      width: 35px;
      height: 35px;
      font-size: 14px;
    }

    #property-detail .card-body i {
      color: rgb(14, 43, 87) !important;
    }

    #property-detail .extras .card-body i {
      width: 60px;
      text-align: center;
    }

    .share-fav-container-property-detail .btn-share {
      width: 50px;
      height: 50px;
      border: none;
      border-radius: 50%;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      color: rgb(14, 43, 87);

    }

    .share-fav-container-property-detail .btn-favorite {
      width: 50px;
      height: 50px;
      border: none;
      border-radius: 50%;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      margin-left: 10px;
      color: rgb(14, 43, 87);
    }

    .share-fav-container-property-detail .btn-call {
      width: 50px;
      height: 50px;
      border: none;
      border-radius: 50%;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      margin-right: 10px;
      color: rgb(14, 43, 87);
    }

    .share-fav-container-property-detail {
      display: flex;
      flex-direction: row;
      margin-top: 10px;
      margin-bottom: 5px;
    }

    .share-fav-container-property-detail .btn-share:hover {
      color: rgb(255, 201, 7);
    }

    .share-fav-container-property-detail .btn-favorite:hover {
      color: rgb(255, 201, 7);
    }

    .font-15 {
      font-size: 15px;
    }


    /* Contenedor del blog */
    .blog-container {
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 30px;
    }

    .blog-title {
      font-size: 36px;
      font-weight: bold;
      color: #333;
    }

    .blog-card {
      border: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease-in-out;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .card-body {
      padding: 20px;
    }

    .card-footer {
      background-color: #f8f9fa;
      border-top: 1px solid #e1e1e1;
    }

    .comments-section {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .comment-form textarea {
      resize: none;
    }

    .comment-item {
      background-color: #f8f9fa;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .comment-item h5 {
      font-size: 16px;
      font-weight: bold;
      color: #333;
    }

    .comment-item small {
      color: #6c757d;
    }

    .btn-close {
      background-color: transparent;
      border: none;
    }



    /* General */
    body {
      font-family: 'Arial', sans-serif;
      background-color: rgb(255, 255, 255);
      margin: 0;
      padding: 0;
    }

    /* Contenedor del blog */
    .blog-container {
      background-color: #ffffff;
      padding: 30px;
    }

    /* Tarjetas de los artículos */
    .blog-card {
      border: none;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .blog-card img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-bottom: 2px solid #f1f1f1;
    }

    .blog-card .card-body {
      padding: 20px;
    }

    .blog-card .card-title {
      font-size: 27px;
      font-weight: bold;
      color: rgb(14, 43, 87);
      margin-bottom: 40px;
      line-height: 29px;
    }

    .blog-card .card-text {
      font-size: 1rem;
      color: #666;
      margin-bottom: 15px;
    }

    .blog-card .btn {
      background-color: rgb(255, 201, 7);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      text-transform: uppercase;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .blog-card .btn:hover,
    .blog-card .btn:active {
      background-color: rgb(14, 43, 87) !important;
      color: #fff !important;
      cursor: pointer;
    }

    .blog-card .btn:focus {
      outline: none;
    }

    /* Estilos de las tarjetas para la vista móvil */
    @media (max-width: 768px) {
      .blog-card {
        min-height: 400px;
      }
    }

    /* Estilo para los artículos destacados */
    #blog-section .row.mb-5 .col-12 {
      margin-bottom: 30px;
    }

    .blog-card .card-body {
      padding: 25px;
    }

    /* Estilos para las tarjetas de los artículos en las filas */
    .row>.col-md-4 {
      padding-left: 15px;
      padding-right: 15px;
    }

    /* Asegurarse que todas las tarjetas tienen la misma altura */
    .blog-card {
      min-height: 380px;
    }



    /* Estilos del contenedor de artículos */
    .blog-container {
      padding: 40px 0;
    }

    /* Colores generales para el fondo de las imágenes de los artículos */
    .bg-blue {
      background-color: #007bff;
    }

    .bg-red {
      background-color: #ff5733;
    }

    .bg-green {
      background-color: #33ff57;
    }

    .bg-yellow {
      background-color: #ffb300;
    }


    /* Responsive para dispositivos pequeños */
    @media (max-width: 575px) {
      .col-md-4 {
        margin-bottom: 20px;
      }
    }

    /* Estilo para el contenedor de cada tarjeta */
    .card-body.d-flex {
      display: flex;
      flex-direction: column;
    }

    /* Mejora de la apariencia del botón de "Leer más" */
    .card-body .btn {
      align-self: flex-start;
    }

    /* Media queries para ajustar las columnas a dispositivos más pequeños */
    @media (max-width: 991px) {
      .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    @media (max-width: 576px) {
      .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    .simple-blog-articles .card-img-top {
      height: 200px;
    }



    /* Encapsulamos todos los estilos dentro de la clase .blog-detail-container */
    .blog-detail-container {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #fff;
    }

    /* --- Header del Artículo --- */
    .blog-detail-container .bd-header {
      color: #fff;
    }

    .blog-detail-container .bd-title {
      font-size: 2.8rem;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .blog-detail-container .bd-meta span {
      font-size: 0.9rem;
    }

    .blog-detail-container .bd-meta i {
      color: rgb(255, 201, 7);
      margin-right: 5px;
    }

    /* --- Imagen Destacada --- */
    .blog-detail-container .bd-featured-image img {
      object-fit: cover;
      max-height: 450px;
      width: 100%;
    }

    /* --- Contenido del Artículo --- */
    .blog-detail-container .bd-content p,
    .blog-detail-container .article-body p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .blog-detail-container .article-body h2 {
      font-size: 1.8rem;
      color: rgb(14, 43, 87);
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    .blog-detail-container .bd-quote {
      border-left: 5px solid rgb(255, 201, 7);
      padding-left: 15px;
      font-style: italic;
      background-color: #f9f9f9;
      margin: 1.5rem 0;
    }

    /* --- Sección Multimedia, Galería y Video --- */
    .blog-detail-container .bd-media img,
    .blog-detail-container .bd-gallery img {
      transition: transform 0.3s ease;
    }

    .blog-detail-container .bd-media img:hover,
    .blog-detail-container .bd-gallery img:hover {
      transform: scale(1.02);
    }

    /* --- Redes Sociales (íconos en círculo estilo card) --- */
    .blog-detail-container .bd-social-icons {
      margin: 20px 0;
    }

    .blog-detail-container .bd-social-icons .social-icon {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      margin: 0 10px;
      border-radius: 50%;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      color: rgb(14, 43, 87);
      font-size: 1.5rem;
      transition: transform 0.3s ease;
      text-decoration: none;
    }

    .blog-detail-container .bd-social-icons .social-icon:hover {
      transform: scale(1.1);
    }

    /* --- Sección de Comentarios --- */
    .blog-detail-container .bd-comments-title {
      font-size: 2rem;
      border-bottom: 2px solid rgb(255, 201, 7);
      padding-bottom: 10px;
      color: rgb(14, 43, 87);
      margin-bottom: 1.5rem;
    }

    .blog-detail-container .bd-login-prompt {
      background-color: rgba(14, 43, 87, 0.1);
      border: 1px solid rgb(14, 43, 87);
      padding: 15px;
      border-radius: 5px;
      margin-bottom: 2rem;
      font-size: 0.95rem;
    }

    .blog-detail-container .bd-comments-list .bd-comment {
      border-bottom: 1px solid #ddd;
      padding-bottom: 15px;
      margin-bottom: 15px;
    }

    .blog-detail-container .bd-comment-header {
      font-size: 1rem;
      font-weight: bold;
    }

    .blog-detail-container .bd-comment-actions a {
      font-size: 0.9rem;
      color: rgb(14, 43, 87);
      text-decoration: none;
      margin-left: 10px;
      transition: color 0.3s ease;
    }

    .blog-detail-container .bd-comment-actions a:hover {
      color: rgb(255, 201, 7);
    }

    .blog-detail-container .bd-comment-body p {
      font-size: 1.05rem;
      margin-top: 8px;
    }

    .blog-detail-container .bd-comment-replies {
      border-left: 2px solid #ddd;
      padding-left: 15px;
      margin-top: 10px;
    }

    /* --- Formulario de Comentarios --- */
    .blog-detail-container .bd-comment-form h4 {
      margin-bottom: 20px;
      color: rgb(14, 43, 87);
    }

    .blog-detail-container .bd-comment-form textarea {
      resize: vertical;
      border: 1px solid #ccc;
    }

    .blog-detail-container .bd-btn-submit {
      background-color: rgb(255, 201, 7);
      border: none;
      color: rgb(14, 43, 87);
      padding: 10px 20px;
      font-size: 1rem;
      transition: background-color 0.3s ease;
    }

    .blog-detail-container .bd-btn-submit:hover {
      background-color: rgb(14, 43, 87);
      color: #fff;
    }

    /* --- Sidebar con efecto sticky --- */
    .blog-detail-container .bd-sidebar {
      position: sticky;
      top: 20px;
    }

    .blog-detail-container .bd-sidebar h5 {
      color: rgb(14, 43, 87);
      margin-bottom: 15px;
    }

    .blog-detail-container .bd-sidebar a {
      color: rgb(14, 43, 87);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-detail-container .bd-sidebar a:hover {
      color: rgb(255, 201, 7);
    }

    .blog-detail-container .bd-sidebar ul li {
      margin-bottom: 10px;
    }

    /* --- Responsividad --- */
    @media (max-width: 768px) {
      .blog-detail-container .bd-title {
        font-size: 2rem;
      }

      .blog-detail-container .bd-meta span {
        display: block;
        margin: 3px 0;
      }
    }

    .modal-header {
      border-bottom: none;
    }



    /* ENCÁPSULAMOS TODO EN .about-container */
    .about-container {
      font-family: 'Arial', sans-serif;
      color: rgb(14, 43, 87);
      padding: 60px 0;
      background-color: #fff;
    }

    .about-container h2 {
      color: rgb(255, 201, 7);
      font-weight: bold;
    }

    .about-container .about-image {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

    .about-container .about-text {
      padding: 20px;
      background: white;
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .about-container .values-section {
      background: rgb(14, 43, 87);
      color: white;
      padding: 50px 20px;
      border-radius: 10px;
      text-align: center;
    }

    .about-container .values-section i {
      font-size: 40px;
      color: rgb(255, 201, 7);
    }

    .about-container .cta-section {
      text-align: center;
      margin-top: 40px;
    }

    .about-container .cta-button {
      background: rgb(255, 201, 7);
      color: rgb(14, 43, 87);
      font-weight: bold;
      padding: 12px 20px;
      border-radius: 5px;
      text-decoration: none;
      display: inline-block;
      transition: 0.3s;
    }

    .about-container .cta-button:hover {
      background: rgb(230, 180, 5);
      color: white;
    }




    /* General */
    .nuestro-pais-container {
      background-color: rgb(255, 255, 255);

    }

    .nuestro-pais-container .title {
      text-align: center;
      color: rgb(14, 43, 87);
      font-size: 2.5rem;
      font-weight: bold;
    }

    .nuestro-pais-container .intro {
      text-align: center;
      color: #444;
      font-size: 1.125rem;
      max-width: 800px;
      margin: 0 auto;
      padding: 10px 0;
    }

    /* Province Card */
    .nuestro-pais-container .province-card {
      margin-bottom: 30px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgb(0 0 0 / 16%);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .nuestro-pais-container .province-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    }

    .nuestro-pais-container .province-title {
      font-size: 1.8rem;
      color: rgb(255, 201, 7);
      margin-bottom: 45px;
      font-weight: bold;
    }

    .nuestro-pais-container .province-description {
      color: #777;
      font-size: 1rem;
    }

    .nuestro-pais-container .province-images {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      padding: 20px;
    }

    .nuestro-pais-container .province-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .nuestro-pais-container .province-card:hover .province-img {
      transform: scale(1.05);
    }

    .nuestro-pais-container .btn-primary {
      background-color: #0e2b57;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      text-align: center;
      transition: background-color 0.3s ease;
    }

    .nuestro-pais-container .btn-primary:hover {
      background-color: #ffcb07;
      color: #0e2b57;
    }

    .nuestro-pais-container .province-images2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      padding: 20px;
    }

    .overlay-country {
      background: url('/assets/images/background3.jpg') no-repeat center center/cover;
      position: relative;
      z-index: 1;
      min-height: 60vh;
    }

    .overlay-country h1 {
      color: rgb(255, 201, 7) !important;
    }

    .overlay-country p {
      color: #fff !important;
    }

    .overlay-country .content {
      position: relative;
      z-index: 1000;

    }

    .overlay-country div:first-child {
      height: 100%;
      width: 100%;
      background-color: #00000099;
      position: absolute;

    }




    .join-team-container {
      font-family: 'Arial', sans-serif;
    }

    /* Hero Section */
    .join-team-container .hero-section {
      background: url('/assets/images/agents.jpg') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      min-height: 60vh !important;
    }

    .join-team-container .hero-title {
      font-size: 2.5rem;
      color: #ffcb07;
    }

    .join-team-container .hero-subtitle {
      font-size: 1.2rem;
      margin: 15px 0;
    }

    .join-team-container .btn-primary {
      background: #ffcb07;
      color: #0e2b57;
      padding: 12px 25px;
      font-size: 1.2rem;
      border-radius: 5px;
      text-decoration: none;
    }

    /* Beneficios */
    .join-team-container .benefits-section {
      background: #0e2b57;
      color: #fff;
      padding: 80px 20px;
      text-align: center;
    }

    .join-team-container .section-title {
      font-size: 2rem;
      margin-bottom: 30px;
    }

    .join-team-container .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .join-team-container .benefit-item {
      background: #ffcb07;
      color: #0e2b57;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
    }

    .join-team-container .benefit-item i {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    /* Pasos de Registro */
    .join-team-container .steps-section {
      background: #fff;
      padding: 80px 20px;
      text-align: center;
    }

    .join-team-container .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .join-team-container .step-item {
      background: #0e2b57;
      color: #fff;
      padding: 20px;
      border-radius: 8px;
    }

    .join-team-container .step-item i {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #ffcb07;
    }

    /* CTA Final */
    .join-team-container .cta-section {
      background: #fff;
      color: #fff;
      text-align: center;
      padding: 50px 20px;
    }

    .join-team-container .cta-section h2 {
      color: #0e2b57;
    }

    .join-team-container .cta-section .btn-primary {
      background: #ffcb07;
      color: #0e2b57;
    }

    .overlay-join-team-container {
      height: 100%;
      width: 100%;
      position: absolute;
      margin: auto;
      top: 0;
      bottom: 0;
      background-color: #000000a6;
    }

    .pswp__ui.pswp__ui--hidden {
      display: none;
    }



    .legal-container {
      max-width: 800px;
      margin: 40px auto;
      padding: 25px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      font-family: Arial, sans-serif;
      color: #0e2b57;
    }

    .legal-container h1 {
      font-size: 30px;
      color: #ffcb07;
      text-align: center;
      margin-bottom: 25px;
      text-transform: uppercase;
    }

    .legal-container h2 {
      font-size: 22px;
      color: #0e2b57;
      border-bottom: 3px solid #ffcb07;
      padding-bottom: 5px;
      margin-top: 20px;
    }

    .legal-container p,
    .legal-container ul {
      font-size: 16px;
      line-height: 1.8;
      color: #000;
    }

    .legal-container ul {
      padding-left: 25px;
    }

    .legal-container li {
      margin-bottom: 10px;
    }

    .legal-container a {
      color: #ffcb07;
      text-decoration: none;
      font-weight: bold;
    }

    .legal-container a:hover {
      text-decoration: underline;
    }



    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .whatsapp-float a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: #fff;
      font-size: 32px;
      border-radius: 50%;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
      text-decoration: none;
      transition: background 0.3s ease-in-out;
    }

    .whatsapp-float a:hover {
      background-color: #1ebe57;
    }



    .theme-toggle {
      width: 28px;
      height: 28px;
      background-color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      transition: background-color 0.3s;
      position: fixed;
      right: 30px;
      top: 78px;
      z-index: 1000;
      opacity: 0;
      color: inherit;          /* Hereda el color del contenedor padre */
  text-decoration: none;   /* Quita el subrayado */
  cursor: pointer; 
      /* Empieza invisible */

    }

    .theme-toggle:hover {
      background-color: #f0f0f0;
            color: inherit;          /* Hereda el color del contenedor padre */
  text-decoration: none;   /* Quita el subrayado */
  cursor: pointer; 
    }


    .theme-toggle.visible {
      opacity: 1;
      pointer-events: all;
      /* Hacerlo interactuable cuando esté visible */
    }


    body.dark-mode {
      background-color: #121212;
      color: #fff;
    }

    body.light-mode {
      background-color: #fff;
      color: #000;
    }

    .fas {
      font-size: 15px;
      transition: transform 0.3s;
    }



    #img-change-profile {
      height: 120px;
      width: 120px;
      border-radius: 120px;
    }

    .agent-dashboard {
      background-color: #fff;
      color: #0e2b57;
      padding: 30px;
      /* font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; */
      min-height: 70vh;
    }

    /* Sidebar (tabs verticales) */
    .agent-dashboard .nav-pills {
      background-color: #0e2b57;
      padding: 20px;
      border-radius: 5px;
    }

    .agent-dashboard .nav-pills .nav-link {
      color: #ffc907;
      margin-bottom: 10px;
      border-radius: 0;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .agent-dashboard .nav-pills .nav-link.active,
    .agent-dashboard .nav-pills .nav-link:hover {
      background-color: #ffc907;
      color: #0e2b57;
    }

    /* Contenido principal */
    .agent-dashboard .tab-content {
      padding: 20px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 5px;
    }

    .agent-dashboard h2 {
      color: #0e2b57;
      margin-bottom: 20px;
      border-bottom: 2px solid #ffc907;
      padding-bottom: 10px;
    }

    /* Formularios */
    .agent-dashboard .form-control,
    .agent-dashboard .form-control-file,
    .agent-dashboard .form-group label {
      border-radius: 0;
    }

    /* Botones */
    .agent-dashboard .btn-primary {
      background-color: #ffc907;
      border-color: #ffc907;
      color: #0e2b57;
    }

    .agent-dashboard .btn-primary:hover {
      background-color: #ffc907;
      border-color: #ffc907;
      color: #0e2b57;
    }

    .agent-dashboard .btn-success {
      background-color: #ffc907;
      border-color: #ffc907;
      color: #0e2b57;
      transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .agent-dashboard .btn-success:hover,
    .agent-dashboard .btn-success:active {
      background-color: #0e2b57 !important;
      border-color: #0e2b57;
      color: #ffc907;
    }

    /* Tablas */
    .agent-dashboard table {
      background-color: #fff;
    }

    .agent-dashboard table thead {
      background-color: #0e2b57;
      color: #ffc907;
    }

    .agent-dashboard table tbody tr {
      border-bottom: 1px solid #ddd;
    }

    .agent-dashboard table tbody tr:hover {
      background-color: #ffc907;
      color: #0e2b57;
    }

    /* Sub-tabs (para Recursos) */
    .agent-dashboard .nav-tabs .nav-link {
      color: #0e2b57;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .agent-dashboard .nav-tabs .nav-link.active,
    .agent-dashboard .nav-tabs .nav-link:hover {
      background-color: #ffc907;
      color: #0e2b57;
    }


    /* Ajuste del icono de notificaciones */
    .notification-container {
      position: relative;
      display: inline-block;
    }

    .footer-nav-notifications {
      bottom: 0;
      position: sticky;
      padding-bottom: 15px;
      background-color: white;
    }

    .notification-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background-color: red;
      color: white;
      font-size: 89%;
      font-weight: bold;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      padding: 3px 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Ajuste del dropdown de notificaciones */
    .dropdown-menu.notifications {
      width: 700px;
      max-height: 400px;
      overflow-y: auto;
      white-space: normal;
      word-wrap: break-word;
      padding: 4px !important;
      padding-top: 0px !important;
      padding-bottom: 0px !important;

    }

    .notification-item {
      font-size: 14px;
      padding: 10px;
      border-bottom: 1px solid #eee;
      white-space: normal;
      word-wrap: break-word;
      margin-bottom: 3px;
    }

    .notification-item-title {
      margin: 0px;
      color: #0e2b57;
      font-weight: 700;
      font-size: 14px;

      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;

    }

    #kt_table_notifications .notification-item-message {
      margin: 0px;
      color: #000;
      font-size: 13px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1.1;
      margin-top: 8px;
      font-weight: 100 !important;

    }

    #kt_table_notifications td {
      padding: 0px;
    }


    .notification-item-message {
      margin: 0px;
      color: rgb(181, 181, 181);
      font-size: 13px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1.1;
      margin-top: 8px;
      font-weight: 100 !important;

    }

    .notification-unread {
      background-color: #f6f6f6;
    }

    .notification-item-date {}

    .notification-item:last-child {
      border-bottom: none;
    }

    .logout-nav {
      color: #0e2b57;
      font-weight: bold;
      font-size: 14px;
    }

    .title-menu-nav-notifications {
      font-size: 16px;
      font-weight: bold;
      color: #ffc907;
      padding: 10px;
      top: 0;
      position: sticky;
      padding-bottom: 15px;
      background-color: #fff;
      width: 100%;
    }

    .see-all-notifications-nav {
      font-size: 14px;
      font-weight: bold;
      color: #0e2b57;
      padding: 0px;
    }



    /* Estilos generales para el icono de notificaciones */
    .notification-container {
      position: relative;
      display: inline-block;
    }

    .notification-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background-color: red;
      color: white;
      font-size: 12px;
      font-weight: bold;
      border-radius: 50%;
      min-width: 20px;
      height: 20px;
      padding: 3px 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Estilos para el dropdown de notificaciones */
    .dropdown-menu.notifications {
      width: 420px;
      max-height: 400px;
      overflow-y: auto;
      white-space: normal;
      word-wrap: break-word;
    }

    .notification-item {
      font-size: 14px;
      padding: 10px;
      border-bottom: 1px solid #eee;
      white-space: normal;
      word-wrap: break-word;
    }

    .notification-item:last-child {
      border-bottom: none;
    }

    /* Solo en mobile, para ordenar los elementos */
    @media (max-width: 991px) {

      /* El contenedor de los íconos mobile se mostrará a la izquierda */
      .mobile-icons {
        display: flex;
        align-items: center;
      }

      .dropdown-menu.notifications {
        position: absolute !important;
        left: 50% !important;
        /* Centrar en la pantalla */
        transform: translateX(-50%) !important;
        /* Corregir la posición */
        width: 90vw !important;
        /* Ocupar el 90% del ancho de la pantalla */
        max-width: 400px;
        /* Opcional, para no hacerlo demasiado ancho */
        z-index: 1050 !important;
        /* Asegurar que esté por encima de otros elementos */
      }

      /* Ajustar el contenedor padre para evitar restricciones */
      .nav-item.dropdown {
        position: static !important;
        /* Asegura que el dropdown no esté limitado */
      }

      .nav-link i {
        color: #0e2b57 !important;
        font-weight: 600;
        font-size: 15px;
      }
    }


    @media (max-width: 1199px) {
      .navbar-nav .nav-link {
        color: #0e2b57;
        font-weight: 600;
        font-size: 0.64rem;
      }
    }




    .alert {
      position: fixed;

      color: #fff;
      z-index: 10000;
      top: 5%;
      right: 0;
      left: 0;
      border-radius: 18px;
      /* margin: 20px; */
      margin-left: 10%;
      margin-right: 10%;
      margin-top: 20px;
      text-align: center;
      min-height: 50px;
      padding: 10px !important;
      padding-right: 45px !important;

    }

    .alert-relative {
      position: relative;
      color: #fff;
      z-index: 1000;
      top: 0px;
      right: 0;
      left: 0;
      border-radius: 18px;
      /* margin: 20px; */
      margin-left: 10%;
      margin-right: 10%;
      margin-top: 20px;
      text-align: center;
      min-height: 50px;
      padding: 10px !important;
      padding-right: 45px !important;

    }

    .alert-outline-danger {
      background-color: #ff0000cc;
    }


    .alert-warning {
      background-color: rgb(255, 217, 0) !important;
      color: rgb(14, 43, 87) !important;
    }

    .alert-outline-success {
      background-color: rgb(0, 134, 182) !important;
    }

    .alert-info {
      background-color: #0e2b57 !important;
    }

    .alert-close {
      position: absolute;
      top: 5px;
      right: 10px;

      cursor: pointer;
    }

    .alert-close button {
      padding: 10px;
    }

    .alert-close i {
      color: #fff;
      font-size: 24px;
    }

    .badge-danger {
      font-size: 12px;
      font-weight: bold;
      padding: 4px 7px;
      border-radius: 50%;
    }



    /* Asegura que los previews estén en un grid flexible */
    #propertyDropzone {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-start;
    }

    /* Estilo para cada preview (tamaño adaptable) */
    #propertyDropzone .dz-preview {
      width: calc(50% - 10px);
      /* 2 columnas con espacio */
      margin: 0 !important;
      margin-bottom: 20px !important;
      max-height: 500px !important;

    }

    /* Ajustar imagen */
    #propertyDropzone .dz-image {
      width: 100%;
      height: 100%;
    }

    #propertyDropzone .dz-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* o usa 'contain' si prefieres */
      image-rendering: auto;
    }



    .modal-preview {
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-preview img,
    .modal-preview video {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
    }

    .modal-preview .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 35px;
      font-weight: bold;
      color: white;
      cursor: pointer;
    }

    .price-inputs-filter {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.1rem;
      /* opcional, para espacio entre elementos */
    }


    /* Quita estilo nativo */
    /* Restablece apariencia nativa y deja fondo gris base */
    #plazoRange {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 100%;
      height: 8px;
      background: #e1e1e1;
      border-radius: 4px;
      outline: none;
    }

    /* Thumb para WebKit */
    #plazoRange::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgb(255, 217, 0);
      cursor: pointer;
      margin-top: -6px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    /* Thumb para Firefox */
    #plazoRange::-moz-range-thumb {
      width: 20px;
      height: 20px;
      border: none;
      border-radius: 50%;
      background: rgb(255, 217, 0);
      cursor: pointer;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    /* Thumb para IE */
    #plazoRange::-ms-thumb {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgb(255, 217, 0);
      cursor: pointer;
    }

    /* Importante: no pongas reglas para ::-webkit-slider-runnable-track ni ::-moz-range-track */



    .overlay-pilates {
      -webkit-touch-callout: none;
      /* iOS Safari */
      -webkit-user-select: none;
      /* Safari */
      -khtml-user-select: none;
      /* Konqueror HTML */
      -moz-user-select: none;
      /* Old versions of Firefox */
      -ms-user-select: none;
      /* Internet Explorer/Edge */
      user-select: none;
      /* Non-prefixed version, currently
supported by Chrome, Opera and Firefox */
    }

    .readonly-clean {
      background-color: white !important;
      color: black;
      border: 1px solid #ccc;
      cursor: pointer;

    }



    .whatsapp-chatbox {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 280px;
      background: white;
      border: 1px solid #ddd;
      border-radius: 10px;
      z-index: 1000;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      font-family: sans-serif;
    }

    .chat-header {
      background: #25d366;
      color: white;
      padding: 10px;
      border-radius: 10px 10px 0 0;
      font-weight: bold;
    }

    .chat-body {
      padding: 10px;
      font-size: 14px;
    }

    .chat-body textarea {
      width: 100%;
      height: 60px;
      resize: none;
      padding: 5px;
    }

    .chat-footer {
      padding: 10px;
      text-align: right;
    }

    .chat-footer button {
      background: #25d366;
      color: white;
      border: none;
      padding: 8px 12px;
      border-radius: 5px;
      cursor: pointer;
    }

    .hidden {
      display: none;
    }

    #modal-title-alert {
      color: rgb(14, 43, 87) !important;
      font-size: 16px;
      font-weight: bold;

    }

    #modal-message-alert {
      color: #000 !important;
      font-size: 14px;
    }


    .comment-item {
      transition: background-color 0.2s ease;
      padding: 8px;
      border-radius: 6px;
    }

    .comment-item:hover {
      background-color: #f0f8ff;
      box-shadow: 0 0 0 1px #ccc;
    }

    .bd-comment-actions a {
      text-decoration: none;
    }

    .date-article-blog {
      font-size: 14px;
      color: #ccc;
    }

    td.property-column {
      max-width: 100px;
      /* Limita el ancho */
      white-space: nowrap;
      /* No permite que el texto haga salto de línea */
      overflow: hidden;
      /* Oculta el texto que se sale */
      text-overflow: ellipsis;
      /* Muestra "..." */
    }



    .flatpickr-calendar {
      border: 1px solid rgb(14, 43, 87);
    }

    .flatpickr-day.selected {
      background: rgb(255, 217, 0);
      color: #000;
    }

    /* 1) Forzar que el contenedor padre tenga width:100% */
    #inlineCalendar {
      width: 100%;
    }

    /* 2) Anular el estilo de Flatpickr para inline: 
   - Quitar position:absolute 
   - Poner display:block 
   - Quitar max-width predeterminado 
   - Forzar width:100% */
    #inlineCalendar .flatpickr-calendar.inline {
      position: static !important;
      display: block !important;
      width: 100% !important;
      max-width: none !important;
      margin: 0;
      /* asegurarnos de que no haya márgenes extra */
    }

    /* 3) Ajustar el estilo interno si quieres 
   que las celdas y encabezados también ocupen todo el espacio */
    #inlineCalendar .flatpickr-calendar.inline .flatpickr-months,
    #inlineCalendar .flatpickr-calendar.inline .flatpickr-days {
      width: 100% !important;
    }

    /* 4) Si deseas controlar la altura (y activar scroll interno) */
    #inlineCalendar .flatpickr-calendar.inline {
      height: 400px;
      /* por ejemplo */
      overflow-y: auto;
      /* si el calendario es más alto, permitirá scroll */
    }

    .flatpickr-calendar.open,
    .flatpickr-calendar.inline {
      opacity: 1;
      max-height: 640px;
      visibility: visible;
      width: 100%;
    }

    .flatpickr-days {
      width: 100% !important;
    }

    .flatpickr-rContainer {
      width: 100% !important;
    }

    .dayContainer {
      width: 100% !important;
      max-width: 100% !important;
    }


    #kt_table_visits td {
      font-size: 12px !important;
    }

    #kt_table_visits th {
      font-size: 12px !important;
    }

    #kt_table_visits .btn-sm {
      padding: .25rem .5rem;
      border-radius: .2rem;

      font-size: 10px !important;
    }

    #kt_table_visits .btn-sm i {

      font-size: 9px !important;
    }




    #kt_table_visits_agent td {
      font-size: 12px !important;
    }

    #kt_table_visits_agent th {
      font-size: 12px !important;
    }

    #kt_table_visits_agent .btn-sm {
      padding: .25rem .5rem;
      border-radius: .2rem;

      font-size: 10px !important;
    }

    #kt_table_visits_agent .btn-sm i {

      font-size: 9px !important;
    }



    #kt_table_properties_agent td {
      vertical-align: middle;

    }

    td.property-column-agent {
      max-width: 100px;
      /* Limita el ancho */
      white-space: normal !important;
      word-wrap: break-word;
    }


    #kt_table_properties_agent td {
      font-size: 12px !important;
    }

    #kt_table_properties_agent th {
      font-size: 12px !important;
    }

    #kt_table_properties_agent .btn-sm {
      padding: .25rem .5rem;
      border-radius: .2rem;

      font-size: 10px !important;
    }

    #kt_table_properties_agent .btn-sm i {

      font-size: 9px !important;
    }

    .title-name-bank {
      color: rgb(14, 43, 87);
      font-weight: bold;
    }

    .card-hipoteca {
      border: none;
      border-radius: 30px;
      /* bordes muy redondeados */
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1),
        0 4px 6px rgba(0, 0, 0, 0.08);
      /* sombra profunda */
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      transform-style: preserve-3d;
      /* activa el 3D */
      perspective: 1000px;
    }

    /* Efecto al pasar el mouse: “elevarse” y ganar sombra */
    .card-hipoteca:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15),
        0 8px 10px rgba(0, 0, 0, 0.1);
    }


    #modalHipotecaLabel {
      color: rgb(14, 43, 87);
      font-size: 35px;
      font-style: normal;
      font-weight: bold;
    }

    .title-modal-banks {
      color: rgb(14, 43, 87);
      font-weight: bold;

    }


    .btn-outline-primary {}

    .btn-outline-secondary {}



    .property-detail-video-header-container {
      height: 300px;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
    }

    .property-detail-video-header {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .property-detail-video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      margin: 0;
    }

#navbarMenu .dropdown-item{
font-size: 12px;
}
