:root {
  --bg: #0c2c3f;
  --bg-2: #0f8e7a;
  --surface: rgba(255, 255, 255, 0.06);
  --card: #0f1f2e;
  --primary: #17c3a2;
  --primary-dark: #0da287;
  --accent: #f7b733;
  --text: #f5f7fb;
  --muted: #c5ced8;
  --stroke: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius: 18px;
  --gap: 22px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(23,195,162,0.12), transparent 30%),
              radial-gradient(circle at 80% 10%, rgba(247,183,51,0.1), transparent 25%),
              linear-gradient(135deg, #0c2536 0%, #0a1a28 30%, #081420 100%);
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  letter-spacing: -0.01em;
  color: #ffffff;
}

h1 { font-size: clamp(2.4rem, 4vw, 3.4rem); margin: 0 0 16px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 12px; }
h3 { font-size: 1.2rem; margin: 0 0 8px; }

p { margin: 0 0 12px; }

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

.topbar {
  background: rgba(12,44,63,0.9);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.topbar__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--text);
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: 0.2s ease;
}

.topbar a:hover { border-color: var(--primary); color: var(--primary); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) contrast(1.05);
  transform: scale(1.02);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(23,195,162,0.35), transparent 45%),
              linear-gradient(120deg, rgba(10,27,45,0.8) 0%, rgba(8,20,32,0.9) 40%, rgba(8,20,32,0.75) 100%);
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero__text { max-width: 640px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(23,195,162,0.16);
  color: var(--primary);
  border: 1px solid rgba(23,195,162,0.45);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero__text p { color: var(--muted); font-size: 1.05rem; max-width: 54ch; }

.hero__actions {
  display: flex;
  gap: 12px;
  margin: 24px 0 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #06121c;
  box-shadow: 0 14px 30px rgba(23,195,162,0.25);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(23,195,162,0.35); }

.btn-outline {
  border: 1px solid var(--stroke);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-ghost {
  background: transparent;
  border: 1px dashed var(--stroke);
  color: var(--muted);
}

.btn-ghost:hover { color: var(--primary); border-color: var(--primary); }

.btn-full { width: 100%; }

.hero__badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.badge {
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}

.badge strong { display: block; color: #fff; }
.badge span { color: var(--muted); font-size: 0.95rem; }

.card {
  background: rgba(8, 18, 30, 0.7);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 22px;
}

.hero__card { max-width: 360px; margin-left: auto; }

.card__header { display: flex; gap: 12px; align-items: center; }
.card__logo { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; border: 1px solid var(--stroke); }
.card__title { margin: 0; font-weight: 700; }
.card__subtitle { margin: 2px 0 0; color: var(--muted); }

.card__body { display: grid; gap: 14px; margin-top: 16px; }

.contact-item { display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.contact-item span { color: var(--muted); font-size: 0.95rem; }
.contact-item a, .contact-item p { color: #fff; margin: 0; text-decoration: none; }

.section { padding: 80px 0; position: relative; }
.section__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; align-items: center; }

.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.lead { color: var(--muted); font-size: 1.05rem; }
.muted { color: var(--muted); }

.list { display: grid; gap: 10px; margin: 18px 0; }
.list__item {
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}

.about__image-card {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.about__image {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about__note {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(8,18,30,0.8);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  font-size: 0.95rem;
}

.about__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

.features { background: linear-gradient(180deg, rgba(12,44,63,0.2) 0%, rgba(8,20,32,0.5) 100%); }
.section__header { text-align: center; max-width: 720px; margin: 0 auto 32px; }

.feature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 16px 36px rgba(0,0,0,0.2);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(23,195,162,0.16);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #0b1824;
  position: relative;
  cursor: zoom-in;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery__item:hover img { transform: scale(1.03); filter: brightness(1.05); }

.gallery__hint {
  text-align: center;
  margin-top: 12px;
}

.cta {
  background: linear-gradient(120deg, rgba(23,195,162,0.16) 0%, rgba(12,44,63,0.75) 100%);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.cta__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.contact { padding-bottom: 100px; }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 12px;
}

.map-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

.contact__map {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  overflow: hidden;
  background: #0b1824;
}

.contact__map iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  display: block;
  filter: grayscale(10%);
}

.map-hint { margin: 0; padding: 10px 12px; font-size: 0.92rem; color: var(--muted); background: rgba(0,0,0,0.25); }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  background: linear-gradient(120deg, #25d366 0%, #17c3a2 100%);
  color: #062018;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 26px rgba(23,195,162,0.35);
  border: 1px solid rgba(255,255,255,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 12;
}

.floating-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 18px 32px rgba(23,195,162,0.45); }

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.lightbox.is-open { display: flex; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.8);
  backdrop-filter: blur(6px);
}

.lightbox__img {
  position: relative;
  max-width: min(960px, 90vw);
  max-height: 85vh;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  z-index: 1;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover { background: rgba(255,255,255,0.16); transform: scale(1.05); }

.no-scroll { overflow: hidden; }

.footer {
  border-top: 1px solid var(--stroke);
  background: rgba(8,20,32,0.95);
  padding: 30px 0 24px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__logo { width: 58px; height: 58px; border-radius: 12px; border: 1px solid var(--stroke); object-fit: cover; }
.footer__links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); text-decoration: none; border: 1px solid transparent; padding: 8px 10px; border-radius: 10px; }
.footer__links a:hover { color: var(--primary); border-color: var(--primary); }
.footer__copy { text-align: center; color: var(--muted); margin: 12px 0 0; font-size: 0.95rem; }

@media (max-width: 720px) {
  .hero { padding-top: 68px; }
  .hero__card { margin: 0; }
  .contact-item { flex-direction: column; align-items: flex-start; }
  .topbar__content { flex-direction: column; align-items: flex-start; gap: 6px; }
}
