:root {
  --primary: #e75f5c;
  --accent: #525632;
  --sky: #5a9edc;
  --sand: #ecd3c0;
  --paper: #fff7f2;
  --ink: #141414;
  --muted: rgba(20,20,20,.68);
  --card: rgba(255,255,255,.78);
  --shadow: 0 18px 40px rgba(0,0,0,.18);
  --radius: 22px;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif; color: var(--ink); background: radial-gradient(1200px 600px at 10% -10%, rgba(90,158,220,.35), transparent 60%),
  radial-gradient(900px 500px at 90% 10%, rgba(231,95,92,.22), transparent 55%),
  linear-gradient(180deg, var(--paper), #ffffff); }
a { color: inherit; }
img { max-width: 100%; height: auto; display:block; }

.container { width: min(1120px, 92vw); margin: 0 auto; }

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav {
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
}
.brand {
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand img { width: 44px; height:44px; border-radius: 50%; box-shadow: 0 8px 18px rgba(0,0,0,.18); }
.brand .title { line-height: 1.05; }
.brand .title b { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.brand .title span { font-size: 13px; color: var(--muted); }

.menu-btn {
  display:none;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.8);
  border-radius: 14px;
  padding: 10px 12px;
}
.links {
  display:flex; gap: 18px; align-items:center;
}
.links a {
  text-decoration:none;
  font-weight: 600;
  font-size: 14px;
  color: rgba(20,20,20,.82);
  padding: 8px 10px;
  border-radius: 12px;
}
.links a:hover { background: rgba(231,95,92,.12); color: var(--ink); }

.cta {
  display:flex; gap:10px; align-items:center;
}
.btn {
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
  text-decoration:none;
  display:inline-flex; gap:10px; align-items:center;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 18px 34px rgba(0,0,0,.14); }
.btn.primary {
  background: linear-gradient(180deg, rgba(231,95,92,.98), rgba(231,95,92,.88));
  color: white;
  border-color: rgba(231,95,92,.25);
}
.btn.primary:hover { background: linear-gradient(180deg, rgba(231,95,92,1), rgba(231,95,92,.92)); }
.pill {
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(82,86,50,.10);
  border: 1px solid rgba(82,86,50,.18);
  color: rgba(20,20,20,.86);
  font-weight: 700;
  font-size: 13px;
}

.hero {
  padding: 34px 0 18px;
}
.hero-grid {
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.hero-card {
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: #000;
}
.hero-card picture, .hero-card img { width:100%; height:100%; object-fit: cover; }
.hero-card::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.12) 55%, rgba(0,0,0,.30));
}
.hero-content {
  position:absolute; inset:0;
  padding: 22px;
  display:flex; flex-direction:column; justify-content:flex-end;
  gap: 10px;
  color:white;
}
.hero-content h1 {
  margin:0;
  font-size: clamp(28px, 4.2vw, 46px);
  letter-spacing: -0.02em;
}
.hero-content p {
  margin:0;
  color: rgba(255,255,255,.86);
  font-weight: 600;
  max-width: 52ch;
}
.hero-actions {
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 10px;
}

.side {
  display:grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}
.card {
  background: var(--card);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  overflow:hidden;
}
.card .pad { padding: 16px; }
.kpis {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.kpi {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border:1px solid rgba(0,0,0,.07);
}
.kpi b { display:block; font-size: 14px; }
.kpi span { display:block; font-size: 13px; color: var(--muted); margin-top: 4px; }

.section { padding: 26px 0; }
.section h2 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.01em;
}
.section p.lead {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 600;
}
.grid-3 {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature {
  padding: 16px;
}
.feature b { display:block; font-size: 16px; }
.feature p { margin: 8px 0 0; color: var(--muted); font-weight: 600; }

.gallery {
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.g-item {
  border-radius: 18px;
  overflow:hidden;
  position: relative;
  cursor:pointer;
  border:1px solid rgba(0,0,0,.08);
  background: #fff;
}
.g-item img { width:100%; height:100%; object-fit:cover; }
.g-item::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.25));
  opacity:0;
  transition: opacity .2s ease;
}
.g-item:hover::after { opacity:1; }
.g-item span {
  position:absolute; left:10px; bottom:10px;
  color:white; font-weight: 900; font-size: 12px;
  text-shadow: 0 10px 20px rgba(0,0,0,.55);
  opacity:0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}
.g-item:hover span { opacity:1; transform: translateY(0); }

.g1 { grid-column: span 7; aspect-ratio: 16/9; }
.g2 { grid-column: span 5; aspect-ratio: 4/3; }
.g3 { grid-column: span 4; aspect-ratio: 1/1; }
.g4 { grid-column: span 4; aspect-ratio: 1/1; }
.g5 { grid-column: span 4; aspect-ratio: 1/1; }
.g6 { grid-column: span 6; aspect-ratio: 16/10; }
.g7 { grid-column: span 6; aspect-ratio: 16/10; }

.split {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.iframe {
  width:100%;
  aspect-ratio: 16/9;
  border:0;
  border-radius: 18px;
  overflow:hidden;
}

.form {
  display:grid;
  gap: 10px;
}
.input {
  display:grid;
  gap:6px;
}
.input label { font-weight: 800; font-size: 13px; }
.input input, .input textarea {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 12px 12px;
  font-size: 14px;
  background: rgba(255,255,255,.86);
  outline:none;
}
.input textarea { min-height: 120px; resize: vertical; }
.help { font-size: 13px; color: var(--muted); font-weight: 600; }

.footer {
  padding: 22px 0 36px;
  color: rgba(20,20,20,.72);
}
.footer .row {
  display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
}
.footer small { font-weight: 700; }

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
}
.whatsapp a {
  display:inline-flex; align-items:center; gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #1f9d55;
  color:white;
  font-weight: 900;
  text-decoration:none;
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
  transform: translateZ(0);
}
.whatsapp a:hover { filter: brightness(1.04); transform: translateY(-1px); }

.modal {
  position: fixed; inset:0; z-index: 100;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.modal.open { display:flex; }
.modal-inner {
  width:min(1100px, 96vw);
  border-radius: 18px;
  background: rgba(15,15,15,.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  overflow:hidden;
  position: relative;
}
.modal-inner img {
  width:100%;
  height:auto;
  max-height: 86vh;
  object-fit: contain;
  background: rgba(0,0,0,.25);
}
.modal-close {
  position:absolute;
  right: 10px;
  top: 10px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.40);
  color: white;
  padding: 10px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 900;
}
.modal-caption {
  padding: 10px 14px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .links { display:none; }
  .menu-btn { display:inline-flex; }
  .nav.open .links {
    display:flex;
    position:absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 10px 10px 12px;
    flex-wrap:wrap;
    justify-content:center;
  }
}