:root {
  --primary: #7d297f;
  --primary-dark: #611f63;
  --secondary: #a55aa7;
  --accent: #d8b5da;
  --soft: #f7f0f8;
  --text: #333333;
  --muted: #666666;
  --border: #ead9eb;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(125, 41, 127, 0.10);
  --radius: 20px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  font-size: 14px;
}
.topbar-inner {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(125,41,127,0.09);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img {
  width: 58px; height: 58px; object-fit: cover; border-radius: 14px;
  box-shadow: var(--shadow);
}
.brand-text h1 {
  margin: 0; font-size: 22px; color: var(--primary);
}
.brand-text p {
  margin: 2px 0 0; font-size: 13px; color: var(--muted);
}
.nav-toggle {
  display: none; background: var(--primary); color: white; border: 0;
  border-radius: 12px; padding: 10px 14px; font-size: 18px;
}
.nav-menu {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.nav-menu a {
  font-size: 15px; color: var(--text); padding: 8px 0; position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--primary); transition: width 0.25s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; border: 0; cursor: pointer;
  font-weight: bold; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: white; box-shadow: var(--shadow); }
.btn-secondary { background: var(--soft); color: var(--primary); border: 1px solid var(--border); }
.hero {
  padding: 88px 0 70px;
  background: radial-gradient(circle at top left, rgba(216,181,218,0.35), transparent 35%),
              linear-gradient(180deg, #ffffff 0%, #fbf8fc 100%);
}
.hero-grid,
.two-col,
.contact-grid,
.section-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; align-items: center;
}
.eyebrow {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  background: var(--soft); color: var(--primary); font-size: 13px; font-weight: bold; letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.hero h2, .page-hero h2 { font-size: clamp(34px, 5vw, 54px); line-height: 1.1; margin: 0 0 16px; color: var(--primary-dark); }
.hero p, .page-hero p { font-size: 17px; color: var(--muted); margin: 0 0 26px; }
.hero-card, .card, .stat, .contact-box, .product-card, .logo-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-visual {
  border-radius: 28px; overflow: hidden; box-shadow: 0 25px 70px rgba(125,41,127,0.18); position: relative;
}
.hero-visual img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.hero-badge {
  position: absolute; right: 20px; bottom: 20px; background: rgba(255,255,255,0.94); color: var(--primary);
  padding: 16px 18px; border-radius: 18px; min-width: 180px; box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 26px; line-height: 1; margin-bottom: 6px; }
.section { padding: 78px 0; }
.section-title { margin-bottom: 28px; }
.section-title h2 { margin: 0 0 10px; font-size: 36px; color: var(--primary-dark); }
.section-title p { margin: 0; color: var(--muted); max-width: 760px; }
.grid-3 {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
}
.grid-4 {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
}
.card, .product-card {
  overflow: hidden;
}
.card img, .product-card img {
  width: 100%; height: 250px; object-fit: cover;
}
.card-body, .product-card .content {
  padding: 24px;
}
.card h3, .product-card h3 { margin: 0 0 10px; color: var(--primary); }
.list-clean { margin: 0; padding-left: 18px; color: var(--muted); }
.list-clean li { margin: 8px 0; }
.stats {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; margin-top: 28px;
}
.stat { padding: 24px; text-align: center; }
.stat strong { display: block; font-size: 34px; color: var(--primary); margin-bottom: 6px; }
.page-hero {
  padding: 70px 0 56px;
  background: linear-gradient(180deg, #f9f3fa 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero.narrow { padding-bottom: 42px; }
.mini-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px;
}
.logo-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px;
}
.logo-card {
  min-height: 120px; display: flex; align-items: center; justify-content: center;
  padding: 20px; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.logo-card:hover { transform: translateY(-4px); }
.logo-card img { max-height: 68px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.88; }
.logo-card:hover img { filter: grayscale(0%); opacity: 1; }
.feature-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 20px;
}
.feature-item {
  border: 1px solid var(--border); background: var(--soft); border-radius: 18px; padding: 18px;
}
.feature-item strong { display: block; color: var(--primary); margin-bottom: 6px; }
.cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white; border-radius: 28px; padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.cta h3 { margin: 0 0 8px; font-size: 30px; }
.cta p { margin: 0; opacity: 0.9; }
.contact-box { padding: 28px; }
.contact-box h3 { margin-top: 0; color: var(--primary); }
.contact-details p { margin: 0 0 14px; color: var(--muted); }
.contact-details strong { color: var(--text); }
.form-group { margin-bottom: 16px; }
label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--text); }
input, textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid #d9c5da;
  font: inherit; color: var(--text); background: #fff;
}
textarea { min-height: 150px; resize: vertical; }
.map-box {
  overflow: hidden; border-radius: 24px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.map-box iframe { width: 100%; height: 420px; border: 0; display: block; }
.notice {
  padding: 15px 18px; border-radius: 14px; margin-bottom: 18px; font-weight: bold;
}
.notice.success { background: #eaf8ef; color: #1e7a39; }
.notice.error { background: #fff0f0; color: #a21f1f; }
.footer {
  margin-top: 60px;
  background: #5F1F61; color: rgba(255,255,255,0.88);
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; padding: 54px 0 28px;
}
.footer h4 { margin-top: 0; color: white; }
.footer a { color: rgba(255,255,255,0.88); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding: 18px 0 28px; font-size: 14px; color: rgba(255,255,255,0.7);
}
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; width: 58px; height: 58px;
  border-radius: 50%; background: #25d366; color: white; display: inline-flex;
  align-items: center; justify-content: center; box-shadow: 0 20px 45px rgba(37,211,102,0.35);
  z-index: 999; font-size: 28px; font-weight: bold;
}
.gallery-strip {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 24px;
}
.gallery-strip img { height: 230px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); }
@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-grid, .section-grid, .footer-grid, .feature-list, .grid-3, .grid-4, .stats, .logo-grid, .gallery-strip, .mini-grid {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none; position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); padding: 18px;
    background: white; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start;
  }
  .nav-menu.show { display: flex; }
  .cta { flex-direction: column; align-items: flex-start; }
  .hero-visual img { min-height: 300px; }
}



.banner-slider {
  position: relative;
  min-height: 48vh;
  width: min(var(--container), calc(100% - 32px));
  margin: 24px auto 0;
  overflow: hidden;
  background: #f4eef5;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.banner-slides {
  position: absolute;
  inset: 0;
}
.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}
.banner-slide.active {
  opacity: 1;
  transform: scale(1);
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,10,20,0.55) 0%, rgba(40,16,42,0.42) 30%, rgba(125,41,127,0.20) 58%, rgba(125,41,127,0.10) 100%);
}
.banner-content-wrap {
  position: relative;
  z-index: 2;
  min-height: 48vh;
  display: flex;
  align-items: flex-start;
  padding-top: 34px;
}
.banner-content {
  max-width: 640px;
  color: #fff;
  padding: 0 0 54px;
}
.banner-content h2 {
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.04;
  color: #fff;
  margin: 0 0 14px;
  text-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.banner-content p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 0 22px;
}
.banner-eyebrow {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.26);
  backdrop-filter: blur(6px);
}
.banner-btn-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.26);
}
.banner-btn-light:hover {
  background: rgba(255,255,255,0.22);
}
.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
}
.banner-dot.active {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
}
.hero-after-banner {
  padding-top: 72px;
}
@media (max-width: 980px) {
  .banner-slider {
    min-height: 40vh;
    width: calc(100% - 24px);
    margin-top: 16px;
    border-radius: 18px;
  }
  .banner-content-wrap {
    min-height: 40vh;
    padding-top: 22px;
  }
  .banner-content {
    max-width: 100%;
    padding: 0 0 60px;
  }
  .banner-content h2 {
    font-size: clamp(30px, 7vw, 40px);
    margin-bottom: 10px;
  }
  .banner-content p {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 18px;
  }
}

/* Premium subtle zoom per banner slide */
@keyframes bannerZoomIn {
  0% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.banner-slide { will-change: transform, opacity; }
.banner-slide.active { animation: bannerZoomIn 6s ease forwards; }
.banner-slide:not(.active) { transform: scale(1.06); }

/* Wider, cleaner homepage stats cards */
.stats{
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  align-items: stretch !important;
}
.stat{
  width: 100% !important;
  min-height: 100% !important;
  padding: 22px 18px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbf6fc 100%) !important;
  border: 1px solid rgba(125, 41, 127, 0.14) !important;
  box-shadow: 0 10px 24px rgba(125, 41, 127, 0.10) !important;
}
.stat strong{
  font-size: 30px !important;
  margin-bottom: 8px !important;
  color: var(--primary) !important;
}
.stat span{
  display: block !important;
  color: var(--muted) !important;
  line-height: 1.4 !important;
}
@media (max-width: 980px){
  .stats{ grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 640px){
  .stats{ grid-template-columns: 1fr !important; }
}
