:root {
  --navy: #12345a;
  --navy-dark: #0b2340;
  --orange: #f26b1d;
  --orange-deep: #d85a12;
  --paper: #f4f6fa;
  --ink: #1c2c3c;
  --muted: #5b6b7a;
  --line: #e4e8ee;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Outfit, system-ui, sans-serif; background: #fff; color: var(--ink); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.script { font-family: Pacifico, cursive; color: var(--orange); font-weight: 400; }

.topbar { background: #fff; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 12px; }
.top-soc { display: flex; gap: 10px; }
.top-soc a, .soc a { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; }
.top-soc svg, .soc svg { width: 13px; height: 13px; fill: currentColor; }
.top-meta { display: flex; gap: 18px; flex-wrap: wrap; }

header { background: var(--orange); position: sticky; top: 0; z-index: 30; }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 22px; }
.logo i { width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--orange); display: grid; place-items: center; font-style: normal; }
.menu { display: flex; gap: 22px; list-style: none; color: #fff; font-weight: 600; font-size: 15px; }
.menu a { padding-bottom: 4px; }
.menu a.is-on, .menu a:hover { box-shadow: inset 0 -2px 0 #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--navy-dark); }
.btn-orange { background: var(--orange); }
.btn-orange:hover { background: var(--orange-deep); }

.hero {
  position: relative;
  min-height: 78vh;
  color: #fff;
  display: grid;
  align-items: center;
  padding: 80px 0 140px;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: brightness(.48);
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.08; max-width: 14ch; margin-bottom: 14px; }
.hero p { max-width: 42ch; margin-bottom: 26px; color: #eef3f8; }

.float-cards { margin-top: -88px; position: relative; z-index: 2; }
.float-cards .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.float-cards article {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 16px 36px rgba(18, 52, 90, .12);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.icon svg { width: 22px; height: 22px; fill: currentColor; }
.float-cards h3 { font-size: 18px; margin-bottom: 6px; color: var(--navy); }
.float-cards p { font-size: 14px; color: var(--muted); }

.section { padding: 80px 0; }
.section-head { text-align: center; max-width: 52ch; margin: 0 auto 36px; }
.eyebrow { color: var(--orange); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: 12px; margin-bottom: 8px; }
h2 { font-size: clamp(28px, 3.4vw, 40px); color: var(--navy); line-height: 1.15; }

.about { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.about-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 58% 42% 50% 50%;
  background: var(--paper);
}
.checks { display: grid; gap: 10px; margin: 18px 0 24px; }
.checks li { list-style: none; display: flex; gap: 10px; align-items: start; }
.checks b { color: var(--orange); }

.offer { background: var(--paper); }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.offer article { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 20px rgba(18, 52, 90, .06); }
.offer .shot { position: relative; }
.offer img { width: 100%; height: 200px; object-fit: cover; }
.offer .tab {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.offer h3 { text-align: center; padding: 32px 12px 20px; font-size: 16px; color: var(--navy); }

.local { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.local img { width: 100%; height: 360px; object-fit: cover; border-radius: 16px; }
.meta { display: grid; gap: 12px; margin: 18px 0 24px; color: var(--muted); }
.meta b { color: var(--navy); display: block; }

.quotes { background: var(--orange); color: #fff; }
.quotes .wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: start; }
.quotes h2 { color: #fff; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote {
  background: var(--navy);
  border-radius: 14px;
  padding: 24px;
  position: relative;
}
.quote p { font-size: 15px; margin-bottom: 14px; }
.quote b { display: block; }
.quote span { font-size: 13px; color: #c9d6e4; }
.quote i { position: absolute; right: 16px; top: 12px; font-size: 42px; font-style: normal; opacity: .25; }

.why { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why img { width: 100%; height: 460px; object-fit: cover; border-radius: 16px; }
.why-list { display: grid; gap: 22px; margin-top: 20px; }
.why-list article { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start; }
.dot { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; }
.dot.navy { background: var(--navy); }
.dot.gold { background: #e0b125; }
.dot.orange { background: var(--orange); }

.help { background: var(--paper); text-align: center; }
.help h2 { margin-bottom: 12px; }
.help p { color: var(--muted); margin-bottom: 22px; }

.page-top {
  position: relative;
  height: 240px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.page-top img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.4); }
.page-top .wrap { position: relative; z-index: 1; }
.page-top h1 { font-size: clamp(36px, 5vw, 52px); color: #fff; }

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filters a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.filters a.is-on, .filters a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.prod {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.prod img { height: 180px; width: 100%; object-fit: cover; }
.prod-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod h3 { font-size: 17px; color: var(--navy); }
.prod .price { color: var(--orange); font-weight: 800; }
.prod .btn { margin-top: 8px; align-self: flex-start; padding: 8px 14px; font-size: 13px; }

.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form { display: flex; flex-direction: column; gap: 14px; background: var(--paper); padding: 28px; border-radius: 14px; }
.form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--orange); border-color: var(--orange); }
.form textarea { min-height: 120px; resize: vertical; }
.form .btn { width: fit-content; }
.mapa { width: 100%; height: 480px; border: 0; display: block; border-radius: 14px; margin-top: 40px; }

.site-foot { background: var(--navy); color: #d5deea; padding: 56px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; padding-bottom: 40px; }
.site-foot .logo { color: #fff; }
.foot-brand p { font-size: 14px; color: #adc0d6; margin: 14px 0 18px; max-width: 36ch; }
.soc { display: flex; gap: 8px; }
.soc a { width: 36px; height: 36px; }
.site-foot h3 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.site-foot ul { list-style: none; display: grid; gap: 8px; font-size: 14px; }
.site-foot ul a:hover { color: #fff; }
.foot-copy { background: var(--navy-dark); text-align: center; padding: 14px 0; font-size: 12px; color: #8ea3bb; }

.float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  z-index: 40;
}

@media (max-width: 860px) {
  .menu, .top-soc { display: none; }
  .hero { min-height: 70vh; padding-bottom: 40px; }
  .float-cards { margin-top: 0; padding: 24px 0 0; }
  .float-cards .wrap, .about, .offer-grid, .local, .quotes .wrap, .quote-grid, .why, .prod-grid, .contato-grid, .foot-grid {
    grid-template-columns: 1fr;
  }
  .about-photo, .why img, .local img { height: 260px; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
}
