/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
svg,
span,
input,
select,
button,
textarea,
ion-icon {
  display: block;
}

img {
  height: auto;
}

input,
select,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: white;
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

body.active {
  overflow: hidden;
}

:focus-visible {
  outline-offset: 4px;
}

::selection {
  background-color: var(--deep-saffron);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: var(--cultured);
}

::-webkit-scrollbar-thumb {
  background-color: var(--deep-saffron);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--tangerine);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.h1, .h2, .h3, .h4 {
  color: var(--rich-black-fogra-29);
  line-height: 1.2;
  letter-spacing: 1px;
}

.h1, .h2 {
  font-size: var(--fs-1);
}

.h2, .h3, .h4 {
  font-weight: var(--fw-600);
}

.h3 {
  font-size: var(--fs-2);
}

.h4 {
  font-size: var(--fs-3);
}

.btn {
  background-color: var(--bg-color, var(--deep-saffron));
  color: var(--white);
  font-family: var(--ff-rubik);
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  height: var(--height, 45px);
  padding-inline: var(--padding-inline, 35px);
  transition: var(--transition-1);
}

.section {
  padding-block: var(--section-padding);
}

.section.white {
  background-color: var(--isabelline);
}

.w-100 {
  width: 100%;
}

.section-title>.span {
  display: inline-block;
  color: var(--deep-saffron);
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

/* .navbar, */
.header-btn-group .btn {
  display: none;
}

.header {
  --color: var(--black);
  --btn-color: #0D4171;
  background-color: white;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 20px;
  margin-top: -20px;
  z-index: 4;
}

.header.active {
  --color: var(--rich-black-fogra-29);
  --btn-color: #0D4171;

  position: fixed;
  top: -70px;
  background-color: #ffffff;
  box-shadow: var(--shadow-1);
  animation: slideIn 0.5s ease-out forwards;



}



.header .container {
  display: flex;
  align-items: center;

}

.logo {

  font-family: var(--ff-rubik);
  font-size: 2.8rem;
  font-weight: var(--fw-700);
  letter-spacing: -2px;
  margin-top: 10px;


}



.header-btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
  top: 10px; 
  right: 20px; 
width: 40px;
}



.search-btn ion-icon {
  --ionicon-stroke-width: 50px;
}

.nav-toggle-btn {
  display: block;
  display: grid;
  gap: 6px;
  margin-left: -0px;
  margin-top: 10px;
}

.line {
  width: 25px;
  height: 3px;
  background-color: var(--btn-color);
  border-radius: 5px;
  transition: var(--transition-1);
}

.line.middle {
  width: 25px;
}

.line.bottom {
  margin-left: auto;
}

.nav-toggle-btn.active .line.top {
  transform: translate(-1px, 5px) rotate(45deg);
}

.nav-toggle-btn.active .line.middle {
  transform: translate(-2px, -4px) rotate(-45deg);
}

.nav-toggle-btn.active .line.bottom {
  transform: translate(1px, -13px) rotate(45deg);
}

.navbar {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
background-color: #025099;
  padding-inline: 20px;
  box-shadow: grey;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: var(--transition-1);
  color: #ffffff;
}

.navbar.active {
  height: 110px;
  visibility: visible;
}

.navbar-list {
  margin-block: 10px;
}

.nav-item:not(:last-child) {
  border-block-end: 1px solid hsla(0, 0%, 0%, 0.04);
}

.navbar-link {
  color: var(--rich-black-fogra-29);
  font-size: var(--fs-4);
  font-family: var(--ff-rubik);
  font-weight: var(--fw-500);
  padding: 10px 15px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
  color: var(--dark-orange);
}
/*-----------------------------------*\
  #sSegundoHtml
\*-----------------------------------*/

.card-departamentos {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.departamentos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 20px;
  width: 100%;
  margin: 0 auto; 
}

.departamentos a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.departamentos img {
  width: 400px;
  height: 248px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.departamentos img:hover {
  transform: scale(1.05);
}

.titulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.titulo h1 {
  font-size: 25px;
  font-weight: 800;
  margin: 0;
  margin-left: 50px;
}

.seggundo {
  font-size: 1.5rem;
  margin-top: -10px;
}

.imgsdepart{
  width: 400px;
  height: 248px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.imgsdepartR{
  width: 410px;
  height: 248px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.imgsdepartMAN{
  width: 415px;
  height: 248px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.imgsdepartLeon{
  width: 407px;
  height: 248px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}


.imgsdepartEsteli{
  width: 420px;
  height: 248px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.acercade {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.foto {
  width: 600px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.foto img {
  padding: 20px;
  width: 360px;
  height: 250px;
  margin-left: 5px;
  border-radius: 30px;

}

.BarrioProd{
  position: absolute;
  margin-left: 25px;
  font-weight: 500;
  margin-top: -18px;
  color: #0D4171;
  font-size: 20px;
}

.ubicacioncasa{
  display: flex ;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.ubicacioncasa img{
  width: 22%;
  margin-top: -100px;
}

.ubicacioncasa h3{
  font-size: 14px;
  margin-top: -100px;
  margin-left: -20px;
  font-weight: 400;
  width: 500px;
  text-align: left;
}

.precioD h1{
  margin-top: -80px;
  margin-left: -185px;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.1rem;
}
.precioD hr{
  margin-left: 20px;
  width: 330px;
  color: #0D4171;
  background-color: #0D4171;
  height: 2px;
}

.precioD h3{
  margin-left: -230px;
  font-size: 15px;
  font-weight: 400;
  color: #0D4171;

}

.infocasa{
  display: flex ;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 10px;
}

.infocasa h1{
  color: #0D4171;
  font-size: 15px;
  font-weight: 400;
}

.Disponibilidades h1{
  position: absolute;
  background-color: rgb(9, 179, 9);
  width: 120px;
  height: 25px;
  color: #ffffff;
  font-size: 14px;
  border-radius: 10px;
  font-weight: 400;
  z-index: 1;
  margin-top: -55px;
  margin-left: 220px;
}

#Select{
  background-color: #a7a3a3;
}

#Disponible{
  position: absolute;
  background-color: rgb(9, 179, 9);
  width: 120px;
  height: 25px;
  color: #ffffff;
  font-size: 14px;
  border-radius: 10px;
  font-weight: 400;
  z-index: 1;
  margin-top: -55px;
  margin-left: 220px;
}
#Vendida{
  position: absolute;
  background-color: rgb(233, 57, 57);
  width: 120px;
  height: 25px;
  color: #ffffff;
  font-size: 14px;
  border-radius: 10px;
  font-weight: 400;
  z-index: 1;
  margin-top: -55px;
  margin-left: 220px;
}

.Proximamente{
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  margin-top: 90px;
}

#Rentada{
  position: absolute;
  background-color: rgb(179, 162, 9);
  width: 120px;
  height: 25px;
  color: #ffffff;
  font-size: 14px;
  border-radius: 10px;
  font-weight: 400;
  z-index: 1;
  margin-top: -55px;
  margin-left: 220px;
}

.clasificacion{
  position: absolute;
  display: flex ;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  margin-left: 35px;
}
.clasificacion h1{
  background-color: #0D4171;
  color: #ffffff;
  font-weight: 300;
  font-size: 18px;
  border-radius: 10px;
  width: 65px;
}

.foto img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .foto {
      width: 120px;
  }
}
@media (max-width: 480px) {
  .foto {
      width: 370px;
      height: 495px;
  }

  .Propiedades{
    width: 300px;
  }

}
  .Botonesfiltro{
    display: flex ;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .Botonesfiltro{
    display: flex ;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .btns{
    background-color: rgb(223, 223, 223);
    color: #000000;
    border-radius: 10px;
    width: 82px;
    height: 40px;
    font-weight: 400;
  }

    
/*-----------------------------------*\
  #Inicio Menu Casas
\*-----------------------------------*/

.h3-Nicaragua{
  position: absolute;
  margin-left: -240px;
  font-weight: 400;
  color: #535252;
  font-size: 24px;
}
.classDepart{
  display: flex ;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: -80px;
}

.classDepart img{
  width: 70px;
}

.classDepart h2{
  font-size: 45px;
  margin-left: -10px;
  color: #0D4171;
  letter-spacing: 2px;
}


.NUmeroPropiedades{
  display: flex ;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: -55%;
  margin-top: -22px;
}

.LogocasaNum{
  width: 8%;
}

.txtnumPropiedad{
  font-size: 15px;
  font-weight: 400;
}
/*-----------------------------------*\
  #
\*-----------------------------------*/

/*-----------------------------------*\
  #
\*-----------------------------------*/
.footer {
  overflow: hidden;
}
.social-icons {
  display: flex;
  justify-content: center; /* Centra los iconos horizontalmente */
  gap: 20px; /* Espacio entre los iconos */
}

.social-icons a {
  text-decoration: none;
  color: white; 
  font-size: 40px;
}

.social-icons a:hover {
  color: #cccccc; 
}

.footer-top {
  position: relative;
  padding-block: 120px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  border-block-end: 2px solid var(--independence_30);
}

.footer-top::after {
  content: url(../images/delivery-boy.svg);
  position: absolute;
  bottom: -11px;
  left: -160px;
  width: 160px;
  animation: running-cycle 20s linear infinite;
}

@keyframes running-cycle {
  0% {
    left: -160px;
  }

  100% {
    left: 100%;
  }
}

.footer-top .container {
  display: grid;
  gap: 30px;
}

.footer .logo {
  color: var(--rich-black-fogra-29);
  font-size: 3.2rem;
}

.footer-text {
  margin-block: 15px 25px;
}

.social-list {
  display: flex;
  gap: 5px;
}

.social-link {
  background-color: var(--dark-orange);
  color: var(--white);
  font-size: 1.5rem;
  padding: 10px;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) {
  background-color: var(--rich-black-fogra-29);
}

.footer-list-title {
  position: relative;
  max-width: max-content;
  color: var(--rich-black-fogra-29);
  font-family: var(--ff-rubik);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  letter-spacing: -1px;
  margin-block-end: 20px;
}

.footer-list-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 15px);
  background-color: var(--deep-saffron);
  width: 40px;
  height: 4px;
  border-inline-end: 5px solid var(--deep-saffron);
  box-shadow: inset -5px 0 0 var(--white);
}

.footer-list>li:not(:last-child) {
  margin-block-end: 15px;
}

.footer-list address {
  max-width: 20ch;
}

.footer-form {
  background-color: var(--white);
  padding: 30px;
  border: 1px solid var(--cultured);
  box-shadow: var(--shadow-2);
}

.input-wrapper {
  display: grid;
  gap: 10px;
  margin-block-end: 10px;
}

.input-field {
  color: var(--spanish-gray);
  font-size: var(--fs-4);
  border: 1px solid var(--cultured);
  padding: 8px 12px;
}

.input-field::placeholder {
  color: var(--spanish-gray);
}

.input-field::-webkit-calendar-picker-indicator {
  opacity: 0.5;
}

textarea.input-field {
  min-height: 50px;
  max-height: 150px;
  height: 100px;
  resize: vertical;
  margin-block-end: 10px;
}

.footer-form .btn {
  font-size: var(--fs-15);
  --height: 40px;
  --padding-inline: 25px;
}

.footer-form .btn:is(:hover, :focus) {
  background-color: var(--rich-black-fogra-29);
}

.footer-bottom {
  background-color: #0D4171;
  padding-block: 20px;
  text-align: center;
}

.copyright-link {
  display: inline-block;
}

.copyright-link:is(:hover, :focus) {
  text-decoration: underline;
}

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: #0D4171;
  color: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.back-top-btn:is(:hover, :focus) {
  background-color: var(--rich-black-fogra-29);
}
.contactanos {
    text-align: center;
    gap: 15px;
  }
  
  .contacto-item {
    display: flex;
    align-items: center;
    margin: 20px;
    height: 45px;
  }
  
  .contacto-item img {
    margin-left: 30px;
    width: 40px;
    height: 40px;
  }
  
  .contacto-item p {
    margin-left: 25px;
    color: #0D4171;
    font-weight: 300;
    font-size: 25px;
    width: 223px;
    height: 22px;
  }
  
  .realty {
    background-color: #0D4171;
    height: 85px;
  }
  
  #spammm{
    font-size: 17px;
  }
  
  .text-Realty {
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    padding: 30px;
  }