*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
   
}
body, html {
  margin: 0;
  padding: 0;
}
/* ================= VARIABLES MARCA ================= */
:root {
  --nativo-azul: #9FC2D3;
  --nativo-amarillo: #E5D85C;
  --nativo-verde: #1F6B3A;
  --nativo-blanco: #ffffff;
  --nativo-oscuro: #0f1720;
}


.hero-slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 100vh;
  margin-top: 0;
}
.navbar-brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
}



.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.35)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.gsyn-menu-toggle{
background:none;
border:none;
width:32px;
height:24px;
display:flex;
flex-direction:column;
justify-content:space-between;
cursor:pointer;
z-index:1001;
}

.gsyn-menu-toggle span{
display:block;
height:3px;
width:100%;
background:#fff; /* blanco */
border-radius:3px;
transition:.35s ease;
}


.gsyn-menu-toggle.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.gsyn-menu-toggle.active span:nth-child(2){
opacity:0;
}

.gsyn-menu-toggle.active span:nth-child(3){
transform:rotate(-45deg) translate(6px,-6px);
}


.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.4)
  );
  top: 0;
  left: 0;
}
.nativo-navbar {
  background: transparent;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  z-index: 1000;
}

.nativo-navbar.scrolled {
  position: fixed !important;
  background: rgba(15, 23, 32, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
  min-height: 100vh;
  display:flex;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 15px;
  color: #d4af37;
}

.hero-text h1,
.hero-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* BOTONES PREMIUM */
.btn-luxury {
  background: #d4af37;
  color: #000;
  padding: 12px 28px;
  border-radius: 0;
  font-weight: 600;
  transition: 0.3s;
}

.btn-luxury:hover {
  background: #b8962f;
  color: #000;
}

.btn-outline-luxury {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 0;
  margin-left: 15px;
}

.btn-outline-luxury:hover {
  background: #fff;
  color: #000;
}

/* ANIMACIONES */
.animate-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}

.delay-2 {
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nativo-navbar .nav-link {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nativo-navbar .nav-link:hover {
  color: #d4af37;
}

/* BOTÓN CTA */
.nativo-cta {
  background: #d4af37;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 0;
  font-weight: 600;
  transition: 0.3s;
  border-radius: 25px;
}

.nativo-cta:hover {
  background: #b8962f;
  color: #000;
}


.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.footer-logo{
  height: 150px;
  width: auto;
  object-fit: contain;
}

.nativo-product-section{
  padding:100px 0;
  background:#f9fafb;
}

.precio{
  color:var(--nativo-verde);
  font-weight:700;
  margin-bottom:20px;
}

.feature-list{
  list-style:none;
  padding:0;
}

.feature-list li{
  margin-bottom:10px;
  padding-left:28px;
  position:relative;
}

.feature-list li:before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--nativo-verde);
  font-weight:bold;
}
.container{
  padding-left: 20px;
  padding-right: 20px;
}

.btn-brand{
  background:var(--nativo-amarillo);
  padding:12px 28px;
  border-radius:30px;
  font-weight:600;
  color:#000;
  text-decoration:none;
}
.btn-brand{
  background: var(--nativo-amarillo);
  color:#000;
  padding:14px 32px;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
  margin-top:25px;
  transition:.3s ease;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
.gallery-wrapper{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-brand:hover{
  background: var(--nativo-azul);
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.gallery-wrapper .main-image img{
  border-radius:20px;
  max-height: 450px;
}

.thumbs{
  display:flex;
  gap:10px;
  margin-top:15px;
}

.thumb{
  width:80px;
  border-radius:10px;
  cursor:pointer;
  opacity:.6;
}

.thumb.active,
.thumb:hover{
  opacity:1;
  border:2px solid var(--nativo-verde);
}
p{
  text-align: justify;
}
.subtitulo{
  color: var(--nativo-verde);
}

.section-header{
  padding:80px 0 40px;
}

.section-title{
  font-size:2.5rem;
  font-weight:700;
  letter-spacing:2px;
  color:var(--nativo-verde); /* azul oscuro elegante */
  margin-bottom:10px;
  text-transform:uppercase;
}

.section-subtitle{
  font-size:1.1rem;
  color:#a08462; /* tono cálido elegante */
  font-weight:500;
}


.equipo-section{
  padding:100px 0;
  background:#f8fafc;
}

.section-mini{
  display:inline-block;
  font-weight:600;
  letter-spacing:2px;
  font-size:0.85rem;
  color:var(--nativo-verde);
  margin-bottom:15px;
}

.equipo-title{
  font-size:2.5rem;
  font-weight:700;
  margin-bottom:20px;
}

.equipo-description{
  font-size:1.05rem;
  margin-bottom:25px;
  color:#555;
}

.equipo-list{
  list-style:none;
  padding:0;
}

.equipo-list li{
  margin-bottom:12px;
  padding-left:28px;
  position:relative;
  font-weight:500;
}

.equipo-list li:before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--nativo-verde);
  font-weight:bold;
}

/* VIDEO */

.video-card{
  border-radius:20px;
  overflow:hidden;
  
}

.video-wrapper{
  position:relative;
  padding-top:56.25%; /* 16:9 */
}

.video-wrapper video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.video-wrapper{
  position:relative;
  width:100%;
  max-width:380px; /* controla ancho elegante */
  margin:auto;
  aspect-ratio:9/16; /* formato reel */
  border-radius:20px;
  overflow:hidden;
}

.video-wrapper video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.proceso-section{
  padding:60px 0;
  background:#f8fafc;
}

.proceso-title{
  font-size:2.5rem;
  font-weight:700;
  margin-bottom:60px;
  color:#1f2a44;
}

.proceso-list{
  max-width:800px;
  margin:auto;
}

.proceso-item{
  display:flex;
  align-items:flex-start;
  margin-bottom:40px;
  gap:25px;
}

.proceso-number{
  min-width:70px;
  height:70px;
  border-radius:50%;
  background:var(--nativo-verde);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:700;
}

.proceso-item h4{
  font-weight:700;
  margin-bottom:8px;
  color:var(--nativo-verde);
}

.proceso-item p{
  margin:0;
  color:#555;
}
.gsyn-menu-toggle{
  display: none;
}

.cta-lote{
  position:relative;
  background:url('./assets/imagenbg.PNG') center/cover no-repeat;
  padding:120px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.cta-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,40,60,0.75),
    rgba(0,40,60,0.75)
  );
}

.cta-content{
  position:relative;
  z-index:2;
  max-width:900px;
}

.cta-lote h2{
  font-size:2.8rem;
  font-weight:700;
  line-height:1.3;
  margin-bottom:35px;
}

.cta-lote h2 span{
  color:#ffc107; /* Amarillo branding */
  font-weight:800;
}

.btn-cta-whatsapp{
  display:inline-block;
  background:#ffc107;
  color:#000;
  padding:16px 40px;
  font-weight:600;
  border-radius:50px;
  text-decoration:none;
  transition:0.3s ease;
  font-size:1.1rem;
}

.btn-cta-whatsapp:hover{
  background:#e0a800;
  transform:translateY(-3px);
}

.nativo-testimonios{
  padding:100px 0;
  background:linear-gradient(to bottom,#f7f9fb,#eef3f6);
}

.testimonios-header h2{
  font-size:2.5rem;
  font-weight:700;
  margin-bottom:10px;
}

.testimonios-header h2 span{
  color:var(--nativo-verde);
}

.testimonios-header p{
  color:#666;
  margin-bottom:50px;
  text-align: center;
}

.badge-testimonios{
  display:inline-block;
  padding:6px 18px;
  border-radius:30px;
  background:rgba(0,120,150,0.1);
  color:var(--nativo-azul);
  font-size:14px;
  margin-bottom:15px;
}

.testimonio-card{
  background:#fff;
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s ease;
  height:100%;
}

.testimonio-card:hover{
  transform:translateY(-8px);
}

.estrellas{
  color:#ffc107;
  margin-bottom:15px;
  font-size:18px;
}

.testimonio-card p{
  font-style:italic;
  color:#444;
  margin-bottom:25px;
}

.cliente-info{
  display:flex;
  align-items:center;
  gap:15px;
}

.cliente-avatar{
  width:55px;
  height:55px;
  border-radius:50%;
  background:var(--nativo-azul);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
}

.cliente-avatar.verde{
  background:var(--nativo-verde);
}

.cliente-avatar.amarillo{
  background:#ffc107;
  color:#000;
}

.cliente-info h6{
  margin:0;
  font-weight:600;
}

.cliente-info span{
  font-size:14px;
  color:#777;
}

.nativo-stats{
  background:#0f1115;
  color:#fff;
  padding:100px 0;
}

.stat-box h2{
  font-size:4rem;
  font-weight:800;
  color:#ffc107; /* Amarillo branding */
  margin-bottom:10px;
}

.stat-box p{
  font-size:1.1rem;
  color:#ccc;
  text-align: center;
}

/* ================= FOOTER NATIVO PREMIUM ================= */

.nativo-footer{
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #7fb8db 20%,
    #0c3b52 100%
  );
  color:#ffffff;
  padding:80px 0 40px;
  position:relative;
}

/* Logo */
.footer-logo{
  max-width:180px;
  filter:brightness(0) invert(1);
}

/* Texto descripción */
.nativo-footer p{
  color:rgba(255,255,255,0.85);
  font-size:15px;
  line-height:1.7;
}

/* Títulos */
.nativo-footer h5{
  font-weight:700;
  margin-bottom:20px;
  color:#ffffff;
  position:relative;
}

.nativo-footer h5::after{
  content:"";
  width:40px;
  height:3px;
  background:#ffc107;
  display:block;
  margin-top:8px;
}

/* Enlaces */
.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:rgba(255,255,255,0.8);
  text-decoration:none;
  transition:0.3s ease;
}

.footer-links a:hover{
  color:#ffc107;
  padding-left:5px;
}

/* Contacto iconos */
.nativo-footer i{

  color:#ffc107;
}

/* Redes sociales */
.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  margin-right:10px;
  color:#fff;
  transition:0.3s ease;
}

.footer-social a:hover{
  background:#ffc107;
  color:#000;
  transform:translateY(-3px);
}

/* Línea */
.nativo-footer hr{
  border-color:rgba(255,255,255,0.2);
  margin:40px 0 20px;
}

/* Copyright */
.nativo-footer .small{
  color:rgba(255,255,255,0.7);
}

.nativo-asesores{
  padding:100px 0;
  background:#f8fafc;
}

.asesores-header h2{
  font-size:2.5rem;
  font-weight:700;
  margin-bottom:10px;
}

.asesores-header span{
  color:var(--nativo-verde);
}

.asesores-header p{
  color:#666;
  margin-bottom:60px;
  font-size:1.1rem;
  text-align: center;
}

.asesor-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.asesor-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.asesor-img img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.asesor-info{
  padding:25px;
  text-align:center;
}

.asesor-info h5{
  font-weight:700;
  margin-bottom:20px;
}

.asesor-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
}

.btn-contactar{
  background:var(--nativo-verde);
  color:#fff;
  padding:10px 25px;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s ease;
}

.btn-contactar:hover{
  background:#0c7a47;
  color:#fff;
}

.instagram-link{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(0,0,0,0.05);
  color:#000;
  font-size:18px;
  transition:0.3s ease;
}

.instagram-link:hover{
  background:#ffc107;
  color:#000;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  color: #fff;
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-text h1,
  .hero-text h2 {
    font-size: 2rem;
  }

  .carousel-item {
    text-align: center;
  }

  .btn-outline-luxury {
    margin-left: 0;
  }
  .navbar-collapse {
    background: var(--nativo-oscuro);
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
  }

  .navbar-collapse .nav-link {
    color: #fff !important;
    padding: 10px 0;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
  .gsyn-menu-toggle{
    display: flex;
  }


}

@media (max-width: 768px) {
    .hero-text p {
    padding: 0px 30px;
  }
  .downgalery{
    margin-top: 40px;
  }
    .video-wrapper{
    max-width:420px;
  }
    .proceso-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .proceso-number{
    margin-bottom:10px;
  }
   .cta-lote{
    padding:80px 20px;
  }

  .cta-lote h2{
    font-size:1.8rem;
  }
    .testimonios-header h2{
    font-size:1.8rem;
  }
    .nativo-footer{
    text-align:center;
  }

  .footer-social{
    justify-content:center;
  }
  .stat-box h2{
    font-size:2.5rem;
  }
    .asesores-header h2{
    font-size:1.8rem;
  }

  .asesor-img img{
    height:650px;
  }
  
}

@media (max-width: 480px) {

  .btn-outline-luxury {
    margin-left: 0;
    margin-top: 15px;
  }

}