:root {
  --bg: #050508;
  --surface: #0d0e14;
  --surface-2: #141620;
  --line: rgba(255, 255, 255, .1);
  --text: #f7f8ff;
  --muted: #b8bdcc;
  --soft: #858b9e;
  --blue: #4d6fff;
  --violet: #8064d8;
  --pink: #bd68bb;
  --grad: linear-gradient(120deg, var(--blue), var(--violet) 52%, var(--pink));
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(77, 111, 255, .16), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(189, 104, 187, .12), transparent 24rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
strong { color: var(--text); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 8, .86);
  backdrop-filter: blur(18px);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 186px;
}

.brand img {
  width: 212px;
  height: auto;
}

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

.nav-links a {
  color: var(--muted);
  font-size: .93rem;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 750;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--grad); color: white; box-shadow: 0 18px 44px rgba(128, 100, 216, .28); }
.btn-secondary { background: rgba(255, 255, 255, .04); border-color: rgba(128, 100, 216, .55); color: var(--text); }
.btn-quiet { border-color: var(--line); color: var(--text); background: rgba(255, 255, 255, .03); }

.hero {
  position: relative;
  min-height: calc(84svh - 78px);
  display: grid;
  align-items: end;
  padding: 42px 0 24px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, .95) 0%, rgba(5, 5, 8, .76) 46%, rgba(5, 5, 8, .28) 100%),
    linear-gradient(0deg, var(--bg), transparent 34%),
    var(--hero-image) center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--grad);
  opacity: .55;
}

.hero-content {
  max-width: 760px;
  padding-bottom: 2vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dbe1ff;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad);
}

h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; }
h1 {
  font-size: clamp(2.35rem, 5vw, 4.45rem);
  max-width: 920px;
}
h2 { font-size: clamp(2rem, 4.2vw, 3.55rem); }
h3 { font-size: 1.12rem; }

.lead {
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  max-width: 790px;
  color: #d3d7e5;
  margin-top: 18px;
}

.hero-buttons, .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  max-width: 860px;
}

.trust-item,
.card,
.feature,
.quote-panel,
.contact-panel,
.legal-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.028));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 14px 16px;
  color: var(--text);
  font-weight: 720;
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p { font-size: 1.04rem; }
.kicker { color: #cfd5ff; font-weight: 820; text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; margin-bottom: 12px; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.card, .feature, .contact-panel, .legal-panel { padding: 24px; }
.card p, .feature p { margin-top: 12px; margin-bottom: 0; }
.card .num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(128, 100, 216, .16);
  color: #dbe1ff;
  margin-bottom: 22px;
  font-weight: 850;
}

.quote-panel {
  padding: clamp(28px, 4vw, 42px);
  margin-top: 22px;
  position: relative;
  overflow: hidden;
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--grad);
}

.quote-panel p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.18rem, 2.1vw, 1.65rem);
  line-height: 1.35;
  max-width: 940px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 34px;
  align-items: center;
}

.media-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.media-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.ba-image { position: relative; min-height: 340px; }
.ba-image img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(5, 5, 8, .76);
  color: var(--text);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.showcase-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.showcase-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.gallery-item {
  grid-column: span 12;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.gallery-caption strong { color: var(--text); }

.details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.detail {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.detail span {
  display: block;
  color: var(--soft);
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 820;
  margin-bottom: 6px;
}

.detail strong { display: block; line-height: 1.3; }

.form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label { display: grid; gap: 8px; color: var(--text); font-weight: 700; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

textarea { min-height: 142px; resize: vertical; }
input::file-selector-button {
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  margin-right: 10px;
  background: var(--grad);
  color: white;
  font-weight: 800;
}

.page-hero {
  padding: 84px 0 52px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(128, 100, 216, .1), transparent),
    var(--bg);
}

.page-hero h1 { font-size: clamp(2.4rem, 5.6vw, 5rem); }

.cta-band {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(77, 111, 255, .16), rgba(189, 104, 187, .12));
}

.site-footer {
  padding: 46px 0 26px;
  background: #030305;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 28px;
}

.footer-logo { width: 210px; margin-bottom: 18px; }
.footer-col h3 { font-size: .92rem; margin-bottom: 12px; }
.footer-col a, .footer-col span {
  display: block;
  color: var(--muted);
  margin: 8px 0;
  font-size: .94rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 18px;
  color: var(--soft);
  font-size: .88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 950;
  box-shadow: 0 18px 50px rgba(128, 100, 216, .4);
}

@media (max-width: 920px) {
  .brand img { width: 166px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px 22px;
    background: rgba(5, 5, 8, .98);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .nav-actions .btn { display: none; }
  .hero { min-height: auto; padding: 96px 0 38px; }
  .hero::before { background: linear-gradient(180deg, rgba(5,5,8,.72), rgba(5,5,8,.96)), var(--hero-image) center/cover no-repeat; }
  .trust-row, .grid-3, .grid-4, .section-head, .split, .details, .footer-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .media-frame img { height: 360px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1120px); }
  .nav { height: 68px; }
  .nav-links { top: 68px; }
  .section { padding: 64px 0; }
  .hero-content { padding-bottom: 20px; }
  .hero-buttons .btn, .cta-row .btn { width: 100%; }
  .before-after, .form-grid { grid-template-columns: 1fr; }
  .ba-image, .ba-image img { min-height: 280px; }
  .footer-bottom { flex-direction: column; }
}
