:root {
  --bg: #071127;
  --bg-soft: #0d1f45;
  --card: rgba(11, 27, 62, 0.74);
  --card-strong: rgba(9, 24, 57, 0.95);
  --text: #f5f7ff;
  --muted: #c9d3ef;
  --gold: #f4c66a;
  --gold-strong: #d9a12b;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(39, 93, 209, 0.35), transparent 35%),
    linear-gradient(180deg, #081022 0%, #0b1630 35%, #060d1b 100%);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.bg-glow {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .22;
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 { top: -12rem; left: -10rem; background: #1f65ff; }
.bg-glow-2 { right: -8rem; top: 30%; background: #c89823; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 39, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fff0b9);
  color: #0b1430;
  font-size: 1.1rem;
  box-shadow: 0 10px 24px rgba(244, 198, 106, 0.25);
}
.brand strong, .section-title h2, .hero h1, .about h2, .cta-box h2 {
  font-family: 'Cinzel', serif;
}
.brand small { display: block; color: var(--muted); font-size: .76rem; margin-top: 3px; }
nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: .96rem; }
nav a:hover { color: #fff; }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(244, 198, 106, 0.5);
  color: #fff;
}

.hero, .services, .about, .gallery, .proof, .cta-section { position: relative; z-index: 1; }
.hero { padding: 74px 0 42px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  letter-spacing: .18em;
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  line-height: 1.05;
  margin: 0 0 18px;
}
.hero p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.offer-box {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(16,46,115,.82), rgba(11,27,62,.86));
  border: 1px solid rgba(244, 198, 106, 0.22);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.offer-label {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: 4px;
}
.offer-box strong { font-size: 1.4rem; color: #fff; }
.hero-points { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.hero-points span {
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #e8eeff;
  font-size: .92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #091229;
  background: linear-gradient(135deg, #f8d98f, var(--gold-strong));
  box-shadow: 0 12px 30px rgba(217, 161, 43, 0.34);
}
.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn.large { padding: 16px 28px; font-size: 1rem; }

.hero-visual {
  position: relative;
  min-height: 620px;
}
.hero-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.main-photo {
  width: min(100%, 470px);
  margin: 0 auto;
}
.main-photo img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  width: 220px;
}
.card-a { right: 12px; top: 14px; transform: rotate(6deg); }
.card-b { left: 0; bottom: 16px; transform: rotate(-7deg); }

.section-title {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}
.section-title h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin: 0 0 14px;
}
.section-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.services { padding: 52px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: linear-gradient(180deg, rgba(15,35,81,.9), rgba(7,17,39,.96));
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.service-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}
.service-content { padding: 22px; }
.service-content h3 { margin: 0 0 10px; font-size: 1.18rem; }
.service-content p { margin: 0; color: var(--muted); line-height: 1.75; }
.accent-card {
  display: flex;
  align-items: stretch;
  background: linear-gradient(145deg, rgba(214,159,37,.18), rgba(10,27,69,.98));
}
.icon-only { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.icon-badge {
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), #fce7b3); color: #0b1430; font-size: 1.25rem;
  margin-bottom: 16px;
}

.about { padding: 48px 0; }
.about-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: center;
}
.framed-image {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(244, 198, 106, 0.26);
  box-shadow: var(--shadow);
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.9rem); margin: 0 0 18px; }
.about-copy p { color: var(--muted); line-height: 1.8; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.feature-item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #eef2ff;
}
.feature-item span { color: var(--gold); margin-right: 8px; }

.gallery { padding: 46px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid img {
  border-radius: 24px;
  height: 520px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof { padding: 46px 0; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proof-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.proof-card h3 { margin: 0 0 10px; font-size: 1.18rem; }
.proof-card p { margin: 0; color: var(--muted); line-height: 1.75; }

.cta-section { padding: 54px 0 70px; }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(13,31,69,.95), rgba(7,17,39,.98));
  border: 1px solid rgba(244, 198, 106, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.cta-box h2 { margin: 0 0 10px; font-size: clamp(1.7rem, 3vw, 2.7rem); }
.cta-box p { margin: 0; color: var(--muted); line-height: 1.7; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.phone { color: var(--gold); font-weight: 600; }

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(2,8,18,.8);
}
.footer-wrap {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}
.footer p { margin: 8px 0 0; color: var(--muted); max-width: 680px; }
.footer-credit { text-align: right; }
.footer-credit span { display: block; color: var(--muted); margin-bottom: 6px; }
.footer-credit a { color: var(--gold); font-weight: 600; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  padding: 14px 18px;
  border-radius: 999px;
  color: #061120;
  background: linear-gradient(135deg, #f7d487, #d6a22c);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(214, 162, 44, 0.38);
}

@media (max-width: 1100px) {
  .hero-grid, .about-grid, .cta-box, .service-grid, .proof-grid, .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid .accent-card { grid-column: span 2; }
  .gallery-grid img { height: 420px; }
}

@media (max-width: 820px) {
  .nav { flex-direction: column; padding: 14px 0; }
  nav { justify-content: center; }
  .hero-grid, .about-grid, .service-grid, .proof-grid, .gallery-grid, .feature-list, .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }
  .service-grid .accent-card { grid-column: span 1; }
  .hero-visual { min-height: auto; padding-top: 10px; }
  .floating-card { position: static; width: 100%; transform: none; margin-top: 16px; }
  .main-photo { width: 100%; }
  .offer-box { flex-direction: column; align-items: stretch; }
  .cta-actions { align-items: stretch; }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-credit { text-align: left; }
}

@media (max-width: 560px) {
  .hero { padding-top: 44px; }
  .hero h1 { font-size: 2.1rem; }
  .section-title h2, .about-copy h2, .cta-box h2 { font-size: 1.7rem; }
  .gallery-grid img { height: 340px; }
  .whatsapp-float { left: 16px; right: 16px; text-align: center; }
}
