* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #171411;
  background: #ffffff;
}

body::before {
  content: none;
}

.web-shell {
  width: 100%;
}

.web-header h1,
.web-article h1,
.web-article h2,
.web-article h3,
.web-empty-state h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.02em;
}

.web-eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5f5850;
}

.web-content {
  min-height: 100vh;
  background: #ffffff;
}

.web-article {
  width: 100%;
  line-height: 1.75;
  color: #2d2722;
}

.web-article > *:first-child {
  margin-top: 0;
}

.web-article > *:last-child {
  margin-bottom: 0;
}

.web-article p,
.web-article ul,
.web-article ol,
.web-article blockquote {
  margin: 0 0 18px;
}

.web-article blockquote {
  padding: 16px 18px;
  border-left: 3px solid rgba(23, 53, 42, 0.35);
  background: rgba(243, 239, 232, 0.72);
  color: #5f5850;
}

.web-article a {
  color: #17352a;
}

.web-empty-state {
  display: grid;
  gap: 14px;
  min-height: 320px;
  align-content: center;
  max-width: 620px;
}

.web-empty-state p {
  margin: 0;
  color: #5f5850;
  line-height: 1.8;
}

.web-article img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(100vw - 32px), 400px);
  min-height: 56px;
  padding: 0 22px;
  background: linear-gradient(135deg, #1a9a58, #167d47);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(22, 125, 71, 0.32);
  transform: translateX(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 20px 42px rgba(22, 125, 71, 0.38);
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 12px;
    width: min(calc(100vw - 24px), 400px);
  }
}
