/* Meu Conselheiro — one-page site
   Palette: forest greens, charcoal, light grey, white */

:root {
  --green-900: #1a3d2e;
  --green-800: #245239;
  --green-700: #2f6b4f;
  --green-600: #3a835f;
  --green-500: #4a9a72;
  --green-100: #e8f2ec;
  --green-50: #f3f8f5;
  --charcoal: #1f2421;
  --charcoal-soft: #3a423d;
  --grey-600: #5c665f;
  --grey-400: #9aa39c;
  --grey-200: #dfe4e1;
  --grey-100: #eef1ef;
  --white: #ffffff;
  --cream: #f7f9f7;
  --accent: #2f6b4f;
  --danger-soft: #fef3e8;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 40px rgba(31, 36, 33, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 36, 33, 0.12);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", "DM Sans", system-ui, -apple-system, sans-serif;
  --container: 1120px;
  --header-h: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-700);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-900);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green-700);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 2.5rem, var(--container));
  }
}

@media (min-width: 960px) {
  .container {
    width: min(100% - 4rem, var(--container));
  }
}

h1, h2, h3 {
  font-family: var(--font-display);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  line-height: 1.3;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(160deg, var(--green-600), var(--green-800));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(47, 107, 79, 0.35);
}

.btn-primary:hover {
  color: var(--white);
  background: linear-gradient(160deg, var(--green-500), var(--green-700));
  box-shadow: 0 12px 28px rgba(47, 107, 79, 0.4);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.55rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  overflow: visible;
}
.logo-link:hover {
  opacity: 0.92;
}
.logo-header {
  height: 76px;
  width: auto;
  max-width: min(400px, 62vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
}

.nav-desktop a {
  color: var(--charcoal-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-desktop a:hover {
  color: var(--green-700);
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem 1.25rem;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a:not(.btn) {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
}

@media (max-width: 980px) and (min-width: 860px) {
  .nav-desktop a:nth-child(n+3) {
    display: none;
  }
}
@media (min-width: 860px) {
  .nav-desktop {
    display: flex;
  }
  .header-cta {
    display: inline-flex;
  }
  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .logo-header {
    height: 56px;
    max-width: min(300px, 75vw);
  }
  :root {
    --header-h: 72px;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 1.75rem 0 2.75rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(47, 107, 79, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(47, 107, 79, 0.06), transparent 50%),
    var(--cream);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.hero-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.hero-brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display), "DM Sans", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-800);
}
.eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
}

.hero h1 {
  font-family: var(--font-display), "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: #1f2421;
}

.hero-lead {
  margin: 0 0 1rem;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  max-width: 36rem;
}

.hero-promise {
  margin: 0;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.hero-promise-text {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  font-weight: 500;
}

.badge-free {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.disclaimer-inline {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  margin: 0;
  font-size: 0.78rem;
  color: var(--grey-600);
  line-height: 1.4;
}

.icon-info {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.12rem;
  color: var(--green-600);
}

/* Hero form column */
.hero-form {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.hero-form-head {
  margin-bottom: 0.65rem;
}

.hero-form-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  color: var(--charcoal);
  line-height: 1.3;
}

.upload-form {
  background: var(--white);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: 0.85rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
}

.upload-form-compact {
  max-width: none;
  margin: 0;
}

@media (min-width: 600px) {
  .upload-form {
    padding: 1rem;
  }
}

@media (min-width: 960px) {
  .hero {
    padding: 2rem 0 3rem;
    /* no full-viewport centering — title must sit under the header */
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.25rem;
    align-items: start;
    width: 100%;
  }
  .hero-copy {
    padding-right: 0.5rem;
    padding-top: 0.35rem;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

@media (min-width: 960px) {
  .section {
    padding: 5.75rem 0;
  }
}

.section-alt {
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.section-sub {
  margin: 0;
  color: var(--grey-600);
  font-size: 1.05rem;
}

/* 4-step visual flow */
.flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.flow-step {
  background: var(--cream);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.15rem 1.25rem;
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 0;
  box-shadow: var(--shadow);
}

.flow-icon {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 0.85rem;
  color: var(--green-700);
  display: grid;
  place-items: center;
}

.flow-icon svg {
  width: 3.25rem;
  height: 3.25rem;
}

.flow-num {
  position: absolute;
  top: -0.15rem;
  left: -0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  box-shadow: 0 0 0 3px var(--cream);
  z-index: 1;
}

.flow-step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.flow-step p {
  margin: 0;
  color: var(--grey-600);
  font-size: 0.9rem;
  line-height: 1.45;
}

.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  height: 1.5rem;
  flex-shrink: 0;
}

.flow-connector svg {
  width: 1.35rem;
  height: 1.35rem;
  transform: rotate(90deg);
}

@media (min-width: 900px) {
  .flow {
    flex-direction: row;
    align-items: stretch;
    gap: 0.35rem;
  }
  .flow-connector {
    width: 1.75rem;
    height: auto;
    align-self: center;
  }
  .flow-connector svg {
    transform: none;
    width: 1.5rem;
    height: 1.5rem;
  }
  .flow-step {
    padding: 1.5rem 0.85rem 1.35rem;
  }
  .flow-step h3 {
    font-size: 1rem;
  }
  .flow-step p {
    font-size: 0.85rem;
  }
}

/* Report showcase / two-page spread */
.report-showcase {
  margin-top: 3rem;
  text-align: center;
}

.report-showcase-lead {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: var(--grey-600);
  font-size: 1rem;
  font-weight: 500;
}

.report-spread {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
}

.report-page {
  margin: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(31, 36, 33, 0.06),
    0 12px 32px rgba(31, 36, 33, 0.1),
    0 28px 56px rgba(31, 36, 33, 0.08);
  border: 1px solid var(--grey-200);
}

.report-page img {
  width: 100%;
  height: auto;
  display: block;
  background: #fafafa;
}

.report-page figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-800);
  background: var(--green-50);
  border-top: 1px solid var(--grey-100);
}

@media (min-width: 720px) {
  .report-spread {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--green-700);
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--grey-600);
  font-size: 0.98rem;
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Trust */
.section-trust {
  background:
    linear-gradient(180deg, var(--green-50), var(--cream));
}

.trust-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.trust-visual {
  display: flex;
  justify-content: center;
}

.trust-visual img {
  width: min(100%, 260px);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}

.trust-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.15rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.trust-copy > p {
  color: var(--charcoal-soft);
  margin: 0 0 1.25rem;
}

.trust-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--charcoal);
  font-weight: 500;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: inset 0 0 0 3px var(--green-100);
}

.tagline-soft {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  font-weight: 600;
}

.trust-cta-wrap {
  margin: 0;
}

@media (min-width: 800px) {
  .trust-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }
  .trust-visual {
    justify-content: flex-end;
  }
}

/* Dropzone */
.dropzone {
  position: relative;
  border: 2px dashed var(--green-600);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 20%, rgba(47, 107, 79, 0.12), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(47, 107, 79, 0.08), transparent 40%),
    linear-gradient(180deg, var(--green-50), var(--white));
  padding: 0.75rem 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
  margin-bottom: 0.75rem;
  outline: none;
}

.dropzone-compact {
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
}

.dropzone:hover,
.dropzone:focus-visible {
  border-color: var(--green-800);
  box-shadow: 0 0 0 4px rgba(47, 107, 79, 0.15);
  transform: translateY(-1px);
}

.dropzone.is-dragover {
  border-color: var(--green-800);
  border-style: solid;
  background: var(--green-100);
  box-shadow: 0 0 0 6px rgba(47, 107, 79, 0.2);
}

.dropzone.has-file {
  border-style: solid;
  border-color: var(--green-700);
  background: var(--green-50);
}

.dropzone-inner {
  text-align: center;
  pointer-events: none;
}

.dropzone-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.35rem;
  color: var(--green-700);
}

.dropzone-icon svg {
  width: 100%;
  height: 100%;
}

.dropzone-title {
  margin: 0 0 0.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-900);
}

.dropzone-hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--grey-600);
}

.dropzone-file {
  margin: 0.75rem 0 0;
  padding: 0.5rem 0.85rem;
  background: var(--white);
  border-radius: 999px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-800);
  border: 1px solid var(--green-100);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropzone-file[hidden] {
  display: none;
}

.form-grid {
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .field-full {
    grid-column: 1 / -1;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal-soft);
}

.field .optional {
  font-weight: 400;
  color: var(--grey-400);
}

.field abbr {
  color: var(--green-700);
  text-decoration: none;
}

.field input,
.field textarea {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 0.7rem;
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(47, 107, 79, 0.18);
  background: var(--white);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--grey-400);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #c45c2a;
}

.form-actions {
  margin-top: 0.75rem;
}

.form-actions .btn-lg {
  padding: 0.75rem 1.15rem;
  font-size: 0.95rem;
}

.form-note {
  margin: 0.55rem 0 0;
  font-size: 0.75rem;
  color: var(--grey-600);
  text-align: center;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: #c5ccc7;
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  margin: 0 auto 0.75rem;
  height: 56px;
  width: 180px;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.05);
}

.footer-brand p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  justify-content: center;
}

.footer-contact a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #a8d4b8;
  text-decoration: underline;
}

.footer-copy {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--grey-400);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  width: 100%;
}

@media (min-width: 700px) {
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    align-items: start;
  }
  .footer-brand img {
    margin-left: 0;
  }
  .footer-contact {
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }
  .footer-copy {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* Pricing */
.section-pricing {
  background: var(--cream, #f7f5f0);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }
}

.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,.04));
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
}

.price-card-featured {
  border-color: var(--green-600);
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
}

.price-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  margin: 0;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.price {
  margin: 0;
}

.price-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.95rem;
  color: var(--grey-600);
  margin-left: 0.15rem;
}

.price-desc {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  min-height: 2.6em;
}

.price-card ul {
  margin: 0 0 0.5rem;
  padding: 0 0 0 1.1rem;
  color: var(--charcoal-soft);
  font-size: 0.92rem;
  flex: 1;
}

.price-card li {
  margin-bottom: 0.35rem;
}

.price-card .btn {
  margin-top: auto;
}

.btn-secondary {
  background: transparent;
  color: var(--green-800);
  border: 1.5px solid var(--green-600);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--green-50);
  color: var(--green-900);
}
