
:root{
  --primary:#7c3aed;
  --secondary:#a78bfa;
  --bg:#f8f5ff;
  --dark:#2e1065;
  --text:#52525b;
  --white:#ffffff;
}

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

body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  background:rgba(46,16,101,.92);
  backdrop-filter:blur(12px);
  padding:18px 0;
}

.navbar-brand{
  color:white;
  font-size:1.5rem;
  font-weight:700;
}

.nav-link{
  color:white!important;
  margin-left:16px;
  font-weight:500;
}

/* HERO */

.hero{
  padding:140px 0 100px;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.hero-badge{
  display:inline-block;
  background:#ede9fe;
  color:#6d28d9;
  padding:10px 18px;
  border-radius:50px;
  font-weight:600;
  margin-bottom:20px;
}

.hero h1{
  font-size:4rem;
  color:var(--dark);
  font-weight:700;
  line-height:1.1;
}

.hero p{
  font-size:1.1rem;
  margin:25px 0;
}

.hero-image img{
  width:100%;
  border-radius:30px;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-primary-custom,
.btn-outline-custom{
  padding:14px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.btn-primary-custom{
  background:var(--primary);
  color:white;
}

.btn-primary-custom:hover{
  transform:translateY(-3px);
}

.btn-outline-custom{
  border:2px solid var(--primary);
  color:var(--primary);
}

/* SECTION */

.section-header{
  margin-bottom:60px;
}

.section-badge{
  display:inline-block;
  background:#ede9fe;
  color:#6d28d9;
  padding:10px 18px;
  border-radius:50px;
  font-weight:600;
  margin-bottom:20px;
}

.section-header h2{
  color:var(--dark);
  font-size:3rem;
  font-weight:700;
}

.custom-card{
  background:white;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.4s;
  height:100%;
}

.custom-card:hover{
  transform:translateY(-10px);
}

.custom-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.card-content{
  padding:24px;
}

/* GALLERY */

.premium-gallery{
  background:white;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  min-height:320px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-item.large{
  grid-column:span 2;
}

.gallery-item.wide{
  grid-column:span 2;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.gallery-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.75),rgba(0,0,0,.1));
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:30px;
  color:white;
}

/* FOOTER */

.footer{
  background:#1e1b4b;
  color:white;
  padding:80px 20px;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:25px;
}

.footer-links a{
  color:white;
  text-decoration:none;
  padding:12px 20px;
  border-radius:50px;
  background:rgba(255,255,255,.1);
}

/* WHATSAPP */

.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  width:70px;
  height:70px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.2);
  z-index:999;
}

.whatsapp-float img{
  width:36px;
}

/* RESPONSIVE */

@media(max-width:992px){

  .hero-content{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:3rem;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide{
    grid-column:span 2;
  }

}

@media(max-width:768px){

  .hero{
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item.large,
  .gallery-item.wide{
    grid-column:span 1;
  }

  .section-header h2{
    font-size:2.2rem;
  }

}
