:root {
  --bg-main: #ffffff;           /* Branco puro */
  --bg-card: #f6e3c3;           /* Bege claro (cachorro) */
  --text-main: #222222;         /* Preto/texto */
  --text-soft: #4a4a4a;         /* Cinza escuro para texto secundário */
  --brand: #e53935;             /* Vermelho vivo */
  --brand-strong: #18803c;      /* Verde bandeira */
  --accent: #f9d77e;            /* Amarelo claro (gato) */
  --border: #e0e0e0;            /* Cinza claro para bordas */
  --shadow: 0 20px 50px rgba(24, 128, 60, 0.10); /* Sombra esverdeada sutil */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% 10%, rgba(207, 54, 68, 0.2), transparent 42%),
    radial-gradient(circle at 95% 0%, rgba(215, 194, 167, 0.35), transparent 36%),
    linear-gradient(160deg, #fdf7f3 0%, #f8efea 44%, #f8f2ed 100%);
  padding: 20px;
}

h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  margin-top: 0;
}

p {
  line-height: 1.6;
  color: var(--text-soft);
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.6;
}

.bg-shape-1 {
  width: 250px;
  height: 250px;
  background: #e53935;
  top: -70px;
  left: -40px;
}

.bg-shape-2 {
  width: 220px;
  height: 220px;
  background: #18803c;
  right: -40px;
  bottom: -70px;
}

.landing-container,
.form-page-container {
  max-width: 1050px;
  margin: 0 auto;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.brand-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-nav a {
  color: var(--brand-strong);
  text-decoration: none;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(169, 35, 50, 0.28);
  background: rgba(255, 255, 255, 0.55);
}

.brand-nav a:hover {
  background: rgba(169, 35, 50, 0.1);
}

.brand-pill {
  display: inline-block;
  background: var(--brand-strong);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-card,
.form-card {
  background: var(--bg-card);
  border: 1px solid rgba(207, 54, 68, 0.16);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-card h1,
.form-card h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.7rem);
  margin-bottom: 14px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.hero-layout::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(207, 54, 68, 0.2), rgba(207, 54, 68, 0));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8d1d29;
  background: rgba(207, 54, 68, 0.12);
  border: 1px solid rgba(207, 54, 68, 0.3);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 12px;
}

.hero-notes {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.hero-notes li {
  margin-bottom: 8px;
}

.hero-panel {
  position: relative;
  z-index: 1;
  background: linear-gradient(170deg, #18803c 0%, #e53935 100%);
  color: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.panel-title {
  margin: 0 0 12px;
  color: #f9d77e;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.impact-grid {
  display: grid;
  gap: 10px;
}

.impact-grid article {
  border: 1px solid rgba(255, 217, 221, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.impact-grid strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 4px;
}

.impact-grid span {
  font-size: 0.92rem;
  color: #ffe8ea;
}

.trust-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-strip article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}

.trust-label {
  margin: 0 0 4px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: #18803c;
}

.legal-disclaimer {
  margin-top: 18px;
  background: linear-gradient(155deg, #f9d77e 0%, #fffdf7 100%);
  border: 1px solid #f9d77e;
  border-left: 8px solid #18803c;
  border-radius: 16px;
  padding: 16px 18px;
}

.legal-disclaimer h2 {
  margin-bottom: 8px;
}

.legal-disclaimer p {
  margin: 6px 0;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(24, 128, 60, 0.10);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--brand-strong);
  border: 1.5px solid var(--brand-strong);
  border-radius: 12px;
  padding: 14px 18px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(24, 128, 60, 0.08);
}

.info-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-grid article {
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.link-back {
  color: var(--brand-strong);
  text-decoration: none;
  display: inline-block;
  margin: 8px 0 16px;
  font-weight: 700;
}

.solicitacao-form {
  margin-top: 20px;
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  color: var(--text-main);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  background: #fffefb;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(207, 54, 68, 0.25);
  border-color: var(--brand);
}

.full-width {
  margin-top: 14px;
}

.feedback {
  margin-top: 16px;
  min-height: 28px;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
}

.feedback.success {
  background: rgba(207, 54, 68, 0.1);
  color: #8d1d29;
}

.feedback.error {
  background: rgba(168, 45, 45, 0.13);
  color: #8a1c1c;
}

.admin-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin: 18px 0 10px;
}

.admin-filters button {
  width: 100%;
}

.admin-table-wrap {
  margin-top: 14px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fffefb;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(215, 223, 219, 0.8);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  background: rgba(207, 54, 68, 0.07);
}

.admin-inline-select {
  min-width: 140px;
  padding: 8px;
  border-radius: 10px;
}

.admin-save-btn {
  padding: 10px 12px;
}

.admin-empty {
  margin-top: 14px;
  font-weight: 700;
  color: var(--text-soft);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.16s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  body {
    padding: 12px;
  }

  .hero-card,
  .form-card {
    border-radius: 18px;
    padding: 18px;
  }

  .brand-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-nav {
    flex-wrap: wrap;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .admin-filters {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }
}
