:root {
  --green: #478421;
  --teal: #289D99;
  --blue: #1D4550;
  --orange: #EB7E1E;
  --paper: #FBF8F1;
  --paper-deep: #F1E8DA;
  --white: #FFFFFF;
  --ink: #17343A;
  --muted: #5E706E;
  --line: rgba(29, 69, 80, 0.16);
  --shadow: 0 24px 70px rgba(29, 69, 80, 0.12);
  --container: 1180px;
  --header: 82px;
  --font-title: "Montserrat", Arial, sans-serif;
  --font-reading: "Lora", Georgia, serif;
  --font-body: "Source Sans 3", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p,
blockquote,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  line-height: 1.12;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  background: rgba(251, 248, 241, 0.93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(29, 69, 80, 0.08);
  background: rgba(251, 248, 241, 0.98);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
}

.brand img {
  width: 78px;
  height: 68px;
  object-fit: contain;
  transition: transform 260ms var(--ease);
}

.brand:hover img {
  transform: translateY(-2px) scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.nav-links a:hover::after,
.nav-links a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 4px;
  background: var(--blue);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 220ms var(--ease), color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--header {
  min-height: 42px;
  padding: 11px 20px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(29, 69, 80, 0.16);
}

.btn--header:hover {
  background: #075664;
  box-shadow: 0 14px 30px rgba(29, 69, 80, 0.22);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 15px 32px rgba(29, 69, 80, 0.18);
}

.btn--primary:hover {
  background: #075A67;
  box-shadow: 0 20px 38px rgba(29, 69, 80, 0.24);
}

.btn--secondary {
  color: var(--blue);
  border-color: rgba(29, 69, 80, 0.34);
  background: rgba(255, 255, 255, 0.45);
}

.btn--secondary:hover {
  border-color: var(--teal);
  background: var(--white);
}

.btn--contact-whatsapp {
  width: max-content;
  margin-top: 28px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.16);
}

.btn--contact-whatsapp:hover {
  background: var(--orange);
  color: var(--blue);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.btn--block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header) + 78px) 0 90px;
  background:
    radial-gradient(circle at 7% 20%, rgba(235, 126, 30, 0.16), transparent 28%),
    linear-gradient(135deg, var(--paper) 0%, #F8F2E8 58%, #E7F2EF 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--green) 0 24%, var(--teal) 24% 49%, var(--blue) 49% 74%, var(--orange) 74% 100%);
}

.hero-petal {
  position: absolute;
  border-radius: 100% 0 100% 0;
  transform: rotate(35deg);
  pointer-events: none;
}

.hero-petal--one {
  top: 130px;
  left: -110px;
  width: 270px;
  height: 150px;
  background: rgba(40, 157, 153, 0.08);
}

.hero-petal--two {
  right: 34%;
  bottom: 20px;
  width: 210px;
  height: 110px;
  background: rgba(235, 126, 30, 0.08);
  transform: rotate(-18deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
}

.hero-copy {
  max-width: 720px;
}

.kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: var(--font-title);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker span {
  width: 36px;
  height: 3px;
  border-radius: 4px;
  background: var(--orange);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: clamp(2.8rem, 5.1vw, 4.65rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero h1 strong {
  position: relative;
  color: var(--green);
  font-weight: inherit;
}

.hero h1 strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.02em;
  left: 0;
  height: 0.18em;
  border-radius: 50%;
  background: rgba(235, 126, 30, 0.28);
  z-index: -1;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-family: var(--font-reading);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-open-note {
  max-width: 630px;
  margin-bottom: 25px;
  padding: 13px 17px;
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.46);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-open-note strong {
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 0.82rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-list li {
  position: relative;
  padding-left: 20px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 46px 22px;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.76);
  border-radius: 52% 52% 22px 22px;
  box-shadow: var(--shadow);
  background: var(--blue);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 69, 80, 0.06), rgba(29, 69, 80, 0.44));
}

.hero-photo img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.92);
  transform: translateY(-5%);
  will-change: transform;
}

.hero-seal {
  position: absolute;
  right: -22px;
  bottom: 22px;
  z-index: 2;
  width: min(290px, 78%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 52px rgba(29, 69, 80, 0.18);
}

.hero-seal > img {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.hero-seal p {
  margin: 0;
  line-height: 1.3;
}

.hero-seal strong,
.hero-seal span {
  display: block;
}

.hero-seal strong {
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 0.78rem;
}

.hero-seal span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.photo-note {
  position: absolute;
  right: 8px;
  bottom: -23px;
  left: 28px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.entry-section {
  padding: 95px 0 110px;
}

.section {
  padding: clamp(90px, 11vw, 145px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading--row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.manifesto h2,
.contact-intro h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.section-heading--row > p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--font-reading);
  font-size: 1.05rem;
  line-height: 1.75;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.entry-card {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 260ms var(--ease), box-shadow 260ms ease, border-color 260ms ease;
}

.entry-card::before {
  content: "";
  position: absolute;
  top: -72px;
  right: -48px;
  width: 150px;
  height: 100px;
  border-radius: 100% 0;
  transform: rotate(28deg);
  opacity: 0.12;
  transition: transform 320ms var(--ease), opacity 320ms ease;
}

.entry-card--patient::before {
  background: var(--green);
}

.entry-card--support::before {
  background: var(--orange);
}

.entry-card--professional::before {
  background: var(--teal);
}

.entry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29, 69, 80, 0.3);
  box-shadow: 0 22px 52px rgba(29, 69, 80, 0.13);
}

.entry-card:hover::before {
  transform: translate(-10px, 12px) rotate(34deg);
  opacity: 0.22;
}

.entry-number {
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 800;
}

.entry-card h3 {
  max-width: 260px;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.35rem;
}

.entry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.entry-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--teal);
  font-size: 1.35rem;
  transition: transform 220ms ease;
}

.entry-card:hover .entry-arrow {
  transform: translate(4px, -4px);
}

.manifesto {
  position: relative;
  padding: clamp(100px, 12vw, 155px) 0;
  overflow: hidden;
  background: var(--blue);
  color: rgba(255, 255, 255, 0.78);
}

.manifesto::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--teal));
}

.manifesto-mark {
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 580px;
  height: 450px;
  opacity: 0.08;
  background: url("assets/brand/mark-branco.svg") center / contain no-repeat;
  transform: rotate(-8deg);
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.2fr;
  gap: clamp(60px, 9vw, 130px);
}

.eyebrow--light {
  color: var(--orange);
}

.manifesto h2,
.contact-intro h2 {
  color: var(--white);
}

.manifesto blockquote {
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-reading);
  font-size: clamp(1.4rem, 2.8vw, 2.25rem);
  font-style: italic;
  line-height: 1.5;
}

.statute-source {
  display: block;
  margin-bottom: 32px;
  color: var(--orange);
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto-content > p {
  max-width: 720px;
  font-size: 1.03rem;
}

.statute-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.statute-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 240ms var(--ease), background 240ms ease, border-color 240ms ease;
}

.statute-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(235, 126, 30, 0.7);
  background: rgba(255, 255, 255, 0.09);
}

.statute-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--orange);
  font-family: var(--font-title);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statute-grid p {
  margin: 0;
  color: var(--white);
  font-family: var(--font-reading);
  font-size: 0.92rem;
  line-height: 1.65;
}

.how-section {
  background: var(--paper);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 38px);
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps::before {
  content: "";
  position: absolute;
  top: 29px;
  right: 11%;
  left: 11%;
  height: 2px;
  background: linear-gradient(90deg, rgba(71, 132, 33, 0.5), rgba(40, 157, 153, 0.5), rgba(29, 69, 80, 0.5), rgba(235, 126, 30, 0.5));
}

.step {
  --step-accent: var(--green);
  --step-soft: rgba(71, 132, 33, 0.08);
  position: relative;
  isolation: isolate;
  min-height: 300px;
  padding: 0 8px 22px;
  background: transparent;
  transition: transform 240ms var(--ease);
}

.step:nth-child(2) {
  --step-accent: var(--teal);
  --step-soft: rgba(40, 157, 153, 0.09);
}

.step:nth-child(3) {
  --step-accent: var(--blue);
  --step-soft: rgba(29, 69, 80, 0.09);
}

.step:nth-child(4) {
  --step-accent: var(--orange);
  --step-soft: rgba(235, 126, 30, 0.1);
}

.step::before {
  content: "";
  position: absolute;
  inset: 80px 0 0;
  z-index: -1;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--step-soft), transparent 72%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms var(--ease);
}

.step:hover {
  transform: translateY(-4px);
}

.step:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border: 6px solid var(--paper);
  border-radius: 50% 50% 16px 50%;
  background: var(--step-accent);
  box-shadow: 0 8px 24px rgba(29, 69, 80, 0.12);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 800;
  transform: rotate(-5deg);
  transition: border-radius 240ms var(--ease), transform 240ms var(--ease);
}

.step:hover .step-number {
  border-radius: 50% 16px 50% 50%;
  transform: rotate(3deg) scale(1.04);
}

.step-icon {
  width: max-content;
  height: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  padding: 0;
  color: var(--step-accent);
  font-family: var(--font-title);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease);
}

.step-icon::before {
  content: "";
  width: 10px;
  height: 15px;
  flex: none;
  border-radius: 100% 0;
  background: var(--step-accent);
  transform: rotate(34deg);
}

.step:hover .step-icon {
  transform: translateX(4px);
}

.step h3 {
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 1.22rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.clarity-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 42px;
  padding: 38px;
  border-radius: 24px;
  background: var(--paper-deep);
}

.clarity-panel h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.45rem;
}

.clarity-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clarity-panel li {
  position: relative;
  padding: 8px 0 8px 25px;
  border-bottom: 1px solid rgba(29, 69, 80, 0.1);
  color: var(--ink);
}

.clarity-panel li::before {
  content: "";
  position: absolute;
  top: 1.08em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.clarity-panel__limits li::before {
  border: 2px solid var(--orange);
  background: transparent;
}

.botanical-band {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.botanical-band__image {
  position: absolute;
  inset: -8%;
  background: url("assets/cannabis-bg.jpg") center / cover no-repeat fixed;
  filter: saturate(0.6);
}

.botanical-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 69, 80, 0.95) 0%, rgba(29, 69, 80, 0.74) 52%, rgba(29, 69, 80, 0.36) 100%);
}

.botanical-band__content {
  position: relative;
  z-index: 1;
}

.botanical-quote {
  margin: 0;
  color: var(--white);
  font-family: var(--font-reading);
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  font-style: italic;
  line-height: 1.3;
}

.network-section {
  background: #F7F1E7;
}

.professional-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.professional-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.professional-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(29, 69, 80, 0.12);
}

.professional-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--paper-deep);
}

.professional-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(29, 69, 80, 0.46));
}

.professional-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82);
  transition: transform 500ms var(--ease), filter 500ms ease;
}

.professional-card:hover .professional-photo img {
  transform: scale(1.04);
  filter: saturate(1);
}

.professional-photo span {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 0.62rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.professional-body {
  padding: 28px;
}

.professional-role {
  margin-bottom: 8px;
  color: var(--teal);
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.professional-body h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.25rem;
}

.professional-body > p:not(.professional-role) {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.62;
}

.professional-body details {
  margin: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.professional-body summary {
  position: relative;
  padding: 12px 24px 12px 0;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.professional-body summary::-webkit-details-marker {
  display: none;
}

.professional-body summary::after {
  content: "+";
  position: absolute;
  top: 10px;
  right: 0;
  color: var(--teal);
  font-size: 1.1rem;
}

.professional-body details[open] summary::after {
  content: "−";
}

.professional-body details div {
  padding: 0 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.professional-body details p {
  margin: 0;
}

.professional-body > a {
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  border-bottom: 2px solid var(--orange);
}

.network-note {
  max-width: 800px;
  margin: 34px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 9vw, 130px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header) + 42px);
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--font-reading);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  margin-top: 18px;
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 220ms ease;
}

.text-link:hover span {
  transform: translate(4px, -4px);
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 24px 54px 24px 0;
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:hover {
  padding-left: 8px;
  color: var(--teal);
}

.faq summary > span {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq summary > span::before,
.faq summary > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--teal);
  transform: translate(-50%, -50%);
}

.faq summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.faq details[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq details > div {
  max-width: 760px;
  padding: 0 54px 25px 0;
  color: var(--muted);
}

.faq details > div p {
  margin: 0;
}

.participation-section {
  padding-top: 0;
}

.participation-shell {
  position: relative;
  padding: clamp(44px, 7vw, 82px);
  overflow: hidden;
  border-radius: 34px;
  background: var(--paper-deep);
}

.participation-shell::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 330px;
  height: 220px;
  border-radius: 100% 0;
  background: rgba(40, 157, 153, 0.1);
  transform: rotate(28deg);
}

.participation-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.participation-card {
  padding: 28px;
  border: 1px solid rgba(29, 69, 80, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  transition: transform 240ms var(--ease), background 240ms ease;
}

.participation-card:hover {
  transform: translateY(-6px);
  background: var(--white);
}

.participation-card > span {
  color: var(--orange);
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 800;
}

.participation-card h3 {
  margin: 30px 0 12px;
  color: var(--blue);
  font-size: 1.25rem;
}

.participation-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.participation-card a {
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  border-bottom: 2px solid var(--orange);
}

.contact-section {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.8);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(55px, 8vw, 105px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: calc(var(--header) + 44px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 500px;
  font-family: var(--font-reading);
  font-size: 1.15rem;
}

.contact-info {
  margin-top: 54px;
}

.contact-info > div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-info span {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info strong,
.contact-info a,
.contact-info address {
  color: var(--white);
  font-style: normal;
}

.form-card {
  padding: clamp(28px, 4vw, 50px);
  border-radius: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.form-label {
  margin-bottom: 8px;
  color: var(--teal);
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-card h3 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.form-intro {
  margin-bottom: 30px;
  color: var(--muted);
}

.field {
  margin-bottom: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 0.76rem;
  font-weight: 700;
}

.field label span {
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(29, 69, 80, 0.22);
  border-radius: 12px;
  background: #FCFAF6;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(40, 157, 153, 0.11);
}

.field small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  margin: 8px 0 17px;
  color: var(--muted);
  font-size: 0.84rem;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.privacy-note {
  margin-bottom: 22px;
  padding: 12px 15px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.8rem;
}

.privacy-note summary {
  color: var(--blue);
  font-weight: 700;
  cursor: pointer;
}

.privacy-note p {
  margin: 9px 0 0;
}

.hp {
  position: absolute;
  left: -9999px;
}

.form-feedback {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.86rem;
}

.form-feedback.ok {
  display: block;
  background: rgba(71, 132, 33, 0.11);
  color: #075F0A;
}

.form-feedback.err {
  display: block;
  background: rgba(235, 126, 30, 0.12);
  color: #7A3B08;
}

.map-card {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 80px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
}

.map-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.35rem;
}

.map-card p:last-child {
  margin: 0;
  font-size: 0.9rem;
}

.map-card iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 16px;
  filter: saturate(0.65);
}

.site-footer {
  position: relative;
  padding: 0 0 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 16%, rgba(40, 157, 153, 0.16), transparent 28%),
    radial-gradient(circle at 91% 38%, rgba(235, 126, 30, 0.1), transparent 24%),
    #032F37;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 220px;
  left: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 70% 30% 68% 32%;
  transform: rotate(32deg);
  pointer-events: none;
}

.footer-spectrum {
  height: 5px;
  background: linear-gradient(90deg, var(--green) 0 24%, var(--teal) 24% 48%, var(--blue) 48% 72%, var(--orange) 72% 100%);
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 44px;
  align-items: center;
  margin: 44px 0 66px;
  padding: 30px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(0, 23, 28, 0.2);
}

.footer-cta::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -94px;
  width: 230px;
  height: 230px;
  border: 42px solid rgba(40, 157, 153, 0.08);
  border-radius: 50% 50% 20% 50%;
  transform: rotate(18deg);
  pointer-events: none;
}

.footer-cta__brand,
.footer-cta__action {
  position: relative;
  z-index: 1;
}

.footer-cta__brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-cta__mark {
  display: grid;
  flex: 0 0 98px;
  width: 98px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 58% 42% 58% 42%;
  background: rgba(255, 255, 255, 0.95);
  transform: rotate(-3deg);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.footer-cta:hover .footer-cta__mark {
  box-shadow: 0 15px 35px rgba(0, 23, 28, 0.2);
  transform: rotate(2deg) translateY(-3px);
}

.footer-cta__mark img {
  width: 76px;
  height: auto;
}

.footer-kicker {
  margin-bottom: 7px;
  color: var(--orange);
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 590px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-reading);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 600;
}

.footer-cta__action {
  display: grid;
  justify-items: start;
  gap: 16px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta__action p {
  max-width: 390px;
  margin: 0;
  font-size: 0.94rem;
}

.footer-whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.77rem;
  font-weight: 700;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.footer-whatsapp-button::after {
  content: "›";
  color: var(--orange);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 220ms var(--ease);
}

.footer-whatsapp-button:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}

.footer-whatsapp-button:hover::after {
  transform: translateX(3px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(150px, 0.5fr) minmax(360px, 1.15fr);
  gap: clamp(42px, 6vw, 86px);
  padding-bottom: 44px;
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-brand > p {
  max-width: 320px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.footer-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-principles span {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-title);
  font-size: 0.62rem;
  font-weight: 600;
}

.footer-heading {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.footer-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  transition: color 200ms ease, transform 200ms var(--ease);
}

.footer-nav a::before {
  content: "";
  width: 7px;
  height: 11px;
  border-radius: 100% 0 100% 0;
  background: var(--teal);
  transform: rotate(35deg);
  transition: background 200ms ease, transform 200ms var(--ease);
}

.footer-nav a:nth-of-type(3n + 2)::before {
  background: var(--orange);
}

.footer-nav a:nth-of-type(3n)::before {
  background: var(--green);
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-nav a:hover::before {
  background: var(--orange);
  transform: rotate(80deg) scale(1.12);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact .footer-heading {
  margin-bottom: 10px;
}

.footer-contact-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

.footer-contact-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 12px 28px rgba(0, 20, 24, 0.17);
  transform: translateY(-2px);
}

.footer-contact-icon {
  --icon-color: var(--teal);
  --icon-soft: rgba(40, 157, 153, 0.15);
  --icon-edge: rgba(40, 157, 153, 0.42);
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--icon-edge);
  border-radius: 62% 38% 58% 42%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.1), transparent 34%),
    var(--icon-soft);
  color: var(--icon-color);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.025);
  transform: rotate(-5deg);
  transition: border-radius 240ms var(--ease), transform 240ms var(--ease), background 240ms ease;
}

.footer-contact-card:hover .footer-contact-icon {
  border-radius: 38% 62% 42% 58%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.16), transparent 36%),
    var(--icon-soft);
  transform: rotate(3deg) scale(1.05);
}

.footer-contact-icon--message {
  --icon-color: var(--green);
  --icon-soft: rgba(71, 132, 33, 0.17);
  --icon-edge: rgba(71, 132, 33, 0.44);
}

.footer-contact-icon--mail {
  --icon-color: var(--teal);
  --icon-soft: rgba(40, 157, 153, 0.15);
  --icon-edge: rgba(40, 157, 153, 0.42);
}

.footer-contact-icon--pin {
  --icon-color: var(--orange);
  --icon-soft: rgba(235, 126, 30, 0.16);
  --icon-edge: rgba(235, 126, 30, 0.44);
}

.footer-icon-glyph {
  position: relative;
  display: block;
  color: currentColor;
  filter: drop-shadow(0 4px 7px rgba(0, 20, 24, 0.24));
  transform: rotate(5deg);
}

.footer-contact-icon--message .footer-icon-glyph {
  width: 27px;
  height: 20px;
  border-radius: 9px 9px 9px 4px;
  background: currentColor;
}

.footer-contact-icon--message .footer-icon-glyph::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 3px;
  width: 9px;
  height: 9px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.footer-contact-icon--message .footer-icon-glyph::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 6px 0 var(--blue), 12px 0 var(--blue);
}

.footer-contact-icon--mail .footer-icon-glyph {
  width: 28px;
  height: 21px;
  overflow: hidden;
  background: currentColor;
  border-radius: 6px;
}

.footer-contact-icon--mail .footer-icon-glyph::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 20px;
  height: 12px;
  background: var(--blue);
  clip-path: polygon(0 0, 50% 72%, 100% 0, 100% 18%, 50% 92%, 0 18%);
}

.footer-contact-icon--mail .footer-icon-glyph::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 5px;
  height: 8px;
  border-radius: 100% 0;
  background: var(--orange);
  transform: rotate(24deg);
}

.footer-contact-icon--pin .footer-icon-glyph {
  width: 23px;
  height: 29px;
  border-radius: 50% 50% 50% 0;
  background: currentColor;
  transform: rotate(-40deg);
}

.footer-contact-icon--pin .footer-icon-glyph::before {
  content: none;
}

.footer-contact-icon--pin .footer-icon-glyph::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.footer-contact-copy {
  display: grid;
  min-width: 0;
}

.footer-contact-copy small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.71rem;
  line-height: 1.25;
}

.footer-contact-copy strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.footer-contact-copy > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  line-height: 1.4;
}

.footer-legal {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.footer-legal-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(235, 126, 30, 0.42);
  border-radius: 50% 50% 18% 50%;
  background: rgba(235, 126, 30, 0.12);
  color: var(--orange);
  font-family: var(--font-reading);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
}

.footer-legal strong {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-title);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-legal p {
  max-width: 1050px;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    inset: var(--header) 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 34px 30px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 300ms var(--ease);
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.4rem);
  }

  .professional-card {
    grid-template-columns: 155px 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 72px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand img {
    width: 68px;
    height: 60px;
  }

  .btn--header {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header) + 60px);
  }

  .hero-grid,
  .section-heading--row,
  .manifesto-grid,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-photo {
    inset: 0 12px 55px;
  }

  .hero-seal {
    right: 0;
  }

  .entry-grid,
  .participation-grid {
    grid-template-columns: 1fr;
  }

  .entry-card {
    min-height: 230px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps::before {
    top: 29px;
    right: auto;
    bottom: 29px;
    left: 29px;
    width: 2px;
    height: auto;
  }

  .step {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0 18px;
    min-height: 0;
    padding: 0;
  }

  .step::before {
    inset: -12px -10px -12px 58px;
  }

  .step-number {
    grid-row: 1 / span 3;
    grid-column: 1;
    margin: 0;
  }

  .step-icon,
  .step h3,
  .step p {
    grid-column: 2;
  }

  .step-icon {
    grid-row: 1;
    margin: 3px 0 8px;
  }

  .step h3 {
    grid-row: 2;
    margin-bottom: 8px;
  }

  .step p {
    grid-row: 3;
  }

  .section-heading--row {
    gap: 8px;
  }

  .manifesto-grid {
    gap: 38px;
  }

  .statute-grid {
    grid-template-columns: 1fr;
  }

  .statute-grid article {
    min-height: 0;
  }

  .clarity-panel {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .professional-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout,
  .contact-layout {
    gap: 52px;
  }

  .faq-intro,
  .contact-intro {
    position: static;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-cta__action {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .site-footer {
    padding-bottom: 94px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 15px;
    bottom: 12px;
    left: 15px;
    z-index: 90;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(29, 69, 80, 0.15);
    border-radius: 18px;
    background: rgba(251, 248, 241, 0.94);
    box-shadow: 0 18px 48px rgba(0, 43, 51, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 30px));
    backdrop-filter: blur(16px);
    transition: opacity 240ms ease, transform 280ms var(--ease);
  }

  .mobile-action-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-action-bar a {
    display: inline-flex;
    min-height: 47px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 12px;
    font-family: var(--font-title);
    font-size: 0.7rem;
    font-weight: 750;
    text-align: center;
  }

  .mobile-action-bar__secondary {
    border: 1px solid var(--line);
    color: var(--blue);
  }

  .mobile-action-bar__primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(29, 69, 80, 0.2);
  }

  .menu-open .mobile-action-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 30px));
  }

}

@media (max-width: 580px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-photo {
    inset: 0 0 55px;
    border-width: 6px;
  }

  .hero-seal {
    right: 10px;
    left: 10px;
    width: auto;
  }

  .photo-note {
    right: 0;
    left: 0;
  }

  .entry-section {
    padding: 75px 0 90px;
  }

  .section {
    padding: 86px 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }

  .botanical-band {
    min-height: 480px;
  }

  .botanical-band__image {
    background-attachment: scroll;
  }

  .professional-card {
    grid-template-columns: 1fr;
  }

  .professional-photo {
    min-height: 310px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .participation-shell {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .map-card {
    padding: 16px;
  }

  .map-card iframe {
    height: 240px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-cta {
    gap: 24px;
    margin: 30px 0 52px;
    padding: 25px 20px;
    border-radius: 22px;
  }

  .footer-cta__brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-cta__mark {
    flex-basis: 80px;
    width: 88px;
    height: 80px;
  }

  .footer-cta__mark img {
    width: 68px;
  }

  .footer-cta__action {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .footer-whatsapp-button {
    justify-content: space-between;
  }

  .footer-main {
    gap: 42px;
  }

  .footer-contact-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .footer-contact-icon {
    width: 48px;
    height: 48px;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .botanical-band__image {
    background-attachment: scroll;
  }
}
