*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{
  background:#f4f1ea;
  color:#2b2b2b;
  overflow-x:hidden;
  scroll-behavior:smooth;
}

/* ===== NAV ===== */

/* ===== NAV ===== */

nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:80px;
  padding:0 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:999;
  background:rgba(15,15,15,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.logo{
  color:white;
  font-size:26px;
  font-weight:700;
  z-index:1001;
}

.nav-links{
  display:flex;
  gap:35px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  transition:.3s;
}

.nav-links a:hover{
  color:#d6a84f;
}

.menu-toggle{
  display:none;
}

/* ===== MOBILE ===== */

@media(max-width:900px){

  nav{
    height:75px;
    padding:0 6%;
  }

  .logo{
    font-size:22px;
  }

  .menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:45px;
    height:45px;
    border-radius:12px;
    background:#2b2b2b;
    color:white;
    font-size:24px;
    cursor:pointer;
    z-index:1001;
  }

  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    max-width:300px;
    height:100vh;
    background:#181818;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    padding:110px 35px;
    gap:30px;
    transition:.4s ease;
    box-shadow:-10px 0 30px rgba(0,0,0,.3);
  }

  .nav-links.active{
    right:0;
  }

  .nav-links a{
    font-size:18px;
    width:100%;
    padding-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,.06);
  }

}

/* ===== HERO ===== */

header{
  height:100vh;
  background:
  linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
  url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600&auto=format&fit=crop')
  center/cover;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.hero{
  max-width:900px;
  color:white;
}

.hero h1{
  font-size:72px;
  line-height:1.1;
}

.hero span{
  color:#d6a84f;
}

.hero p{
  margin-top:20px;
  font-size:24px;
  color:#e2e2e2;
}

/* ===== BOTONES ===== */

.buttons{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:18px 35px;
  border-radius:14px;
  text-decoration:none;
  font-weight:bold;
  transition:.3s;
}

.btn:hover{
  transform:translateY(-4px);
}

.btn-yellow{
  background:#d6a84f;
  color:white;
}

.btn-yellow:hover{
  background:#bf9444;
}

.btn-outline{
  border:2px solid white;
  color:white;
}

.btn-outline:hover{
  background:white;
  color:#222;
}

/* ===== SECCIONES ===== */

section{
  padding:100px 8%;
}

.gray{
  background:#ebe5db;
}

.dark{
  background:#222;
  color:white;
}

.white-section{
  background:#f8f5ef;
}

/* ===== TITULOS ===== */

.title{
  text-align:center;
  margin-bottom:60px;
}

.title h2{
  font-size:52px;
  margin-bottom:15px;
  color:#2b2b2b;
}

.dark .title h2{
  color:white;
}

.title p{
  color:#666;
  font-size:20px;
}

.dark .title p{
  color:#cfcfcf;
}

/* ===== CARDS ===== */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card{
  background:white;
  padding:40px;
  border-radius:25px;
  transition:.4s;
  border:1px solid #e6dfd3;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.card:hover{
  transform:translateY(-10px);
  border-color:#d6a84f;
}

.card h3{
  margin-bottom:15px;
  font-size:28px;
  color:#222;
}

.card p{
  color:#666;
  font-size:18px;
  line-height:1.7;
}

/* ===== GALERIA ===== */

.galeria-section{
  background:#f4f1ea;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.gallery-card{
  position:relative;
  height:420px;
  overflow:hidden;
  border-radius:25px;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.gallery-card:hover img{
  transform:scale(1.08);
}

.gallery-info{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:30px;
  background:linear-gradient(transparent,rgba(0,0,0,.75));
}

.gallery-info h3{
  color:white;
  font-size:32px;
}

/* ===== CTA ===== */

.cta-section{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:100px 8%;
  overflow:hidden;
}

.overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
  url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.cta-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:1000px;
}

.cta-content h2{
  font-size:70px;
  line-height:1.1;
  color:white;
}

.cta-content span{
  color:#d6a84f;
}

.cta-content p{
  margin:30px auto;
  max-width:850px;
  color:#e5e5e5;
  font-size:22px;
  line-height:1.8;
}

/* ===== PASOS ===== */

.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.step{
  background:#2d2d2d;
  padding:40px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,.05);
}

.step span{
  font-size:60px;
  color:#d6a84f;
  display:block;
  margin-bottom:20px;
  font-weight:bold;
}

.step p{
  color:#d6d6d6;
  font-size:20px;
  line-height:1.7;
}

/* ===== CONTACTO ===== */
.con-h2{
      color: white;
      font-size: 40px;
      
}

.contact-section{
  background:#2b2b2b;
  color:#222;
}

.modern-contact{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
  margin-top:60px;
}

.modern-card{
  background:white;
  padding:45px;
  border-radius:30px;
  transition:.4s;
  border:1px solid #2b2b2b;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.modern-card:hover{
  transform:translateY(-10px);
  border-color:#d6a84f;
}

.icon{
  font-size:55px;
  margin-bottom:25px;
}

.modern-card h3{
  font-size:34px;
  color:#2b2b2b;
  margin-bottom:20px;
}

.modern-card p{
  color:#666;
  font-size:16px;
  line-height:1.8;
}

.contact-buttons{
  margin-top:60px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

/* ===== FOOTER ===== */

footer{
  background:#222;
  color:#bdbdbd;
  text-align:center;
  padding:40px 20px;
}

footer span{
  display:block;
  color:#d6a84f;
  margin-top:10px;
  letter-spacing:3px;
}

/* ===== WHATSAPP ===== */

.whatsapp{
  position:fixed;
  bottom:25px;
  right:25px;
  width:65px;
  height:65px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  z-index:999;
  transition:.3s;
}

.whatsapp img{
  width:35px;
  height:35px;
}

.whatsapp:hover{
  transform:scale(1.1);
}

.whatsapp:hover{
  transform:scale(1.08);
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

  .hero h1{
    font-size:46px;
  }

  .hero p{
    font-size:20px;
  }

  .title h2{
    font-size:38px;
  }

  .cta-content h2{
    font-size:42px;
  }

  .cta-content p{
    font-size:18px;
  }

}