:root {
  --primary: #3A003B;
  --primary-700: #2a002b;
  --primary-600: #4d0050;
  --primary-300: #6f2a70;
  --secondary: #D47125;
  --secondary-600: #b85d18;
  --secondary-300: #e88b45;
  --light: #faf6fb;
  --light-2: #f3ebf4;
  --dark: #1b001c;
  --text: #2e2230;
  --muted: #7a6e7c;
  --white: #ffffff;
  --radius: 18px;
  --shadow-sm: 0 6px 18px rgba(58, 0, 59, .08);
  --shadow: 0 18px 50px rgba(58, 0, 59, .14);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 55%, var(--secondary) 140%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .navbar-brand { font-family: 'Poppins', sans-serif; }

a { text-decoration: none; }

/* ---------------- NAVBAR ---------------- */
.navbar {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0);
  transition: all .35s ease;
  z-index: 1030;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  padding: 8px 0;
}
.navbar .navbar-brand img { transition: transform .3s ease; }
.navbar .navbar-brand:hover img { transform: scale(1.05); }

.navbar .nav-link {
  color: var(--primary);
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  padding: 8px 14px !important;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.navbar .nav-link:hover::after { transform: scaleX(1); }

.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233A003B' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------------- BUTTONS ---------------- */
.btn { border-radius: 999px; font-weight: 600; font-family: 'Poppins', sans-serif; padding: 12px 26px; transition: all .25s ease; }
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 10px 24px rgba(58, 0, 59, .25);
}
.btn-primary-custom:hover { background: var(--primary-600); border-color: var(--primary-600); color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(58, 0, 59, .32); }

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-custom:not(:disabled):hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-outline-custom:disabled { opacity: .55; cursor: not-allowed; border-style: dashed; }

.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  border: 2px solid #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .35);
}
.btn-whatsapp:hover { background: #1ebd5b; color: #fff !important; transform: translateY(-2px); }

.btn-light-custom { background: var(--white); color: var(--primary); border: 2px solid var(--white); }
.btn-light-custom:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; transform: translateY(-2px); }
.btn-outline-light-custom { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline-light-custom:disabled { opacity: .6; cursor: not-allowed; border-style: dashed; }

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  background: var(--gradient);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(212, 113, 37, .35), transparent 40%),
                    radial-gradient(circle at 85% 80%, rgba(255,255,255,.10), transparent 45%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.badge-pill {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.12; margin-bottom: 20px; }
.text-gradient {
  background: linear-gradient(90deg, var(--secondary-300), #ffd9a8);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,.88); max-width: 540px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Poppins'; font-size: 1.7rem; color: var(--secondary-300); }
.hero-stats span { font-size: .85rem; color: rgba(255,255,255,.75); }

.hero-visual { position: relative; }
.hero-visual img { border: 4px solid rgba(255,255,255,.12); }
.float-card {
  position: absolute;
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  animation: floaty 4s ease-in-out infinite;
}
.float-card i { font-size: 1.5rem; color: var(--secondary); }
.float-card strong { display: block; font-family: 'Poppins'; font-size: .95rem; }
.float-card span { font-size: .78rem; color: var(--muted); }
.float-card-1 { top: 18px; left: -22px; }
.float-card-2 { bottom: 24px; right: -18px; animation-delay: 1.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-down {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 1.5rem; z-index: 3; animation: bob 2s infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ---------------- SECTIONS ---------------- */
.section { padding: 90px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--primary); color: #fff; }
.section-head { max-width: 680px; margin: 0 auto 50px; }

.section-eyebrow {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 10px;
}
.section-eyebrow.light { color: var(--secondary-300); }
.section-title { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; line-height: 1.18; margin-bottom: 14px; }
.section-text { color: var(--muted); font-size: 1.05rem; }

/* About */
.about-visual { position: relative; }
.about-visual img { border: 6px solid #fff; box-shadow: var(--shadow); }
.about-badge {
  position: absolute; top: -22px; right: -18px;
  width: 78px; height: 78px; border-radius: 22px;
  background: var(--secondary); color: #fff;
  display: grid; place-items: center; font-size: 2rem;
  box-shadow: var(--shadow); transform: rotate(-8deg);
}
.check-list { margin-top: 22px; display: grid; gap: 12px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.check-item i { color: var(--secondary); font-size: 1.25rem; margin-top: 3px; }

/* Services */
.service-card {
  background: #fff; border-radius: var(--radius); padding: 32px 26px;
  height: 100%; box-shadow: var(--shadow-sm); border: 1px solid var(--light-2);
  transition: all .3s ease;
}
.section-alt .service-card { background: #fff; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--secondary); }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  color: #fff; display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); margin: 0; font-size: .96rem; }

/* Process */
.process-step {
  background: var(--light-2); border-radius: var(--radius); padding: 30px 24px; height: 100%;
  position: relative; transition: transform .3s ease;
}
.process-step:hover { transform: translateY(-6px); }
.step-num {
  font-family: 'Poppins'; font-weight: 800; font-size: 2.4rem;
  color: var(--secondary); opacity: .85; display: block; margin-bottom: 8px;
}
.process-step h4 { font-size: 1.15rem; margin-bottom: 6px; }
.process-step p { color: var(--muted); margin: 0; font-size: .94rem; }

/* Features (dark) */
.feature-box {
  text-align: center; padding: 36px 26px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  transition: all .3s ease;
}
.feature-box:hover { background: rgba(255,255,255,.1); transform: translateY(-6px); }
.feature-box i { font-size: 2.4rem; color: var(--secondary-300); margin-bottom: 16px; }
.feature-box h4 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.feature-box p { color: rgba(255,255,255,.75); margin: 0; font-size: .95rem; }

/* Cases */
.case-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); height: 100%; transition: all .3s ease; }
.case-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.case-card img { width: 100%; height: 210px; object-fit: cover; }
.case-body { padding: 22px 22px 26px; }
.case-tag { display: inline-block; background: var(--light-2); color: var(--primary); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.case-body h4 { font-size: 1.18rem; margin-bottom: 6px; }
.case-body p { color: var(--muted); margin: 0; font-size: .94rem; }

/* CTA band */
.cta-band { background: var(--gradient); color: #fff; padding: 80px 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.88); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* Contact */
.contact-wrap { background: var(--light-2); border-radius: 26px; padding: 50px; box-shadow: var(--shadow-sm); }
.wa-bubble {
  background: #25D366; color: #fff; border-radius: 24px; padding: 36px 28px;
  box-shadow: 0 18px 40px rgba(37,211,102,.35); display: inline-block;
}
.wa-bubble i { font-size: 3rem; }
.wa-bubble h4 { margin: 10px 0 4px; font-weight: 700; }
.wa-bubble p { margin: 0; opacity: .9; }

/* Footer */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 60px 0 24px; }
.footer h5 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; font-weight: 600; }
.footer-text { font-size: .94rem; max-width: 320px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.7); transition: color .25s ease; }
.footer-links a:hover { color: var(--secondary-300); }
.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: all .25s ease; }
.social-icons a:hover { background: var(--secondary); transform: translateY(-3px); }
.footer-divider { border-color: rgba(255,255,255,.12); margin: 34px 0 18px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 1040;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  font-size: 1.8rem; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: ping 2s infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 991px) {
  .navbar { background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); }
  .navbar .nav-link { color: var(--primary); }
  .float-card-1 { left: 6px; }
  .float-card-2 { right: 6px; }
}
@media (max-width: 575px) {
  .hero { padding: 120px 0 70px; }
  .hero-stats { gap: 22px; }
  .contact-wrap { padding: 32px 22px; }
  .float-card { display: none; }
}
