/* Landing PetCare Gestão — Planilha Profissional */
:root {
  --primary: #184A4E;
  --secondary: #9FA488;
  --accent: #CAB77D;
  --bg: #F8F9FA;
  --cream: #ECE4BB;
  --white: #ffffff;
  --text: #2c3e3f;
  --text-muted: #5a6b6c;
  --success: #2d6a4f;
  --danger: #c0392b;
  --font: Tahoma, 'Segoe UI', Geneva, Verdana, sans-serif;
  --radius: 10px;
  --shadow: 0 8px 32px rgba(24, 74, 78, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(24, 74, 78, 0.1);
}

.landing-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--primary);
}

.landing-brand:hover {
  text-decoration: none;
}

.landing-brand img {
  width: 48px;
  height: 48px;
}

.landing-brand strong {
  display: block;
  font-size: 1.05rem;
}

.landing-brand span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: normal;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.landing-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.4rem 0.65rem;
  text-decoration: none;
}

.landing-nav a:not(.btn):hover {
  background: var(--cream);
  border-radius: 6px;
  text-decoration: none;
}

/* Botão no menu: texto claro no fundo escuro (evita conflito com .landing-nav a) */
.landing-nav a.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.landing-nav a.btn-primary:hover {
  background: #1f5c61;
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(24, 74, 78, 0.25);
}

.btn-primary:hover {
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.hero {
  background: linear-gradient(145deg, var(--primary) 0%, #1f5c61 45%, var(--secondary) 100%);
  color: var(--white);
  padding: 3rem 1.25rem 4rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero .lead {
  font-size: 1.05rem;
  opacity: 0.95;
  margin: 0 0 1.5rem;
  max-width: 32rem;
}

.hero-units {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.landing-public-note {
  margin: 1rem 0 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  color: var(--primary);
  background: var(--cream);
  border-left: 4px solid var(--secondary);
  border-radius: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-actions .btn-outline {
  border-color: var(--cream);
  color: var(--white);
}

.hero-visual {
  text-align: center;
}

.hero-illustration {
  display: block;
  max-width: min(100%, 320px);
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.12));
}

.hero-visual img {
  width: min(280px, 80vw);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  color: var(--primary);
  font-size: 1.65rem;
  margin: 0 0 0.5rem;
}

.section-title p {
  color: var(--text-muted);
  margin: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid rgba(24, 74, 78, 0.1);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(24, 74, 78, 0.16);
}

.pain-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--primary);
}

.pain-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.benefits-section {
  background: var(--white);
  border-top: 1px solid rgba(24, 74, 78, 0.08);
  border-bottom: 1px solid rgba(24, 74, 78, 0.08);
}

.benefits-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.85rem 1rem;
}

.benefits-checklist li {
  position: relative;
  background: var(--bg);
  border: 1px solid rgba(159, 164, 136, 0.35);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem 0.85rem 2.2rem;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.benefits-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0.8rem;
  top: 0.82rem;
  color: var(--success);
  font-weight: 700;
}

.benefits-checklist li strong {
  color: var(--primary);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

.how-step {
  text-align: center;
  padding: 1rem;
}

.how-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50%;
}

.how-step h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin: 0 0 0.35rem;
}

.how-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.cta-band {
  background: linear-gradient(90deg, var(--primary), #1a5559);
  color: var(--white);
  text-align: center;
  padding: 2.5rem 1.25rem;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.9;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  color: var(--primary);
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.contact-item {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.contact-item strong {
  color: var(--primary);
  min-width: 4.5rem;
}

.landing-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 1.5rem 1.25rem;
  font-size: 0.8rem;
}

.landing-footer a {
  color: var(--cream);
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-units,
  .hero-actions {
    justify-content: center;
  }

  .landing-nav a:not(.btn) {
    display: none;
  }
}
