*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
   
}
@font-face {
  font-family: 'Noka';
  src: url('./assets/fonts/noka/Noka-Hairline.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Noka';
  src: url('./assets/fonts/noka/Noka-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Noka';
  src: url('./assets/fonts/noka/Noka-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Noka';
  src: url('./assets/fonts/noka/Noka-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Noka';
  src: url('./assets/fonts/noka/Noka-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Noka';
  src: url('./assets/fonts/noka/Noka-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Millonia';
  src: url('./assets/fonts/millonia/MilloniaRegular.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

body{
    font-family: 'Noka', sans-serif;
}
.animated-section {
    opacity: 0; /* Inicialmente invisible */
    transform: translateY(20px); /* Desplazamiento hacia abajo */
    animation: fadeInUp 0.5s ease forwards; /* Duración y tipo de animación */
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Sticky navbar */
.navbar-custom {
  width: 100%;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 50px 50px;
}

/* Container */
.navbar-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}

/* Hide checkbox */
#toggle-menu {
  display: none;
}

/* Hamburger icon */
.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
  user-select: none;
}

/* Navbar menu */
.navbar-menu {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.navbar-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* Logo */
.navbar-logo img {
  height: 120px;
}
.navbar-button a, .navbar-button a svg{
    color: #fff !important;
}

/* Button */
.navbar-button a {
  background: #3d611c;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  border: 2px solid #3d611c;
  transition: 0.3s ease;
}

.navbar-button a:hover {
  background-color: #2e4b14;
}

.logo-mobile {
  display: none;
  position: absolute;
  top: 10px;
  left: 10px;
}
.logo-mobile img {
  height: 80px;  /* Más pequeño para dispositivos móviles */
  max-width: 100px;
}



.hero {
    background: url('./assets/hero1.jpg') no-repeat;
    background-size: cover;
    background-position: start;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    height: 90vh;
    margin-top: -80px;
}
.hero h1 {
    font-size: 6.5rem;
    font-weight: bold;
    font-family: 'Millonia', sans-serif;
    line-height: 6.6rem;
}
.hero .lead {
    font-size: 1.25rem;
    margin-top: 20px;
    font-weight: bold;
}
.hero-container h1 span{
      font-size: 8rem !important;
}

.btn-whatsapp {
    background-color: #2E7D32;
    color: white;
    border: none;
    font-weight: bold;
}
.btn-whatsapp:hover {
    background-color: #256029;
}

/* --- Responsive Hamburger --- */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

#toggle-menu {
  display: none;
}

.hero-container{
    margin-top: 120px;
}


.info-section {
  position: relative;
  background: url('./assets/hero2.jpg') no-repeat center center;
  background-size: cover;
  color: white;
}

.info-overlay {
  background: rgba(82, 155, 82, 0.31);/* verde con opacidad */
  padding: 60px 20px;
  width: 100%;
}

.info-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.info-text {
  flex: 1 1 50%;
}

.info-text h2 {
  font-size: 3rem;
  font-weight: 600;
}

.info-text h2 strong {
  font-weight: 800;
}

.info-text p {
  font-size: 1rem;
  margin: 20px 0;
  line-height: 1.6;
  font-weight: bold;
}
.info-lema{
    display: flex;
}
.info-lema h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 30px;
}
.info-lema img{
    height: 120px;
}

.info-icons {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1 1 40%;
}

.icon-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-box img {
  width: 40px;
  height: auto;
}

.icon-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: bold;
}


.tipos-lotes {
  background: white;
  padding: 80px 20px;
  font-family: 'Noka', sans-serif;
}

.lotes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  gap: 40px;
}

.lotes-titulo h2 {
  font-size: 8rem;
  line-height: 1.1;
  color: #3e6734;
  font-weight: 700;
  font-family: 'Millonia', sans-serif;
}

.lotes-titulo h2 strong {
  font-weight: 800;
  font-size: 8.5rem;
}

.lotes-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lote-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #3e6734;
  color: white;
  padding: 15px 80px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 120px;
}

.lote-box img {
  width: 35px;
  height: auto;
  margin-top: 5px;
}

.lote-box h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.lote-box p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}


.inversion {
  background: white;
  padding: 30px 0px 0px 20px;
  font-family: 'Noka', sans-serif;
}
.inversion-imagen {
  background: url('./assets/hero3.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 80px 20px;
  font-family: 'Noka', sans-serif;
  border-radius: 200px 0px 0px;
  min-height: 600px;
}

.inversion-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.inversion-texto {
  flex: 1 1 50%;
}

.inversion-texto h2 {
  color: #009ec3;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Millonia', sans-serif;
}

.inversion-texto h2 span {
  font-weight: 400;
}

.inversion-beneficios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: column;
}

.beneficio img {
  width: 40px;
  height: auto;
}

.beneficio p {
  font-size: 1rem;
  color: #333;
  margin: 0;
  font-weight: 500;
}

.lotes-vendidos {
  color: #009ec3;
  font-size: 3rem;
  font-weight: bold;
  margin-top: 20px;
}

.inversion-imagen {
  flex: 1 1 40%;
  position: relative; /* Esto es CLAVE */
  min-height: 480px;  /* Altura mínima para el fondo */
}

.inversion-imagen img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-width: none;
}

  .video-section {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background-color: #009dc1; /* fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.5); /* darkens video for readability */
  }


.video-section {
  padding: 60px 20px;
  background: #f4f4f4;
}

.video-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  margin-top: 280px;
}

.video-text {
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 30px;
}

.video-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.video-text p {
  font-size: 1.2rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

.video-area, .map-area {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 12px;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galeria {
  padding: 40px 20px;
  text-align: center;
}

.galeria h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.galeria-img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria-img:hover {
  transform: scale(1.03);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-contenido {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
}

.cerrar {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  #toggle-menu:checked + .hamburger + .navbar-menu {
    display: flex;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .navbar-button a {
    width: 100%;
    justify-content: center;
  }

  .navbar-menu li {
    width: 100%;
    text-align: left;
  }
  .hamburger {
    display: block;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
  }

  #toggle-menu:checked + .hamburger + .navbar-menu {
    display: flex;
  }

  .navbar-button a {
    width: 100%;
    justify-content: center;
  }

  .navbar-menu li {
    width: 100%;
    text-align: center;
  }

  .navbar-logo {
    order: -1;
    width: 100%;
    text-align: center;
  }
   .logo-mobile {
    display: block;
    z-index: 1001;
    padding: 0px 10px;

  }
  .navbar-container{
    padding: 30px 40px;
  }
  .hero h1{
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .hero-container h1 span{
    font-size: 4rem !important;
    line-height: 4.1rem !important;
  }
  .lotes-titulo h2 {
    font-size: 3rem;
    font-weight: 600;
  }
    .lotes-titulo h2 strong {
    font-weight: 800;
    font-size: 3.5rem;
  }
    .video-area, .map-area {
    flex: 1 1 100%;
    min-height: 250px;
  }

  .video-text h2 {
    font-size: 1.8rem;
  }

  .video-text p {
    font-size: 1rem;
  }
    
}