:root {
  --bg: #ffffff;
  --text: #101828;
  --muted: #5b6472;
  --blue: #0e5ab8;
  --red: #d61f26;
  --soft: #f5f7fb;
  --line: #e6eaf2;
  --shadow: 0 14px 35px rgba(10, 31, 68, 0.10);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand { display: flex; flex-direction: column; }
.brand-main { font-weight: 800; color: var(--blue); letter-spacing: 0.5px; font-size: 1.15rem; }
.brand-sub { color: var(--muted); font-size: 0.9rem; margin-top: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--red), #ef4444); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: #fff; border-color: var(--line); }
.btn-whatsapp { background: var(--blue); color: #fff; }

.hero {
  padding: 34px 0 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(14,90,184,.08), transparent 42%),
    radial-gradient(circle at 5% 15%, rgba(214,31,38,.05), transparent 40%),
    #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: .82rem;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}
.hero-text { color: var(--muted); margin: 12px 0 16px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.quick-info {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}
.quick-info strong { color: var(--text); }

.hero-visual {
  position: relative;
  min-height: 390px;
}
.hero-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: scale(.98);
  transition: opacity .45s ease, transform .45s ease;
}
.hero-card.active { opacity: 1; transform: scale(1); }
.hero-badges {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 80%;
}
.hero-badges span {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .78rem;
  font-weight: 700;
}

.section { padding: 50px 0; }
.section-soft { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 16px; }
.section-head h2 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.85rem); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 6px 18px rgba(16,24,40,.05);
}
.card h3 { margin-top: 0; margin-bottom: 10px; color: var(--blue); }
.card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.card li { margin-bottom: 7px; }

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brand-chips span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,.03);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0,0,0,.07);
  background: #fff;
}
.gallery-grid img:nth-child(1) { grid-column: span 6; }
.gallery-grid img:nth-child(2) { grid-column: span 6; }
.gallery-grid img:nth-child(3) { grid-column: span 8; }
.gallery-grid img:nth-child(4) { grid-column: span 4; }
.gallery-grid img:nth-child(5) { grid-column: span 12; height: 300px; object-fit: cover; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}
.panel h2 { margin-top: 0; margin-bottom: 10px; font-size: 1.1rem; }
.panel p, .panel li { color: var(--muted); }
.panel ul { margin: 0; padding-left: 18px; }

.cta {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-top: 1px solid var(--line);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: center;
}
.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.contact-list a {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
}
.cta-card img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 20px 0 28px;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  color: var(--muted);
}
.footer-brand { color: var(--blue); font-weight: 800; margin: 0 0 4px; }
.footer p { margin: 4px 0; }

.floating-wa {
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  z-index: 40;
}

@media (max-width: 980px) {
  .hero-grid, .cards-grid, .two-col, .cta-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; }
  .gallery-grid img:nth-child(1), .gallery-grid img:nth-child(2), .gallery-grid img:nth-child(3), .gallery-grid img:nth-child(4), .gallery-grid img:nth-child(5) { grid-column: span 12; height: auto; }
  .footer-wrap { grid-template-columns: 1fr; }
}
