/* ===============================
   LivePharma • SEO Pages
   =============================== */

:root {
  --laranja: #ec663b;
  --laranja-light: #ed8019;
  --cinza: #3f4548;
  --cinza-claro: #6b6f72;
  --fundo: #fff7f2;
  --box: #fff1e9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--fundo);
  color: var(--cinza);
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Arial, sans-serif;
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 24px;
  background: #ffffff;
}

h1 {
  font-size: 2.4rem;
  color: var(--laranja);
  margin-bottom: 16px;
}

h2 {
  font-size: 1.5rem;
  color: var(--laranja-light);
  margin-top: 40px;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 12px;
  color: var(--cinza-claro);
}

.destaque {
  background: var(--box);
  border-left: 5px solid var(--laranja);
  padding: 18px 20px;
  margin: 32px 0;
  font-weight: 500;
  color: var(--cinza);
}

a {
  color: var(--laranja);
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #777;
}

/* Mobile */
@media (max-width: 600px) {
  main {
    padding: 40px 16px;
  }

  h1 {
    font-size: 1.9rem;
  }
}

.cta {
  margin-top: 56px;
  padding: 32px;
  background: var(--box);
  border-radius: 6px;
  text-align: center;
}

.cta h2 {
  margin-top: 0;
  color: var(--cinza);
}

.cta p {
  margin: 16px 0 24px;
  font-size: 1rem;
  color: var(--cinza-claro);
}

.cta-button {
  display: inline-flex;              /* força comportamento de botão */
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ec663b, #ed8019);
  color: #fff !important;

  padding: 0.6rem 1.5rem;
  border-radius: 35px;

  font-weight: 600;
  font-size: 0.95rem;

  text-decoration: none !important;  /* remove sublinhado */
  border: none;
  cursor: pointer;

  transition: transform 0.25s ease, background 0.25s ease;
}

.cta-button:hover,
.cta-button:focus,
.cta-button:active {
  background: linear-gradient(135deg, #ed8019, #ec663b);
  color: #fff !important;

  text-decoration: none !important;  /* garante */
  transform: scale(1.03);
}