:root {
  --primary: #dd0017;
  --primary-dark: #b30014;
  --secondary: #183f86;
  --text: #192132;
  --muted: #6c7485;
  --bg: #f7f8fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 26, 58, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(24,63,134,.08);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.brand strong {
  display: block;
  color: var(--primary);
  font-size: 1.02rem;
}
.brand span { color: var(--secondary); font-size: .95rem; }
.nav nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.nav nav a { color: var(--secondary); font-weight: 700; }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg, .hero-overlay {
  position: absolute; inset: 0;
}
.hero-bg { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(12,19,39,.72), rgba(221,0,23,.35)); }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 0;
}
.glass {
  max-width: 720px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 34px;
}
.eyebrow, .section-kicker, .tag {
  display: inline-block;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .79rem;
}
.eyebrow, .tag { color: #fff; background: rgba(24,63,134,.75); padding: 8px 12px; border-radius: 999px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  margin: 16px 0;
}
.hero p {
  color: rgba(255,255,255,.92);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.hero-actions, .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 30px rgba(221,0,23,.26);
}
.btn-secondary {
  color: var(--secondary);
  background: #fff;
}
.btn-block { width: 100%; border: 0; cursor: pointer; }
.promo-strip {
  background: linear-gradient(135deg, var(--secondary), #0c2450);
  color: #fff;
  padding: 24px 0;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 24px;
  align-items: center;
}
.promo-grid h2 { margin: 10px 0 0; font-size: clamp(1.35rem, 3vw, 2rem); }
.promo-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  padding: 22px;
  border-radius: 24px;
}
.section { padding: 88px 0; }
.alt { background: var(--bg); }
.two-col, .contact-grid, .split-banner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}
.section-kicker {
  color: var(--primary);
  background: rgba(221,0,23,.08);
  padding: 8px 12px;
  border-radius: 999px;
}
.section h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin: 14px 0 16px;
  line-height: 1.08;
}
.section p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.check-item {
  background: #fff;
  border: 1px solid rgba(24,63,134,.08);
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.info-card, .map-card, .contact-card, .contact-form {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info-content { padding: 24px; }
.info-content h3 { margin: 0 0 12px; font-size: 1.5rem; color: var(--secondary); }
.info-content ul, .split-copy ol { margin: 0; padding-left: 20px; line-height: 1.9; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.center { text-align: center; margin-inline: auto; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.value-card div { padding: 20px; }
.value-card h3 { margin: 0 0 8px; color: var(--secondary); }
.split-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.split-images img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.wide { grid-column: span 2; }
.social-card {
  flex: 1 1 220px;
  padding: 22px;
  border-radius: 20px;
  color: #fff;
  box-shadow: var(--shadow);
}
.social-card strong, .social-card span { display: block; }
.facebook { background: linear-gradient(135deg, #2f5aac, #17356c); }
.instagram { background: linear-gradient(135deg, #dd2a7b, #8134af, #f58529); }
.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}
.contact-grid { align-items: stretch; }
.contact-card, .contact-form { padding: 30px; }
.contact-card a { color: var(--secondary); font-weight: 700; }
.contact-form h3 { margin-top: 0; color: var(--secondary); }
.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--secondary);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(24,63,134,.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}
.contact-form small { display: block; margin-top: 12px; color: var(--muted); }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 18px 30px rgba(37,211,102,.32);
  z-index: 40;
}
.whatsapp-float svg { width: 32px; fill: #fff; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,12,23,.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 100;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 88vh;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,.16);
}
.site-footer {
  background: #10182c;
  color: rgba(255,255,255,.78);
  padding: 26px 0;
  text-align: center;
}
.site-footer a { color: #fff; font-weight: 700; }
@media (max-width: 980px) {
  .promo-grid, .two-col, .contact-grid, .cards-grid, .split-banner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .nav { flex-direction: column; padding: 14px 0; }
  .nav nav { justify-content: center; gap: 12px; }
  .hero { min-height: auto; }
  .glass { padding: 24px; }
  .section { padding: 68px 0; }
  .check-grid, .split-images, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 20px, 1120px); }
  .check-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .hero h1 { font-size: 1.95rem; }
  .hero p, .section p { font-size: .98rem; }
}
