:root {
  --teal: #68c0a8;
  --teal-deep: #4aa894;
  --teal-dark: #2f7d6e;
  --mint: #b0d8d0;
  --teal-soft: #e7f6f1;
  --ink: #2a3d48;
  --ink-soft: #4a5f6a;
  --muted: #6d818b;
  --line: #d7e8e2;
  --bg: #ffffff;
  --bg-alt: #f4faf8;
  --white: #fff;
  --shadow: 0 18px 50px rgba(42, 61, 72, 0.12);
  --radius: 22px;
  --header: 84px;
  --font-display: "Montserrat", sans-serif;
  --font-body: "Nunito Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal-dark);
  text-decoration: none;
}

address {
  font-style: normal;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  left: 12px;
  top: 12px;
  z-index: 200;
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(42, 61, 72, 0.06);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  height: 62px;
  width: auto;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--teal-dark);
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-whatsapp {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover,
.btn-whatsapp:hover {
  background: var(--teal-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}

.btn-ghost:hover {
  box-shadow: inset 0 0 0 2px var(--teal);
  color: var(--teal-dark);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 80px;
  background:
    radial-gradient(circle at 12% 20%, rgba(104, 192, 168, 0.16), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

h1 span {
  color: var(--teal);
}

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lead {
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  border-radius: 0 36px 36px 80px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 460px;
}

.hero-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 30%;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 110px;
  color: var(--bg-alt);
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.trust-badge {
  position: absolute;
  left: -18px;
  bottom: 42px;
  width: 210px;
  padding: 22px 18px 18px;
  background: var(--teal);
  color: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.trust-badge p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
}

.trust-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.section-head h2::before,
.section-head h2::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
}

.produtos {
  padding: 84px 0;
  background: #fff;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px 18px;
}

.produto {
  padding: 18px 12px 14px;
  text-align: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 18px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  appearance: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.produto:hover,
.produto:focus-visible {
  background: var(--bg-alt);
  border-color: var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  outline: none;
}

.produto p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.produto-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 50%;
}

.produto-icon svg {
  width: 36px;
  height: 36px;
}

.diferenciais {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  padding: 56px 0;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.diferenciais h3,
.diferenciais p {
  color: #fff;
}

.diferenciais p {
  margin: 0;
  opacity: 0.92;
}

.diff-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.diff-icon svg {
  width: 28px;
  height: 28px;
}

.convenio {
  padding: 72px 0;
  background: #fff;
}

.convenio-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

.convenio-logo {
  width: 200px;
  height: auto;
  margin: 0 auto;
}

.convenio-copy h2 {
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.convenio-copy p {
  margin: 0 0 22px;
  max-width: 58ch;
  color: var(--ink-soft);
}

.contato {
  padding: 88px 0;
  background: var(--bg-alt);
}

.contato-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.contato-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 18px;
}

.contato-label {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contato-list a,
.contato-list address {
  color: var(--ink);
  font-weight: 600;
}

.cotacao {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.cotacao label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cotacao input,
.cotacao select,
.cotacao textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: 500 16px var(--font-body);
  color: var(--ink);
  background: #fff;
}

.cotacao input:focus,
.cotacao select:focus,
.cotacao textarea:focus {
  outline: 2px solid var(--teal);
  border-color: var(--teal);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer {
  background: #22343c;
  color: #d7e4df;
  padding-top: 48px;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 36px;
}

.footer-logo {
  height: 88px;
  width: auto;
  margin-bottom: 8px;
}

.footer-brand p {
  margin: 0;
  max-width: 28ch;
}

.footer-convenio {
  margin-top: 12px !important;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-qr {
  text-align: center;
}

.footer-qr img {
  margin: 0 auto 10px;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
}

.footer-qr p,
.footer-contact p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  z-index: 40;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 1024px) {
  .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .diferenciais-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
  }

  .hero-grid,
  .contato-grid,
  .convenio-card {
    grid-template-columns: 1fr;
  }

  .convenio-card {
    text-align: center;
    padding: 28px 22px;
  }

  .convenio-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-photo-wrap,
  .hero-photo {
    min-height: 360px;
    height: 380px;
  }

  .trust-badge {
    left: 16px;
    bottom: 28px;
    width: 180px;
  }

  .section-head h2 {
    display: block;
  }

  .section-head h2::before,
  .section-head h2::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .produtos-grid,
  .diferenciais-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 52px;
  }

  .cotacao {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
