:root {
  --bg: #f7f4ee;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #20303a;
  --muted: #53616b;
  --line: rgba(32, 48, 58, 0.12);
  --brand: #0f766e;
  --brand-dark: #0b4f50;
  --accent: #d97706;
  --shadow: 0 24px 60px rgba(20, 34, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 28%),
    linear-gradient(180deg, #dce8e8 0%, var(--bg) 42%, #fbfaf7 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  padding: 24px;
}

.topbar,
.hero-content,
.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(180px, 26vw, 320px);
  max-width: 100%;
  height: auto;
  filter: sepia(1) saturate(0.62) hue-rotate(132deg) brightness(0.7) contrast(1.08);
}

.topbar-link {
  flex: 0 0 auto;
  color: var(--brand-dark);
  font-weight: 600;
  white-space: nowrap;
}

.hero-content {
  padding: 72px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.hero-copy,
.section p,
.benefits,
.contact-list,
.contact-note {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.hero-copy {
  max-width: 42rem;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: var(--shadow);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.contact-strip,
.contact-card,
.card,
.highlight {
  backdrop-filter: blur(10px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: fit-content;
  padding: 18px 22px;
  border-radius: 24px;
}

.contact-strip .label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-strip a,
.contact-list a {
  color: var(--brand-dark);
  font-weight: 700;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.24);
}

.section {
  padding: 56px 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 24px;
}

.intro p {
  max-width: 48rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card,
.highlight,
.contact-card {
  border-radius: 28px;
  padding: 28px;
}

.highlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.benefits {
  margin: 0;
  padding-left: 20px;
}

.contact-card {
  max-width: 720px;
  background: var(--surface-strong);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 10px;
}

.contact-note {
  font-size: 0.98rem;
}

@media (max-width: 820px) {
  .hero {
    padding: 18px;
  }

  .topbar {
    flex-wrap: wrap;
  }

  .brand-logo {
    width: min(100%, 210px);
  }

  .hero-content {
    padding-top: 48px;
  }

  .contact-strip,
  .cards,
  .highlight {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 9ch;
  }
}
