:root {
  --ink: #14212b;
  --muted: #60717c;
  --line: #dbe7e4;
  --paper: #fbfaf5;
  --soft: #eef6f3;
  --teal: #0f766e;
  --teal-dark: #0d4f4b;
  --coral: #e85d4f;
  --blue: #315f9f;
  --white: #ffffff;
  --shadow: 0 12px 26px rgba(20, 33, 43, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.11), transparent 25rem),
    linear-gradient(180deg, #f8fbf9 0%, var(--paper) 52%, #f5f7f2 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.catalog {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.catalog-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.brand-line {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.catalog-heading p {
  max-width: 680px;
  color: #334852;
  font-size: 1.08rem;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 286px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-image {
  min-height: 100%;
  background: var(--soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image img[src*="-catalogo.jpg"] {
  object-fit: contain;
  background: #f8fbf9;
}

.product-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.product-body p {
  color: #4e606b;
  line-height: 1.48;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}

.card-topline span {
  max-width: 64%;
  padding: 7px 10px;
  border-radius: 999px;
  color: #07554e;
  background: #dff5ee;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-topline strong {
  color: var(--blue);
  font-size: 0.92rem;
  white-space: nowrap;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.1;
  text-align: center;
}

.button.primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 22px rgba(232, 93, 79, 0.26);
}

.button.ghost {
  color: var(--teal-dark);
  background: #e7f4ef;
  border: 1px solid #b9dbd2;
  box-shadow: none;
}

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

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .catalog {
    width: min(100% - 24px, 1120px);
    padding-top: 28px;
  }

  h1 {
    font-size: 2.22rem;
    line-height: 1.06;
  }

  .catalog-heading p {
    font-size: 1rem;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 210px;
  }

  .product-body {
    padding: 18px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
