:root {
  --primary: #ff4d00;
  --primary-dark: #d83f00;
  --dark: #090909;
  --dark-2: #151515;
  --text: #242424;
  --muted: #6f6f6f;
  --soft: #f6f6f3;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { text-decoration: none; }

img { max-width: 100%; height: auto; }

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: .85rem 1.35rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 14px 32px rgba(255, 77, 0, .25);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.navbar {
  padding: 1rem 0;
  background: rgba(9, 9, 9, .45);
  backdrop-filter: blur(14px);
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}

.navbar.scrolled {
  padding: .65rem 0;
  background: rgba(9, 9, 9, .95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.navbar-brand { letter-spacing: -.03em; }

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .45rem;
  border-radius: 12px;
  background: var(--primary);
}

.nav-link {
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.nav-link:hover { color: var(--white); }

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,77,0,.45), transparent 35%),
    linear-gradient(135deg, rgba(0,0,0,.82), rgba(0,0,0,.96)),
    url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, rgba(0,0,0,.45));
  pointer-events: none;
}

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

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  margin-bottom: .85rem;
}

.section-label.light { color: #ffb18b; }

h1, h2, h3 { line-height: 1.1; font-weight: 900; letter-spacing: -.045em; }

h1 { font-size: clamp(2.45rem, 6vw, 5.4rem); max-width: 780px; }

h2 { font-size: clamp(2rem, 4vw, 3.5rem); }

h3 { font-size: 1.25rem; }

.hero-text {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 620px;
  margin-top: 1.25rem;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: .55rem .8rem;
  font-weight: 700;
}

.hero-benefits i { color: var(--primary); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  color: rgba(255,255,255,.82);
}

.hero-proof strong { color: var(--white); }

.hero-card {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  background: linear-gradient(160deg, rgba(255,77,0,.28), rgba(255,255,255,.10));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 1rem;
}

.hero-image-placeholder,
.about-photo,
.map-placeholder,
.result-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #232323, #111);
  color: rgba(255,255,255,.65);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 528px;
  border-radius: 34px;
}

.hero-image-placeholder i { font-size: 8rem; color: var(--primary); }

.floating-card {
  position: absolute;
  background: rgba(255,255,255,.94);
  color: var(--dark);
  border-radius: 20px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
}

.floating-card strong { display: block; font-size: 1.1rem; }
.floating-card span { color: var(--muted); font-size: .92rem; }
.top-card { top: 36px; left: 0; }
.bottom-card { right: 0; bottom: 42px; }

.stats-section {
  margin-top: -52px;
  position: relative;
  z-index: 5;
}

.stat-card {
  height: 100%;
  padding: 1.35rem .9rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--primary);
  line-height: 1;
}

.stat-card span { color: var(--muted); font-weight: 700; }

.section-padding { padding: 96px 0; }
.bg-soft { background: var(--soft); }
.bg-dark-custom { background: var(--dark); }

.section-heading { max-width: 760px; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }

.about-photo {
  min-height: 460px;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.about-photo i { font-size: 7rem; color: var(--primary); }

.check-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  padding: .95rem;
  background: var(--soft);
  border-radius: 16px;
}
.check-item i { color: var(--primary); }

.service-card,
.result-card,
.testimonial-card,
.plan-card,
.process-card {
  height: 100%;
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card,
.result-card,
.testimonial-card,
.plan-card {
  background: var(--white);
  box-shadow: 0 10px 36px rgba(0,0,0,.07);
}

.service-card { padding: 2rem; border: 1px solid rgba(0,0,0,.05); }
.service-card:hover,
.result-card:hover,
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255,77,0,.1);
  color: var(--primary);
  font-size: 1.55rem;
  margin-bottom: 1.3rem;
}
.service-card p,
.result-card p,
.plan-card p { color: var(--muted); margin-bottom: 0; }

.result-card { padding: 1rem; }
.result-photo {
  height: 220px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ececec, #d8d8d8);
  color: #999;
}
.result-card h3,
.result-card p { padding-inline: .35rem; }

.process-card {
  padding: 2rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.process-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  font-weight: 900;
  margin-bottom: 1.3rem;
}
.process-card p { color: rgba(255,255,255,.72); margin-bottom: 0; }

.testimonial-card {
  margin: 0;
  padding: 2rem;
  font-size: 1.12rem;
  font-weight: 700;
}
.testimonial-card footer {
  margin-top: 1.2rem;
  color: var(--primary);
  font-size: 1rem;
}

.plan-card {
  position: relative;
  padding: 2rem;
  border: 2px solid transparent;
}
.plan-card.featured {
  border-color: var(--primary);
  transform: scale(1.02);
}
.popular {
  display: inline-flex;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  padding: .35rem .8rem;
  font-weight: 900;
  font-size: .8rem;
  margin-bottom: 1rem;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.plan-card li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .8rem;
  font-weight: 700;
}
.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.cta-section {
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(9,9,9,.92), rgba(9,9,9,.85)),
    url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
}
.cta-box {
  max-width: 850px;
  margin: auto;
}
.cta-box p {
  max-width: 670px;
  margin: 1rem auto 2rem;
  color: rgba(255,255,255,.78);
}

.contact-list p {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  margin-bottom: .75rem;
}
.contact-list i { color: var(--primary); }
.map-placeholder {
  min-height: 360px;
  border-radius: 30px;
  background: linear-gradient(135deg, #efefef, #d9d9d9);
  color: var(--muted);
  flex-direction: column;
  gap: .75rem;
  font-weight: 800;
}
.map-placeholder i { font-size: 4rem; color: var(--primary); }

.footer {
  padding: 70px 0 28px;
  background: var(--dark);
  color: rgba(255,255,255,.72);
}
.footer h3,
.footer h4 { color: var(--white); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .55rem; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 1.9rem;
  box-shadow: 0 18px 38px rgba(37, 211, 102, .35);
}
.whatsapp-float:hover { color: white; transform: translateY(-3px); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(9,9,9,.98);
    border-radius: 20px;
  }
  .hero-section {
    min-height: auto;
    padding-top: 120px;
  }
  .hero-card { min-height: 420px; }
  .hero-image-placeholder { min-height: 388px; }
  .plan-card.featured { transform: none; }
}

@media (max-width: 575.98px) {
  .section-padding { padding: 72px 0; }
  .hero-benefits span { width: 100%; }
  .hero-card { min-height: 340px; border-radius: 28px; }
  .hero-image-placeholder { min-height: 310px; border-radius: 22px; }
  .floating-card { position: static; margin-top: .75rem; }
  .top-card, .bottom-card { inset: auto; }
  .stats-section { margin-top: -28px; }
  .about-photo { min-height: 320px; }
  .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}
