 :root {
    --primary-green: #0A883E;
    --accent-yellow: #FEEE00;
    --dark-bg: #1a1a2e;
    --light-bg: #F3F4F6;
    --text-dark: #3D3B3C;
    --text-gray: #6c757d;
    --shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
    color: var(--text-dark);
    overflow-x: hidden;
}

a{
    text-decoration: none;
}

.body-gray{
    background-color: #F3F4F6;
}

/* Barra superior */
.topbar{
  padding-top: 50px;
}

/* Logo */
.logo img{
  height: 98px;
}

.container.content-navbar{
  max-width: 1220px;
}

/* Caja del menú (fondo gris translúcido redondeado) */
.menu-box{
    background: rgb(255 255 255 / 25%);
    backdrop-filter: blur(6px);
    padding: 8px 14px;
    border-radius: 40px;
    border: 1px solid #ffffff3d;
    
  
}

.top-nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}


/* Botón amarillo */
.btn-pagos{
  background: var(--accent-yellow);
  color: #000 !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25)
}

/* Navbar */
.navbar-custom {
    background: rgb(239 239 239 / 77%);
    backdrop-filter: blur(2px);
    border-radius: 15px;
    padding: 4px 25px;
    margin: 25px auto;
    max-width: 95%;
    height: 56px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    transition: height 0.4s ease-in-out;
}

.navbar-custom.navbar-white{
  background: #fff;
}

.btn-red{
    font-size: 18px;
    font-weight: 700;
    background-color: var(--primary-red);
    color: #fff;
    padding: 5px 31px;
    border-radius: 12px;
}

.navbar-brand img {
    height: 37px;
    width: 170px;
    object-fit: cover;
}

.navbar-nav .nav-link {
    color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}


.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

.navbar.navbar-expanded{
    height: 160px;
}

.navbar.nav-w{
    box-shadow: 5px 5px 15px 5px #e1e1e1bf;
}

.navbar.nav-w .nav-item a{
    color: #393939;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 758px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}


.hero-section .bar-yellow{
    position: absolute;
    width: 74%;
    height: 14px;
    background: var(--accent-yellow);
    bottom: 19px;
    z-index: 2;
    left: 25px;
}
.overlay{
    position: absolute;
    background: #15151661;
    z-index: 1;
    inset: 0;
}
.video-bg{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-bg video{
    width: 100%;
}

.banner-main{
  position: relative;
  margin-top: 180px;
  z-index: 2;
}


.banner-main .text-banner h1{
  color: #fff;
  font-weight: 700;
  font-size: 64px;
}
.banner-main .text-banner h2{
  color: var(--primary-green);
  font-weight: 700;
  font-size: 40px;
}

.social-home{
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-top: 45px;
  gap: 20px;
}
.social-home li img{
  width: 32px;
  height: 32px;
}

/* Contenedor principal con efecto Glassmorphism */
.search-container {
    background: rgba(255, 255, 255, 0.07);
    background-blend-mode: screen;
    backdrop-filter: blur(6px); /* Efecto borroso detrás */
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 40px;
    width: 100%;
    max-width: 850px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Botones superiores verdes */
.btn-top-option {
    background-color: var(--primary-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 0;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--shadow);
    
}

.btn-top-option:hover,.btn-top-option.active {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

/* Estilos para los "Dropdowns" simulados */
.custom-select-trigger {
    background-color: #f8f9fa; /* Fondo casi blanco */
    border: none;
    border-radius: 8px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    width: 100%;
    font-size: 13px;
    color: #6c757d; /* Color de texto gris placeholder */
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

/* Icono de flecha verde */
.arrow-aup {
    background: url(../img/icons/arrow-up.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    width: 24px;
    height: 24px;
    position: relative;
    top: 7px;
}
.arrow-right{
    background: url(../img/icons/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    width: 23px;
    height: 26px;
    position: relative;
    top: 0px;
}

/* Input del código de vivienda */
.code-input-group {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 5px 20px;
    height: 55px;
    display: flex;
    align-items: center;
}

.code-input-group .bi-house {
    color: #0e8c43;
    font-size: 1.5rem;
    margin-right: 15px;
}

.code-input {
    border: none;
    background: transparent;
    width: 100%;
    color: #6c757d;
    font-weight: 400;
    font-size: 13px;
    outline: none;
    text-align: center;
}

.custom-dropdown-menu {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #f8f9fa; /* Mismo color que el input */
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            z-index: 1050; /* Por encima de todo */
            display: none; /* Oculto por defecto */
            min-height: 100%;
        }

        .custom-dropdown-menu.show {
            display: block;
            animation: fadeIn 0.2s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

 .dropdown-header-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #6c757d;
            font-weight: 500;
            margin-bottom: 15px;
            cursor: pointer;
            padding-bottom: 5px;
        }

        /* --- Estilos Específicos Dropdown "Propiedades" (Grid de botones) --- */
        .prop-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            max-height: 250px;
            overflow-y: scroll;
        }

        .prop-btn {
            background: white;
            border: 1px solid #ddd; /* Borde sutil */
            border-radius: 10px;
            padding: 4px 8px;
            display: flex;
            align-items: center;
            color: #6c757d;
            font-weight: 600;
            font-size: 11px;
            width: auto;
            text-align: left;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: transform 0.1s;
        }

        .prop-grid .prop-btn img{
            width: 25px;
        }

        .prop-btn:hover {
            background-color: #fff;
            border-color: #0e8c43; /* Verde al hover */
        }
        
        .prop-btn i {
            color: #0e8c43; /* Icono verde */
            font-size: 1.2rem;
            margin-right: 12px;
        }

        /* Fila de dos botones */
        .prop-row-dual {
            display: flex;
            gap: 10px;
        }
        .prop-row-dual .prop-btn {
            width: 50%;
        }
        .prop-btn-half {
            width: fit-content;
            min-width: 45%;
        }

        /* --- Estilos Específicos Dropdown "Ubicación" (Lista) --- */
        .location-list {
            list-style: none;
            padding: 0;
            margin: 0;
            max-height: 250px;
           overflow-y: scroll;
        }

        .location-list li {
            padding: 5px 0;
            color: #606060;
            font-weight: 500;
            cursor: pointer;
            font-size: 13px;
            transition: color 0.2s;
        }

        .location-list li:hover {
            color: #0e8c43;
            font-weight: 500;
        }

.code-input::placeholder {
    color: #b0b0b0;
}

/* Botón final de Buscar */
.btn-search-main {
    background-color: #595959; /* Gris oscuro */
    color: white;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px;
    border: none;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-size: 1.1rem;
}

.btn-search-main:hover {
    background-color: #404040;
    color: white;
}

.gap-custom {
    gap: 15px;
}

.mb-custom {
    margin-bottom: 15px;
}

.cont-box-search{
    position: relative;
    top: 250px;
    z-index: 2;
    width: 1280px;
}
.cont-box-search .hero-title{
    margin-bottom: 30px;
    color: #fff;
     font-size: 36px;
     font-weight: 300;
    margin-top: 60px;
    text-align: center;
   line-height: 1; 
   letter-spacing: 0;
}

.cont-box-search .hero-title span{
    font-weight: 700;
}

.cont-box-search .middle-round,.cont-box-search a.full-square,.cont-box-search .middle-right{
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #3D3B3C;
}

.cont-box-search .middle-round{
  
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  
}
.cont-box-search .middle-right{
  
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  
}
.cont-box-search .toggle-btn.active{
  background: var(--primary-red);
  color: #fff;
}

.cont-box-search .full-square{
  border-radius: 0px;
}

.properties-section-rent {
    position: relative;
    padding-top: 50px;
    background-color: #fff;
    background-image: url('../img/bg-rent.svg');
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: 75% 26%;
    top: -25px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    z-index: 1;
    
}

.properties-section-rent h2{
    color: var(--primary-green);
}

.properties-section-rent h2 span{
    font-weight: 700;
}

.properties-section-rent .cont-featured{
    margin-top: 64px;
}

/* Property Cards */
.property-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.property-type {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 15px 15px 10px;
}

.property-image {
    padding: 0 15px;;
}
.property-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.property-content {
    padding: 15px;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.property-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.property-code {
    position: relative;
    right: 14px;
    font-size: 16px;
    padding: 4px 20px;
    border-radius: 12px;
    font-weight: 700;
    color: #2d2b2b;
    background: var(--accent-yellow);
}

.property-description {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 15px;
}

.property-features {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 20px;
}

.property-content .bottom-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-content .bottom-card label{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

.feature-icon.area-green {
  background-image: url('../img/icons/icon-area-green.svg');
}
.feature-icon.bed-green {
  background-image: url('../img/icons/icon-room-green.svg');
}
.feature-icon.bath-green {
  background-image: url('../img/icons/icon-bathroom-green.svg');
}

.feature-icon.garage-green {
  background-image: url('../img/icons/icon-garage-green.svg');
  width: 32px;
  height: 32px;
}

.feature-icon.area {
  background-image: url('../img/icons/icon-area.svg');
}
.feature-icon.bed {
  background-image: url('../img/icons/icon-room.svg');
}

.feature-icon.bath {
  background-image: url('../img/icons/icon-bathroom.svg');
}

.feature-icon.garage {
  background-image: url('../img/icons/icon-garage.svg');
  width: 32px;
  height: 32px;
}

.feature-value {
  font-size: 16px;
  color: #2d2d2d;
  font-weight: 500;
}

.ver-mas-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    margin-top: 30px;
}





.property-card .btn-ver-mas {
    background-color: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.property-card .btn-ver-mas:hover {
    background-color: var(--text-dark);
}

.section-expert {
    position: relative;
    min-height: 635px;
    background-color: #fff;
}

.middle-circle{
    position: absolute;
    background: #0A883E;
    border-radius: 0 0 68% 0;
    max-width:960px;
    height: 100%;
    overflow: hidden;
}

.middle-circle .text-circle{
  position: absolute;
  left: 12%;
  bottom: 32%;
  
}

.middle-circle .text-circle h3{
    font-size: 78px;
    font-weight: 700;
    color: #fff;
    line-height: 0.6;
}

.middle-circle .text-circle h3 span{
    font-size: 64px;
}

.middle-circle .text-circle h4{
    color: #fff;
    font-weight: 700;
    font-size: 25px;
    margin-top: 20px;
}

.middle-circle .overlay-green{
     position: absolute;
    background: #0b893fa6;
    inset: 0;
}

.middle-circle .video-bg-circle{

}

.middle-circle .video-bg-circle video{

}

.section-expert .text-info-expert{
   position: absolute;
   right: 90px;
   bottom: 250px;
   max-width: 270px;
   text-align: center;
}

.section-expert .text-info-expert p{
    font-size: 28px;
    color: var(--primary-green);
    font-weight: 400;
    line-height: 1.0;
}

.section-expert .text-info-expert p span{
    font-weight: 700;
}
.section-expert .bar-yellow{
    position: absolute;
    width: 302px;
    height: 15px;
    background-color: var(--accent-yellow);
    bottom: -8px;
    left: 12px;
}

.btn-default{
    background: var(--primary-green);
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding: 10px 65px;
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border: none;
    transition: transform 0.3s ease;
}

.btn-default:hover{
    background: var(--text-dark);
    transform: scale(1.05);
}

.btn-gray{
    background: var(--text-gray);
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding: 10px 65px;
    border-radius: 12px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border: none;
}

.section-login{
    position: relative;
    background-image: url('../img/bg-login.png');
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: 105% 75%;
    padding-top: 100px;
    text-align: center;
    min-height: 750px;
}

.section-login h2{
    font-size: 36px;
    font-weight: 400;
    color: var(--primary-green);
}

.section-login h2 span{
    font-weight: 700;
}

.section-login .item-login{
    background-repeat: no-repeat;
    background-size: cover;
   position: relative;
   min-height:380px;
   border-radius: 25px;
   transition: transform 0.3s ease;

}

.section-login .item-login .text-item-login {
    position: absolute;
    width: 100%;
    background: var(--primary-green);
    padding: 25px 40px;
    border-radius: 0px 0px 25px 25px;
    bottom: 0;
    height: 90px;
    transition: height 0.4s ease;
    
}

.section-login .item-login .text-item-login h3{
    color: #fff;
    font-size: 25px;
}

.btn-login {
    margin-top: 15px;
    padding: 8px 18px;
    border: none;
    border-radius: 8px;
    background: #e5e5e5;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    color: var(--primary-green);
}

.item-login:hover .text-item-login{
   height: 170px;
}

.item-login:hover .btn-login{
 opacity: 1;
    transform: translateY(0);
}

.about-home {
    position: relative;
    text-align: left;
    padding-top: 100px;
}

.about-home h2{
 color: #3D3B3C;
 font-size: 30px;
 font-weight: 400;
}

.about-home h2 span{
    font-weight: 700;
}

.about-home hr{
    background-color: #3D3B3C;
    height: 5px;
    width: 380px;
    opacity: 1;
}

.about-home h3{
 font-size: 46px;
 font-weight: 300;
 color: var(--primary-green);
 text-transform: uppercase;
 line-height: 0.9;
}

.about-home h3 span{
font-size: 60px;
 font-weight: 700;
}

.about-home p{
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 300;
    line-height: 0.9;
}
.about-home .cont-image-about{
   background-repeat: no-repeat;
    background-size: 96%;
    text-align: right;
    background-position: 118% 19%;

}

.about-home .cont-image-about img{
    max-width: 90%;
}

.about-home .cont-image-about .bar-yellow{
    position: absolute;
    width: 295px;
    height: 16px;
    background-color: var(--accent-yellow);
    bottom: 15px;
    right: 25px;
}

.properties-last{
    position: relative;
    margin-top: 140px;
}

.properties-last h2{
    color: var(--primary-green);
}

.properties-last h2 span{
    font-weight: 700;
}

.btn-nav-last{
    text-align: center;
}

.btn-nav-last .carousel-btn{
     width: 32px;
     height: 32px;
     background: var(--primary-green);
     border-radius: 50%;
     border: none;
     font-size: 22px;
     font-weight: 400;
     color: #fff;
}

/*Testimonials*/
 .testimonials-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 220px;
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-section .section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 16;
    font-weight: 400;
    margin-top: 35px;
    margin-bottom: 50px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-section .testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonials-section .client-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonials-section .title-reviews{
    font-weight: 600;
    font-size: 35px;
    text-align: center;
}

.testimonials-section .client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e9ecef;
}

.testimonials-section .client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.testimonials-section .star-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonials-section .star-rating i {
    margin-right: 3px;
}

.testimonials-section .testimonial-text {
    color: #6c757d;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.testimonials-section .carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonials-section .btn-nav-last{
    margin-top: 35px;
}

.our-info-home {
    position: relative;
    margin-top: 160px;
}

.our-text-home h2{
    color: var(--primary-green);
    font-size: 52px;
    font-weight: 400;
    text-transform: uppercase;

}

.our-text-home h2 span{
    font-weight: 700;
}

.our-text-home p{
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 0.9;
}

.our-text-home p span{
    font-weight: 700;
}

.our-info-home .cont-map{
  height: auto;
  
}

.our-info-home .cont-map iframe{
    width: 100%;
    height: 350px;
    border-radius: 15px;
}

.footer{
  background: var(--text-dark); 
  padding-top: 60px;
  padding-bottom: 65px;
  position: relative;
}

.footer .logo-footer img{
    max-width: 100%;
}
.footer label.title-footer{
    font-size: 18px;
    font-weight: 500;
    color: var(--accent-yellow);
}

.footer ul{
    list-style-type: none;
    padding-left: 0;
    margin-top: 25px;
}

.footer ul li a{
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.footer .text-footer{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}

.footer .text-footer span{
    font-weight: 700;
}

.footer .map-footer iframe{
    width: 100%;
    height: 180px;
    border-radius: 15px;
}

.footer .bar-bottom{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 75px;
    text-align: center;
    font-weight: 300;
    padding-top: 8px;
    border-top: 2px solid #fff;
    background: var(--accent-yellow);
}

.banner-general .bar-yellow{
    position: absolute;
    bottom: 0;
    height: 15px;
    width: 80%;
    background: var(--accent-yellow);
    left: 0;
}

.hero-section.banner-general{
    min-height: 540px;
}

.hero-section.banner-general .video-bg video{
   height: 540px;
   object-fit: cover;
}

.banner-main .text-banner{
    position: relative;
    bottom: 55px;
}


.our-history{
    position: relative;
    margin-top: 70px;
}

.our-history h2{
    font-size: 25px;
    color: var(--primary-green);
    font-weight: 700;
}

.our-history h3{
    font-size: 35px;
    color: var(--primary-green);
    font-weight: 400;
}

.our-history h3 span{
    font-size: 50px;
    font-weight: 700;
}

.our-history p{
    font-size: 17px;
    text-align: justify;
    font-weight: 300;
    line-height: 1.0;
    color: var(--text-dark);
}

.our-history p strong{
    font-weight: 700;
}

.our-history .cont-img-vision{
    position: relative;
 background-repeat: no-repeat;
 background-size: 80%;
 background-position: 58% 58%;
}

.our-history .cont-img-vision img{
    max-width: 100%;
}

.our-history .cont-img-vision .bar-green{
    position: absolute;
    background: var(--primary-green);
    height: 11px;
    bottom: 0px;
    width: 285px;
    left: 147px;
}

.our-vision{
    position: relative;
    margin-top: 70px;
}

.our-vision h3{
    font-size: 35px;
    font-weight: 400;
    color: var(--primary-green);
}

.our-vision h3 span{
    font-size: 55px;
    font-weight: 700;
}

.our-vision p{
    font-weight: 400;
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.0;
}


.our-vision .item-text-vision{
    text-align: right;
    padding-right: 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.our-vision p{
    max-width: 480px;
    margin-top: 30px;
    
}

.our-vision .item-text-vision hr{
    opacity: 1;
    width: 360px;
    height: 8px;
    background: var(--accent-yellow);
    border-top: none;
    text-align: right;
    
}

.our-vision .item-image-vision img{
    max-width: 100%;
}

.our-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
    width: 100%;
    margin-top: 220px;
}

.our-banner .overlay-banner{
    position: absolute;
    background: #2e2e3196;
    inset: 0;
}

.our-banner .text-banner-our{
    position: absolute;
    left: 10%;
    bottom: 26%;
    max-width: 35%;
}

.our-banner .text-banner-our h2{
    font-size: 38px;
    font-weight: 700;
    line-height: 1.0;
    color: #fff;
}

.our-banner .text-banner-our hr{
    max-width: 90%;
    height: 5px;
    background-color: var(--accent-yellow);
    opacity: 1;
    border-top: none;
    margin-bottom: 35px;
}

.our-banner .img-banner-our{
    position: absolute;
    right: 18%;
    bottom: 0%;
    max-width: 35%;
}

.our-banner .img-banner-our img{
    max-width: 95%;
}

.contact-our{
    position: relative;
    margin-top: 90px;
    margin-bottom: 120px;
}

.contact-our h3{
 font-size: 35px;
 text-transform: uppercase;
 color: var(--primary-green);
 margin-bottom: 38px;
}

.form-contact .wrapper-contact{
    padding: 47px 85px;
    background: var(--primary-green);
    border-radius: 15px;
}

.form-contact .wrapper-contact input ,.form-contact .wrapper-contact select{
 border-radius: 25px;
 padding: 8px 22px;
 border: none;
}

.form-contact .wrapper-contact textarea{
   min-height: 180px; 
   border-radius: 25px;
   border: none;
   padding:  18px 25px;
}

.form-contact .terms{
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    color: #fff;
    margin-top: 48px;
}

.form-contact .terms input{
    margin-right: 14px;
    width: 20px;
    height: 20px;
}

.form-contact .terms a{
    font-weight: 700;
    color: var(--accent-yellow);
}

.form-contact .btn-gray,.form-contact .btn-default{
    margin: 0 auto;
    display: flex;
}

.form-contact .info-contact label{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.hero-consign {
    position: relative;
    min-height: 761px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.text-consign-banner{
    margin-top: 240px;
    z-index: 2;
}

.text-consign-banner h1{
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}
.text-consign-banner .btn-default{
    margin: 25px auto;
    display: flex;
}

.hero-consign .overlay-consign{
        position: absolute;
    inset: 0;
    background: #43414138;
}

.content-consign{
    position: relative;
    margin-top: 100px;
}

.content-consign h2{
    font-size: 50px;
    max-width: 50%;
    margin: 0 auto;
    font-weight: 700;
    text-align: center;
    line-height: 1.0;
    color: var(--primary-green);
}

.content-consign p{
    font-weight: 400;
    text-align: justify;
    color: var(--text-dark);
    line-height: 1.0;
}

.gallery-consign img{
    max-width: 100%;
    border-radius: 15px;
    height: 240px;
    object-fit: cover;
}

.content-consign .btn-default{
    margin: 64px auto;
    display: flex;
}

.modal-consign .modal-content{
    background-color: red;
    border-radius: 25px;
    background: #0a883ea6; 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
  padding: 21px 14px;
}

.modal-consign .modal-content .modal-title{
    color: #fff;
}

.modal-consign form input ,.modal-consign form select{
    border-radius: 25px;
    border: none;
}

.modal-consign form textarea{
    min-height: 110px;
}

.modal-consign .modal-content .modal-header{
    border-bottom: none;
}

.modal-consign .modal-content .modal-footer{
    border-top: none;
}

.modal-consign .modal-content .modal-footer p{
    color: #fff;
    font-weight: 400;
}

.modal-consign .modal-content .modal-footer p a{
    color: var(--accent-yellow);
}

.hero-repair {
    position: relative;
    min-height: 540px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.hero-repair .cont-text-repair{
    position: absolute;
    bottom: 24%;
    left: 9%;
    text-align: center;
}

.hero-repair .cont-text-repair h1{
    font-size: 55px;
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    
}
.cont-form-repair{
    position: relative;
    top: -70px;
    
}
.cont-form-repair .wrapper-contact{
    background:#606060e0;
}

.hero-repair .box-gradient{
    position: absolute;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    bottom: 0;
}

.our-info-home.our-repair{
    margin-top: 70px;
}

.contact-section {
    position: relative;
    margin-top: 117px;
}

.contact-section .form-contact h3{
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
.contact-section .form-contact .wrapper-contact{
    margin-top: 40px;
}

.page-general {
    position: relative;
    margin-top: 32px;
}
.page-general .header-page {
    text-align: center;
    margin-bottom: 65px;
}

.page-general .header-page h1{
    color: var(--primary-green);
    font-weight: 700;
    font-size: 35px;
}

.page-general .header-page hr{
    height: 8px;
    background: var(--accent-yellow);
    opacity: 1;
    width: 450px;
    border-top: none;
    display: flex;
    margin: 0 auto;
}
.page-general h2{
    font-size: 22px;
    color: var(--text-dark);
    text-align: center;
}

.page-general p,.page-general ul li{
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.0;
    text-align: justify;
}

.blog-section{
    position: relative;
    margin-top: 70px;
}

.blog-section .section-title {
      font-weight: 700;
      color: var(--primary-green);
      font-size: 35px;
      margin-bottom: 32px;
}

.article-card {
      margin-bottom: 40px;
}

.article-img-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: #ccc;
}

.article-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.article-card:hover .article-img-wrap img {
      transform: scale(1.04);
}
.article-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.65) 40%, transparent 70%);
      border-radius: 12px;
}

.article-img-title {
      position: absolute;
      bottom: 16px;
      left: 16px;
      z-index: 2;
      font-weight: 700;
      color: #fff;
      font-size: 38px;
      line-height: 1.0;
      text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.article-body {
    padding: 20px 26px;
}

.article-body p {
      font-size: 19px;
      font-weight: 400;
      color: var(--text-dark);
      line-height: 1.0;
      margin-bottom: 14px;
}

.article-card .btn-ver-mas {
      display: inline-block;
      background: var(--primary-green);
      color: #fff;
      font-weight: 700;
      font-size: 0.7rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 50px;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.2s ease;
}

.article-hero {
      position: relative;
      height: 420px;
      overflow: hidden;
    }
    .article-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.55);
    }
    .article-hero-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 50px 60px;
      max-width: 1200px;
      margin: 0 auto;
      right: 0;
      left: 0;
    }
    
    .article-hero-title {
      font-weight: 700;
      font-size: 45px;
      color: #fff;
      line-height: 1.2;
      max-width: 750px;
      margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 24px;
    color: rgba(255,255,255,.85);
    font-size: 13px;
    font-weight: 500;
}

 .content-wrapper-article {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 60px;
}

 .content-wrapper-article .article-body{
      font-size: 17px;
      line-height: 1.85;
      color: #444;
 }

.content-wrapper-article .article-body h2 {
      font-weight: 700;
      font-size: 25px;
      color: var(--primary-green);
      margin-top: 40px;
      margin-bottom: 14px;
}

.content-wrapper-article .article-body p {
    margin-bottom: 22px;
}

.article-footer {
      margin-top: 48px;
      padding-top: 28px;
      border-top: 2px solid #eee;
    }
    
    .share-label {
      font-weight: 700;
      font-size: 14px;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .share-btns { display: flex; gap: 10px; }
    .share-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      text-decoration: none;
      transition: transform .2s;
    }
    .share-btn:hover { transform: scale(1.12); }
    .share-btn.fb {
        background-color: #1877f2;
        background-image: url('../img/icons/fb-icon.svg');
        background-repeat: no-repeat;
        background-size: 26px;
        background-position: 7px 7px;
    }
    .share-btn.tw { background: #1da1f2; color: #fff; }
    .share-btn.wa {
        background-color: #25d366;
        background-image: url('../img/icons/ws-icon.svg');
        background-repeat: no-repeat;
        background-size: 32px;
        background-position: 5px 5px;
    }
    .share-btn.lk { background: #0a66c2; color: #fff; }

    /* ===== SIDEBAR ===== */
    .sidebar { position: relative; }
    .sidebar-sticky { position: sticky; top: 100px; }

    .sidebar-widget {
      margin-bottom: 32px;
    }
    .widget-title {
      font-weight: 800;
      font-size: 15px;
      color: var(--dark);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 3px solid var(--accent-yellow);
    }

    .cta-widget {
      background: var(--primary-green);
      border-radius: 16px;
      padding: 30px 24px;
      text-align: center;
      color: #fff;
    }
    
    .cta-widget h3 {
      font-weight: 700;
      font-size: 25px;
      margin-bottom: 10px;
    }
    .cta-widget p {
        font-weight: 300;
      font-size: 14px;
      opacity: .85;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .btn-cta {
      display: block;
      background: var(--accent-yellow);
      color: var(--text-dark);
      font-weight: 700;
      font-size: 14px;
      text-align: center;
      padding: 12px;
      border-radius: 30px;
      text-decoration: none;
      transition: background .2s;
    }
    .btn-cta:hover { background: var(--text-dark); color: #fff; }

    .recent-article {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 0;
      border-bottom: 1px solid #eee;
      text-decoration: none;
      transition: opacity .2s;
    }
    .recent-article:last-child { border-bottom: none; }
    .recent-article:hover { opacity: .75; }
    .recent-thumb {
      width: 70px;
      height: 70px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
      background: #ddd;
    }
    .recent-info { flex: 1; }
    .recent-title {
      font-weight: 600;
      font-size: 13px;
      color: var(--primary-green);
      line-height: 1.4;
      margin-bottom: 5px;
    }
    .recent-date {
      font-size: 12px;
      font-weight: 300;
      color: #999;
    }
.recent-thumb-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.cont-pagination{
    display: flex;
    justify-content: center;
}

.pagination li a,.pagination li span{
    font-size: 22px;
    font-weight: 300;
}
.pagination .page-item .page-link{
  color: var(--text-dark);
}
.pagination .page-item.active .page-link{
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.properties-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.properties-hero img.img-hero {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.55);
}

.properties-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px 60px;
    max-width: 1200px;
    margin: 0 auto;
    right: 0;
    left: 0;
}

.properties-hero .social-home{
    position: relative;
    z-index: 2;
}

.properties-hero .bar-yellow{
    position: absolute;
    width: 70%;
    height: 15px;
    background-color: var(--accent-yellow);
    bottom: -5px;
}

.properties-main {
    position: relative;
    margin-top: 65px;
}
.properties-main .title-properties h1{
    font-size: 36px;
    color: var(--primary-green);
    font-weight: 400;
}
.properties-main .title-properties span{
    font-weight: 700;
}

.properties-main .input-code {
    display: flex;
}
.properties-main .input-code .icon-code {
    width: 50px;
    height: 50px;
    padding: 12px;
    background: var(--primary-green);
}
.input-code .btn-code-input {
    width: 50px;
    height: 50px;
    position: relative;
    left: -36px;
    background-color: var(--primary-green);
    background-image: url(../img/icons/magnifying-glass.svg);
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: 50% 50%;
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.properties-main .input-code .icon-code img {
    width: 32px;
}
.properties-main .input-code input {
    border: none;
    width: 178px;
    padding-left: 8px;
    font-size: 14px;
    height: 50px;
}
.filter-section {
    
    padding: 20px 0;
    overflow: visible;
    margin-top: 25px;
}
.btn-main-filter {
    background-color: white;
    border-radius: 12px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #333;
    border: none;
    white-space: nowrap;
    transition: transform 0.2s;
}
.mega-filter-container {
    background-color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 5px 0;
    width: 80%;
    margin-left: 20px;
    border: 1px solid #bfbfbf;
}
.modal-title-icon {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}
.icon-filter {
    background-image: url(../img/icons/filter.svg);
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
}
.mega-filter-container .filter-item:not(:last-child) {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-right: 1px solid #ddd;
    cursor: pointer;
    position: relative;
    justify-content: center;
}
._icon_filter_1 {
    background: url(../img/icons/filter-icon-1.svg);
    background-repeat: no-repeat;
    background-size: 25px;
    width: 25px;
    height: 25px;
    margin-right: 11px;
}
._icon_filter_2 {
    background: url(../img/icons/filter-icon-2.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    width: 25px;
    height: 25px;
    margin-right: 11px;
}
._icon_filter_3 {
    background: url(../img/icons/filter-icon-3.svg);
    background-repeat: no-repeat;
    background-size: 25px;
    width: 25px;
    height: 25px;
    margin-right: 11px;
}
._icon_filter_4 {
    background: url(../img/icons/filter-icon-4.svg);
    background-repeat: no-repeat;
    background-size: 25px;
    width: 25px;
    height: 25px;
    margin-right: 11px;
}
.content-property {
    padding: 50px 0;
    position: relative;
}
.content-property .property-title {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 20px;
}
.content-property .property-description {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

.content-property .code-pr{
  font-weight: 400;
}

.content-property .code-pr span{
    background-color: var(--accent-yellow);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 14px;
    margin-left: 4px;
}
.gallery-container {
    display: flex;
    gap: 10px;
    height: 500px;
    position: relative;
}
.gallery-col-small {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gallery-col-small .img-wrapper {
    flex: 1;
    overflow: hidden;
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}
.gallery-col-large {
    width: 70%;
}
.cnt-more-photos {
    position: absolute;
    background: var(--primary-green);
    padding: 8px 15px;
    bottom: 8px;
    border-radius: 12px;
    left: 8px;
    cursor: pointer;
}
.cnt-more-photos label {
    font-weight: 500;
    color: #fff;
}
.cnt-more-photos img {
    width: 22px;
}
.title-list-featured {
    position: relative;
    margin-top: 55px;
    margin-bottom: 40px;
}
.list-featured-data {
    column-count: 3;
    column-gap: 30px;
    list-style: none;
    padding: 38px 78px;
    margin: 0;
    background: #08713014;
    border-radius: 15px;
}
.list-featured-data li {
    break-inside: avoid;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
    font-weight: 400;
}
.title-list-featured h3 {
    font-size: 25px;
    color: var(--primary-green);
}
.title-list-featured h3 span{
    font-weight: 700;
}
.title-list-featured hr {
    max-width: 250px;
    opacity: 1;
    height: 2px;
    background: var(--accent-yellow);
    border-top: none;
}

.data-matricula{
    position: relative;
    margin-top: 85px;
    border-radius: 25px;
    border:4px solid #3D3B3C;
    padding: 15px 0;
}
.data-matricula h2{
    font-size: 25px;
    color: var(--primary-green);
    font-weight: 700;
    text-align: center;
}
.data-matricula .stripe-matricula{
    background: #3D3B3C;
    padding: 13px 55px;
    text-align: center;
}
.data-matricula .stripe-matricula p{
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.data-matricula .legend{
    padding: 12px 100px;
}
.data-matricula .legend p{
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
    color:var(--text-dark);
    text-align: center;
}

.modal-filter-main{
    max-width: 1100px;
}
.modal-filter-main .modal-footer{
    border-top: none;
}

.modal-content-custom {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    padding: 30px;
    background: white;
}

.modal-top-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.modal-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
    width: 50%;
    gap: 7px;
}
.modal-tab-btn {
    flex: 1;
    background: none;
    border: 1px solid #80808057;
    padding: 15px 0;
    font-weight: 700;
    color: #282828;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    cursor: pointer;
    box-shadow: 0px 4px 9px -4px rgba(0, 0, 0, 0.87);
}
.modal-tab-btn.active {
    background: var(--primary-green);
    color: #fff;
}
.col-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}
.prop-type-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 250px;
    overflow-y: scroll;
}
.prop-type-grid .prop-btn {
    background: white;
    border-radius: 7px;
    padding: 3px 5px;
    font-size: 13px;
    color: #535353;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #535353;
}
.prop-type-grid .icon-type {
    width: 25px;
}

.prop-type-grid .prop-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.price-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.price-input {
    border: 1px solid #777;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    outline: none;
}
.dark-label-pill {
    color: #333;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 110px;
}

.modal-counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.modal-counter-control {
    border: 1px solid #777;
    border-radius: 8px;
    display: flex;
    align-items: center;
    height: 36px;
    background: white;
    min-width: 100px;
    justify-content: space-between;
    padding: 0 5px;
}
.modal-counter-btn {
    background: none;
    border: none;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 8px;
}
.modal-counter-control input.modal-counter-val {
    width: 25px;
    border: none;
    text-align: center;
}
.modal-counter-val {
    font-weight: 600;
    color: #333;
}

.list-sectors-prop{
    list-style-type: none;
    max-height: 250px;
    overflow-y: scroll;
}

.list-sectors-prop li{
    font-size: 14px;
    color: #606060;
    font-weight: 700;
    padding-bottom: 10px;
    cursor: pointer;
}
.list-sectors-prop li:hover{
    background-color: var(--primary-green);
    color: #fff;
}

.price-filter-home{
    position: relative;
    display: flex;
    flex-direction: column;
    
}

.price-filter-home input{
 margin-bottom: 12px;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 12px;
    border: none;
    text-align: center;
}
.price-filter-home button.apply{
    color: #fff;
    background: var(--text-dark);
    border: none;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
}
.code-input-group .icn-home{
    position: absolute;
    width: 28px;
    left: 32%;
}
.code-input-group .icn-home img{
    width: 100%;
}
.select-city {
  border: none;
  padding: 4px;
  width: 100%;
  outline: none;
  background: transparent;
  font-size: 14px;
}

.select-city option{
    color: #606060;
    font-weight: 500;
    cursor: pointer;
    font-size: 13px;
}

.municipio-select {
  border: none;
  padding: 4px;
  width: 100%;
  outline: none;
  font-size: 14px;
}

.municipio-select option {
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
    color: #606060;
    font-weight: 700;
}

.municipio-select option:checked {
  background: var(--primary-green);
  color: #fff;
}

.municipio-select option:hover {
  background-color: #f0f0f0;
}


.municipio-select:focus li{
    background-color: none;
}

.language-flags-container {
    position: fixed;
    bottom: 114px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.language-flags-container img {
    width: 30px;
    height: auto;
    border-radius: 4px;
    border: 1px solid #eee;
}

.hero-section.banner-contact video{

    width: 100%;
    inset: 0;
    position: absolute;
    height: 740px;
    object-fit: cover;
}

.properties-hero.hero-page{
  height: 250px;
  min-height: 250px;
}


/*Responsive*/
@media (max-width: 768px){
.content-navbar .logo{
         margin: 0 auto;
        left: 12px;
        position: absolute;
        z-index: 2;
}

.content-navbar .logo img{
    width: 105px;
    height: auto;
}

.navbar-nav .nav-link{
    color: #252424;
}

.menu-box{
    background: #fff;
    border-radius: 28px;
}
.navbar .navbar-nav{
padding: 20px 0px;
}

.banner-main{
    margin-top: 34px;
    margin-top: 77px;
}
.banner-main .text-banner{
    text-align: center;
}
.banner-main .text-banner h1{
    font-size: 28px;
}
.text-banner .social-home{
   margin-top: 14px;
   display: flex;
        justify-content: center; 
}
.video-bg video {
    height: 100vh;
    object-fit: cover;
}
.topbar {
    padding-top: 38px;
}

.properties-hero{
    height: 258px;
}

.properties-main {
    margin-top: 32px;
}

.properties-main .input-code{
    margin-top: 24px;
}

.properties-main .title-properties h1{
    font-size: 26px;
}
.modal-tabs{
    width: 100%;
}

.mega-filter-container {
    width: 100%;
    flex-direction: column;
    border: none;
}

.code-input-group .icn-home {
    left: 18%;
}
.hero-section .bar-yellow{
    display: none;
}
.search-container{
    padding: 25px;
}
.properties-section-rent{
    top: 12px;
}
.middle-circle{
    width: 100%;
    position: relative;
}
.section-expert .text-info-expert{
    position: relative;
        bottom: 0;
        text-align: center;
        margin: 0 auto;
        right: 0;
        padding-top: 36px;
}
.middle-circle .text-circle{
    left: 8%;
}
.middle-circle .text-circle h3 {
    font-size: 48px;
}
.middle-circle .text-circle h3 span{
    font-size: 48px;
}

.middle-circle .video-bg-circle video{
    height: 320px;
}
.section-expert{
 margin-top: 55px;
}

.section-expert .bar-yellow{
    display: none;
}

.section-expert .bar-yellow{
    font-size: 28px;
}
.section-login{
    padding-top: 20px;
}
.section-login .item-login{
    margin-bottom: 45px;
}

.top-nav {
    position: fixed;
}

.about-home{
    padding-top: 30px;
}
.about-home h3{
    font-size: 31px;
}
.about-home h3 span {
    font-size: 40px;
}
.about-home .cont-image-about .bar-yellow{
    bottom: 5px;
}
.properties-last{
    margin-top: 65px;
}
.testimonials-section{
    padding-top: 70px;
}
.testimonials-section .title-reviews{
    font-size: 26px;
}

.our-info-home{
    margin-top: 75px;
}
.our-text-home h2{
    font-size: 34px;
}
.footer .logo-footer{
    margin-bottom: 26px;
}
.footer .logo-footer img{
  width: 150px;
}

.footer .item-footer{
    text-align: center;
}
.footer .bar-bottom{
    height: 60px;
}

.list-featured-data{
    display: grid;
    padding: 29px 24px;
}

.our-history .cont-img-vision .bar-green{
    width: 80%;
    left: 0;
}

.hero-section.hero-about{
    min-height: 300px;
}

.hero-section.hero-about .video-bg video{
    height: 300px;
}

.our-vision{
    margin-top: 37px;
}

.our-history h3 span,.our-vision h3 span{
    font-size: 34px;
}
.our-vision .item-text-vision{
    padding-right: 30px;
}

.our-banner{
    margin-top: 79px;
    height: 224px;
}

.our-banner .text-banner-our{
        max-width: 100%;
        bottom: initial;
        top: 4%;
        left: initial;
        padding: 7px 31px;
        text-align: center;
}


.our-banner .text-banner-our h2{
    font-size: 24px;
}
.our-banner .img-banner-our{
    display: none;
}

.contact-our{
    margin-top: 37px;
}

.contact-our h3{
    font-size: 24px;
}

.form-contact .wrapper-contact{
    padding: 19px 39px;
}
.hero-consign{
    min-height: 315px;
}
.text-consign-banner{
    margin-top: 65px;
}
.text-consign-banner h1{
    font-size: 30px;
}
.content-consign {
    margin-top: 32px;
}
.content-consign h2{
    font-size: 26px;
    max-width: 85%;
}
.hero-repair{
    min-height: 367px;
}
.hero-repair .cont-text-repair h1 {
    font-size: 41px;
}
.our-info-home.our-repair{
    margin-top: 0;
}
.hero-repair .box-gradient{
    height: 132px;
}
.hero-section.banner-contact{

}

}

form label.error{
    color: #e91b1b;
    font-weight: 600;
    font-size: 18px;
}

.no_results_data {
    text-align: center;
    padding: 42px 0px;
    background: #acb9c0;
}

.no_results_data img {
    width: 120px;
}

.no_results_data p {
    font-weight: 600;
    font-size: 19px;
}

.mega-filter-container .filter-label {
    font-weight: 600;
    color: #aaa;
    font-size: 0.95rem;
    white-space: nowrap;
}