@font-face {
  font-family: "Bree Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/4UaHrEJCrhhnVA3DgluAx60.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F.ttf") format("truetype");
}
:root {
  --bg: #f4f7fb;
  --card: #ffffff;
  --ink: #1d2635;
  --muted: #556277;
  --brand: #0d7db4;
  --brand-dark: #0a5d86;
  --accent: #ff9b1f;
  --radius: 18px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eaf4ff 0, var(--bg) 220px);
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px;
  background: rgba(9, 22, 38, 0.84);
  backdrop-filter: blur(6px);
}
.brand img { height: 48px; width: auto; display: block; }
.menu { display: flex; gap: 16px; }
.menu a {
  color: #dff4ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.phone {
  text-decoration: none;
  color: #fff;
  background: var(--brand);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.hero {
  min-height: 68vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 42px 18px;
  background-size: cover;
  background-position: center;
  transition: background-image 500ms ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 25, 41, 0.45), rgba(3, 25, 41, 0.62));
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  color: #fff;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(8, 35, 58, 0.4);
}
.hero h1 {
  margin: 0 0 10px;
  font-family: "Bree Serif", serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.1;
}
.hero p {
  margin: 0 auto 18px;
  max-width: 760px;
  font-size: clamp(16px, 2.2vw, 22px);
}
.hero-badge {
  margin: 0 0 14px;
  font-family: "Bree Serif", serif;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.15;
}
.btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #f87400);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
}
.btn.whatsapp {
  background: linear-gradient(135deg, #1cb35f, #0e8e47);
}
.hero-dots {
  position: absolute;
  bottom: 16px;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
}
.hero-dots button.active { background: #fff; }
.section { max-width: 1200px; margin: 0 auto; padding: 54px 18px; }
.section.alt { background: #eef6ff; border-radius: 26px; }
.section-title {
  margin: 0 0 26px;
  text-align: center;
  font-family: "Bree Serif", serif;
  font-size: clamp(28px, 3vw, 40px);
}
.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.feature {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid #dde7f2;
}
.feature h3 { margin: 0 0 8px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); }
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #dbe7f5;
}
.card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  display: block;
}
.card h3 { margin: 12px 14px 4px; font-size: 16px; }
.gallery {
  columns: 3 280px;
  column-gap: 12px;
}
.gallery figure {
  margin: 0 0 12px;
  break-inside: avoid;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dbe7f5;
  background: #fff;
}
.gallery img { width: 100%; display: block; }
.footer {
  margin-top: 40px;
  background: #0b1d30;
  color: #d6ebff;
}
.footer-map-wrap iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}
.footer-contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 18px 30px;
}
.footer-contact h2 {
  margin: 0 0 12px;
  font-family: "Bree Serif", serif;
  font-size: clamp(24px, 3vw, 34px);
}
.footer-contact p {
  margin: 6px 0;
  color: #d6ebff;
}
.footer-contact a { color: #7fe0ff; }
#footerText {
  margin-top: 14px;
  color: #99b5cf;
  font-weight: 700;
}
@media (max-width: 980px) {
  .menu { display: none; }
  .features, .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .brand img { height: 42px; }
  .phone { font-size: 12px; }
  .hero { min-height: 58vh; }
  .hero-content { padding: 18px; }
  .features, .cards { grid-template-columns: 1fr; }
}
