:root {
  --bg: #080a08;
  --surface: #101510;
  --surface-2: #172116;
  --card: #ffffff;
  --text: #111811;
  --muted: #5f6b5d;
  --white: #ffffff;
  --cream: #fffaf0;
  --gold: #f4c542;
  --gold-dark: #c99a16;
  --green: #0d5b37;
  --green-2: #0f7a47;
  --red: #e11d2e;
  --border: rgba(255,255,255,.12);
  --shadow: 0 24px 70px rgba(0,0,0,.18);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.topbar {
  background: #071007;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
  min-height: 36px;
  flex-wrap: wrap;
}

.topbar a { color: rgba(255,255,255,.88); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 10, 8, .92);
  backdrop-filter: blur(16px);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.25));
}

.brand span { display: grid; line-height: 1.1; }
.brand strong { font-size: 18px; letter-spacing: .2px; }
.brand small { color: rgba(255,255,255,.66); font-size: 12px; margin-top: 4px; max-width: 230px; }

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.10);
  color: var(--white);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), #ffe083);
  color: #181203;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(244,197,66,.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 16%, rgba(244,197,66,.25), transparent 28%),
    radial-gradient(circle at 10% 10%, rgba(225,29,46,.20), transparent 24%),
    linear-gradient(135deg, #080a08 0%, #102315 52%, #061006 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 92%);
}

.hero-inner {
  position: relative;
  padding: 94px 0 78px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  margin: 0 0 22px;
  letter-spacing: -2.2px;
}

.hero p,
.page-hero p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  max-width: 660px;
  margin: 0 0 30px;
}

.hero-actions,
.section-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 13px 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #171000;
  background: linear-gradient(135deg, var(--gold), #ffe083);
  box-shadow: 0 16px 30px rgba(244,197,66,.24);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}

.btn-light {
  color: var(--green);
  background: #f2f7ef;
}

.hero-card {
  position: relative;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(20px);
  border-radius: 34px;
  padding: 20px;
}

.hero-card img.hero-main {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 26px;
}

.floating-logo {
  position: absolute;
  top: -24px;
  left: -22px;
  background: var(--white);
  border-radius: 28px;
  padding: 10px;
  width: 120px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.floating-panel {
  position: absolute;
  right: 10px;
  bottom: 24px;
  width: min(300px, 78%);
  border-radius: 24px;
  background: rgba(7,16,7,.92);
  color: var(--white);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
}

.floating-panel strong { display: block; font-size: 22px; }
.floating-panel span { color: rgba(255,255,255,.74); font-size: 14px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -42px;
  position: relative;
  z-index: 4;
}

.stat-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
  border: 1px solid rgba(13,91,55,.08);
}

.stat-card strong {
  color: var(--green);
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card span { color: var(--muted); font-size: 14px; }

.section {
  padding: 84px 0;
}

.section-tight { padding: 60px 0; }

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header.center {
  text-align: center;
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2,
.split-content h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1.3px;
  margin: 0 0 14px;
  color: #101710;
}

.section-header p,
.split-content p { color: var(--muted); margin: 0; max-width: 680px; }

.bg-dark {
  background:
    radial-gradient(circle at 10% 0%, rgba(244,197,66,.18), transparent 30%),
    linear-gradient(135deg, #071007, #102315);
  color: var(--white);
}

.bg-dark .section-header h2,
.bg-dark .split-content h2 { color: var(--white); }
.bg-dark .section-header p,
.bg-dark .split-content p { color: rgba(255,255,255,.70); }

.bg-soft { background: #f2f7ef; }

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

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(13,91,55,.08);
  display: flex;
  flex-direction: column;
}

.package-image { position: relative; height: 230px; overflow: hidden; }
.package-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.package-card:hover .package-image img { transform: scale(1.06); }
.package-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #160f00;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.package-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.package-content h3 { margin: 0; font-size: 23px; line-height: 1.15; }
.package-content p { margin: 0; color: var(--muted); }
.package-content .eyebrow { margin: 0; color: var(--green); }

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(13,91,55,.12);
  padding-top: 14px;
  color: var(--muted);
  font-size: 14px;
}
.meta-row strong { color: var(--green); white-space: nowrap; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chips span {
  background: #f2f7ef;
  color: #285536;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

details {
  background: #fbfcf8;
  border: 1px solid rgba(13,91,55,.10);
  border-radius: 14px;
  padding: 12px 14px;
}
summary { cursor: pointer; font-weight: 900; color: var(--green); }
details ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid rgba(13,91,55,.16);
  background: var(--white);
  color: var(--green);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--green);
  color: var(--white);
}

.service-grid,
.value-grid,
.steps-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card,
.value-card,
.step-card,
blockquote,
.info-card {
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,91,55,.08);
}

.bg-dark .service-card,
.bg-dark blockquote,
.bg-dark .step-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}

.service-icon,
.step-number {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f1f7e9;
  color: var(--green);
  font-size: 26px;
  margin-bottom: 18px;
}
.step-number { background: var(--gold); color: #171000; font-weight: 1000; }

.service-card h3,
.value-card h3,
.step-card h3,
.info-card h3 { margin: 0 0 10px; font-size: 22px; }
.service-card p,
.value-card p,
.step-card p,
.info-card p { margin: 0; color: var(--muted); }
.bg-dark .service-card p,
.bg-dark .step-card p,
.bg-dark blockquote p { color: rgba(255,255,255,.72); }

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.split-image {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.split-image img { width: 100%; height: 520px; object-fit: cover; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  font-weight: 900;
  font-size: 13px;
}

.cta-band {
  background:
    radial-gradient(circle at 90% 0%, rgba(244,197,66,.22), transparent 30%),
    linear-gradient(135deg, var(--green), #071007);
  color: var(--white);
  border-radius: 34px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.cta-band h2 { margin: 0 0 8px; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
.cta-band p { color: rgba(255,255,255,.72); margin: 0; }

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(244,197,66,.20), transparent 28%),
    linear-gradient(135deg, #071007, #103118);
  color: var(--white);
  padding: 80px 0;
}

.breadcrumb { color: var(--gold); font-weight: 900; margin-bottom: 14px; }

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

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 270px;
  cursor: zoom-in;
  background: #111;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: .35s ease; }
.gallery-item:hover img { transform: scale(1.06); opacity: .85; }
.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(0,0,0,.58);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 900;
  text-align: left;
}

.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.78);
  padding: 24px;
  align-items: center;
  justify-content: center;
}
.gallery-modal.open { display: flex; }
.gallery-modal-card {
  width: min(100%, 980px);
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
}
.gallery-modal-card header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
}
.gallery-modal-card h3 { margin: 0; }
.gallery-modal-card button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #f1f1f1;
  cursor: pointer;
  font-size: 24px;
}
.gallery-modal-card img { width: 100%; max-height: 72vh; object-fit: cover; }

.faq-wrap { display: grid; gap: 14px; max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); box-shadow: 0 14px 35px rgba(0,0,0,.08); }
.faq-item p { color: var(--muted); margin: 12px 0 0; }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-list { display: grid; gap: 16px; }
.info-card a { color: var(--green); font-weight: 900; display: inline-block; margin-top: 8px; }

.form-card {
  background: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,91,55,.08);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 8px; margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 900; color: #172116; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(13,91,55,.14);
  background: #fbfcf8;
  border-radius: 15px;
  padding: 13px 14px;
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(13,91,55,.10);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  background: rgba(255,255,255,.10);
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
}
.newsletter input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  padding: 0 12px;
  min-width: 0;
}
.newsletter input::placeholder { color: rgba(255,255,255,.55); }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.guide-card {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,91,55,.08);
}
.guide-card h3 { margin-top: 0; }
.guide-card code {
  background: #f2f7ef;
  color: var(--green);
  padding: 2px 6px;
  border-radius: 7px;
  font-weight: 800;
}
.guide-card pre {
  white-space: pre-wrap;
  background: #0b120c;
  color: #e7ffe4;
  padding: 16px;
  border-radius: 16px;
  overflow: auto;
}

blockquote { margin: 0; }
blockquote p { font-size: 18px; }
blockquote cite { color: var(--gold); font-weight: 900; font-style: normal; }

.footer-main {
  background: #071007;
  color: var(--white);
  padding: 56px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 62px; height: 62px; object-fit: contain; }
.footer-brand strong { display: block; font-size: 20px; }
.footer-brand span { color: rgba(255,255,255,.62); font-size: 13px; }
.footer-main h3 { margin: 0 0 14px; color: var(--gold); }
.footer-main p { color: rgba(255,255,255,.68); margin-top: 0; }
.footer-main a { display: block; color: rgba(255,255,255,.75); margin: 9px 0; }
.footer-main a:hover { color: var(--gold); }
.socials { display: flex; flex-wrap: wrap; gap: 8px; }
.socials a {
  display: inline-flex;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 12px;
  margin: 0;
}
.footer-whatsapp { color: var(--gold) !important; font-weight: 900; }
.footer-bottom { background: #030603; color: rgba(255,255,255,.62); padding: 16px 0; font-size: 14px; }

@media (max-width: 1020px) {
  .hero-inner, .split, .contact-grid { grid-template-columns: 1fr; }
  .stats, .package-grid, .service-grid, .value-grid, .steps-grid, .testimonials-grid, .gallery-grid, .footer-grid, .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    background: #071007;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 14px; }
}

@media (max-width: 720px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .brand small { display: none; }
  .brand strong { font-size: 16px; }
  .brand img { width: 52px; height: 52px; }
  .hero-inner { padding: 70px 0 56px; }
  .hero h1, .page-hero h1 { font-size: 42px; letter-spacing: -1px; }
  .hero-card img.hero-main { height: 310px; }
  .floating-logo { width: 96px; }
  .stats, .package-grid, .service-grid, .value-grid, .steps-grid, .testimonials-grid, .gallery-grid, .footer-grid, .guide-grid, .form-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-header { display: block; }
  .section-actions { margin-top: 18px; }
  .cta-band { grid-template-columns: 1fr; padding: 28px; border-radius: 26px; }
  .newsletter { grid-template-columns: 1fr; border-radius: 24px; }
  .form-card { padding: 22px; }
  .split-image img { height: 350px; }
}
