@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --green-950: #092d22;
  --green-900: #0f3d2e;
  --green-800: #15543f;
  --green-700: #23735a;
  --green-600: #2f9271;
  --green-100: #e6f3ee;
  --green-50: #f2faf6;
  --ink: #172033;
  --muted: #5d687a;
  --focus: #b85f00;
  --line: #dce7e1;
  --paper: #ffffff;
  --warm: #fbf7f0;
  --sand: #ece3d6;
  --sky: #dbeaf1;
  --amber: #c9862b;
  --whatsapp: #075e36;
  --whatsapp-hover: #064d2d;
  --shadow: 0 16px 44px rgba(12, 45, 36, .12);
  --shadow-soft: 0 8px 24px rgba(12, 45, 36, .08);
  --radius: 8px;
  --font-body: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7faf8;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

#main-content:focus {
  outline: 3px solid var(--focus);
  outline-offset: -3px;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.sr-only-focusable:focus,
.sr-only-focusable:focus-visible {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10001;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  clip-path: none;
  white-space: normal;
  background: #000;
  color: #fff333;
  padding: 10px 12px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: underline;
}

.noscript-message {
  margin: 0;
  background: #fff4d8;
  color: #3f2b00;
  border-bottom: 1px solid #e7c66b;
  padding: 12px 20px;
  font-weight: 700;
  text-align: center;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.accessibility-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  transform: translateY(-110%);
  background: #000;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
}

.accessibility-bar:focus-within {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.accessibility-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 18px;
  min-height: 40px;
  padding-block: 6px;
}

.accessibility-bar ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accessibility-bar a,
.accessibility-bar button {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #fff333;
  padding: 4px 7px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: .18em;
}

.accessibility-bar button[aria-pressed="true"] {
  background: #fff;
  color: #000;
  text-decoration: none;
}

.topbar {
  background: var(--green-950);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 40px;
}

.topbar__inner > span {
  font-weight: 800;
}

.topbar__inner > strong {
  justify-self: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(220, 231, 225, .74);
  box-shadow: 0 12px 34px rgba(9, 45, 34, .07);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 82px;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 0;
}

.site-logo__image {
  display: block;
  width: 150px;
  height: 54px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 18px rgba(9, 45, 34, .12);
}

.site-logo__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.site-logo__text {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.site-logo__text strong {
  color: var(--green-900);
  font-size: 17px;
  text-transform: uppercase;
}

.site-logo__text small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(15, 61, 46, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 28px rgba(9, 45, 34, .08);
  list-style: none;
}

.site-nav {
  justify-self: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nav-link:hover,
.nav-link--active {
  background: rgba(230, 243, 238, .95);
  color: var(--green-900);
  box-shadow: inset 0 0 0 1px rgba(35, 115, 90, .08);
  transform: translateY(-1px);
}

.nav-link--cta {
  margin-left: 8px;
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 10px 22px rgba(35, 115, 90, .22);
}

.nav-link--cta:hover {
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 14px 28px rgba(9, 45, 34, .24);
}

.site-header__tools {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  min-width: 0;
}

.site-search-bar {
  border-top: 1px solid rgba(220, 231, 225, .74);
  background: rgba(247, 251, 249, .92);
}

.site-search-bar__inner {
  display: flex;
  justify-content: center;
  padding-block: 10px;
}

.site-search {
  display: flex;
  align-items: stretch;
  width: min(100%, 430px);
  min-width: 0;
  border: 1px solid rgba(15, 61, 46, .16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(9, 45, 34, .06);
}

.site-search fieldset {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.site-search input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  background: transparent;
  color: var(--ink);
  padding: 0 12px;
}

.site-search input::placeholder {
  color: #667388;
  opacity: 1;
}

.site-search button {
  min-height: 44px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--green-900);
  color: #fff;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 850;
}

.site-search button:hover {
  background: var(--green-950);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-self: end;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

#main-content {
  min-height: 60vh;
}

#main-content > .container {
  width: 100%;
  max-width: none;
}

#global_statusmessage {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn,
.content-cta,
.section-more,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
}

.btn,
.content-cta {
  min-height: 46px;
  padding: 13px 20px;
}

.btn--primary,
.content-cta {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 10px 24px rgba(35, 115, 90, .24);
}

.btn--primary:hover,
.content-cta:hover {
  background: var(--green-900);
  color: #fff;
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.btn--ghost:hover {
  background: #fff;
  color: var(--green-900);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #fff;
}

.btn--outline-light {
  border: 1px solid rgba(255, 255, 255, .38);
  color: #fff;
}

.btn--outline-light:hover {
  background: #fff;
  color: var(--green-900);
}

.content-cta--light {
  background: #fff;
  color: var(--green-900);
}

.content-cta--light:hover {
  background: var(--warm);
  color: var(--green-900);
}

.text-link {
  color: var(--green-800);
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.text-link::after,
.section-more::after {
  content: ">";
  margin-left: 8px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  background:
    radial-gradient(circle at 76% 18%, rgba(47, 146, 113, .32), transparent 32%),
    linear-gradient(135deg, #06261d 0%, #0b3a2c 52%, #123e33 100%);
  color: #fff;
}

.home-hero__bg,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 31, 24, .74) 0%, rgba(7, 31, 24, .48) 52%, rgba(7, 31, 24, .18) 100%),
    linear-gradient(0deg, rgba(7, 31, 24, .26), rgba(255, 255, 255, .04));
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  align-items: end;
  gap: 54px;
  min-height: 660px;
  padding: 86px 0 62px;
}

.home-hero__copy {
  max-width: 680px;
}

.home-hero__copy .eyebrow,
.cta-section .eyebrow {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.home-hero h1 {
  margin: 18px 0 18px;
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1.05;
}

.home-hero p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
}

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

.hero-feature {
  width: 100%;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-feature__link {
  display: block;
  color: #fff;
}

.hero-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #d8d2c8;
  object-fit: cover;
  object-position: center top;
}

.hero-feature__body {
  padding: 20px;
}

.hero-feature__body span {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-feature h2 {
  margin: 8px 0;
  font-size: 21px;
  line-height: 1.25;
}

.hero-feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
}

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
  min-height: 118px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}

.trust-strip__grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--green-900);
  line-height: 1.25;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.intro-section,
.section-block,
.archive-section {
  padding: 76px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.intro-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.intro-media--portrait {
  justify-self: center;
  width: min(100%, 440px);
}

.intro-media--portrait img {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.intro-media--logo {
  justify-self: center;
  display: grid;
  place-items: center;
  width: min(100%, 440px);
  background: var(--green-900);
  padding: 42px;
}

.intro-media--logo img {
  aspect-ratio: auto;
  object-fit: contain;
}

.intro-copy h2,
.section-heading h2,
.cta-section h2,
.archive-hero h1,
.rich-page h1,
.rich-article h1,
.article-cta h2 {
  font-family: var(--font-display);
  color: var(--green-950);
  line-height: 1.12;
}

.intro-copy h2,
.section-heading h2 {
  margin: 14px 0 16px;
  font-size: 40px;
}

.intro-copy p,
.section-heading p {
  color: var(--muted);
}

.approach-band {
  padding: 82px 0;
  background: var(--green-950);
  color: #fff;
}

.section-heading {
  max-width: 690px;
}

.section-heading--center {
  margin: 0 auto 34px;
  text-align: center;
}

.approach-band .section-heading h2,
.approach-band .section-heading p {
  color: #fff;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.approach-card {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, .08);
}

.approach-card span {
  color: var(--sand);
  font-size: 13px;
  font-weight: 900;
}

.approach-card h3 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: 20px;
}

.approach-card p {
  margin: 0;
  color: rgba(255, 255, 255, .73);
}

.approach-visual {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  max-width: 900px;
  margin: 28px auto 0;
}

.approach-visual img {
  width: 100%;
  max-height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 46, .1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(9, 45, 34, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--green-700), var(--amber));
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  transform: translateY(3px);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(35, 115, 90, .32);
  box-shadow: 0 24px 54px rgba(9, 45, 34, .16);
}

.service-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .32s ease, filter .32s ease;
}

.service-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.service-card div {
  padding: 20px;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--green-950);
  font-size: 18px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-block--white {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-row,
.archive-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-more {
  min-height: 42px;
  border: 1px solid var(--green-700);
  color: var(--green-800);
  padding: 10px 14px;
  font-size: 14px;
}

.section-more:hover {
  background: var(--green-700);
  color: #fff;
}

.featured-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card,
.list-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.post-card__link {
  display: grid;
  height: 100%;
}

.post-card__media {
  position: relative;
  overflow: hidden;
}

.post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .35s ease;
}

.post-card:hover img {
  transform: scale(1.035);
}

.post-card__media span,
.list-card span,
.mosaic-card span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--green-700);
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.post-card__media span {
  position: absolute;
  left: 12px;
  top: 12px;
}

.post-card__body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.post-card__body h3,
.list-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.32;
}

.post-card__body p,
.list-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.post-card__body small,
.list-card small {
  margin-top: auto;
  color: #4f5b6d;
  font-size: 12px;
  font-weight: 800;
}

.image-mosaic {
  padding: 82px 0;
  background: linear-gradient(120deg, var(--warm), var(--sky));
}

.image-mosaic__inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 42px;
}

.image-mosaic__copy h2 {
  margin: 14px 0 14px;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.12;
}

.image-mosaic__copy p {
  color: var(--muted);
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: var(--radius);
  background: var(--green-950);
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  opacity: .92;
}

.mosaic-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(9, 45, 34, .86);
}

.topics-section {
  padding: 70px 0;
  background: var(--paper);
}

.topics-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-900);
  padding: 7px 14px;
  font-weight: 850;
}

.topic-tag strong {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--green-700);
  color: #fff;
  font-size: 12px;
}

.topic-tag:hover,
.topic-tag.is-active {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}

.topic-tag:hover strong,
.topic-tag.is-active strong {
  background: #fff;
  color: var(--green-900);
}

.cta-section {
  padding: 72px 0;
  background: var(--green-900);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-section h2 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 38px;
}

.cta-section p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.all-posts-list {
  display: grid;
  gap: 16px;
}

.list-card__link {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: stretch;
}

.list-card img {
  width: 100%;
  height: 100%;
  min-height: 166px;
  object-fit: cover;
}

.list-card div {
  padding: 20px 22px;
}

.list-card span {
  margin-bottom: 10px;
  background: var(--green-100);
  color: var(--green-900);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.pagination__pages {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination__link,
.pagination__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-900);
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 850;
}

.pagination__control {
  min-width: 92px;
}

.pagination__link:hover,
.pagination__control:hover,
.pagination__link.is-active {
  border-color: var(--green-700);
  background: var(--green-700);
  color: #fff;
}

.archive-hero {
  padding: 70px 0;
  background: var(--green-950);
  color: #fff;
}

.archive-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 48px;
}

.archive-hero h1 {
  margin: 16px 0;
  color: #fff;
  font-size: 48px;
}

.archive-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.archive-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.archive-toolbar h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 28px;
}

.archive-toolbar p {
  margin: 4px 0 0;
  color: var(--muted);
}

.archive-topics {
  margin-bottom: 28px;
}

.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 42px;
  text-align: center;
}

#content-core > #section-text,
#content-core > #section-text #parent-fieldname-text {
  max-width: none;
  margin: 0;
  padding: 0;
}

.rich-page,
.rich-article {
  background: #f7faf8;
}

.rich-page-hero {
  padding: 72px 0;
}

.rich-page-hero--split,
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 46px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.rich-page-hero__text h1,
.article-hero h1 {
  margin: 16px 0;
  font-size: 48px;
}

.rich-page-hero__text p,
.article-hero p {
  color: var(--muted);
  font-size: 18px;
}

.rich-page-hero__media,
.article-hero__media {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rich-page-hero__media img,
.article-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rich-page--about .rich-page-hero--split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.rich-page-hero__media--portrait {
  justify-self: center;
  width: min(100%, 430px);
}

.rich-page-hero__media--portrait img {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 10px 0 48px;
}

.about-story-grid__media {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-story-grid__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.content-section.about-story-grid__copy {
  width: auto;
  margin: 0;
  padding: 0;
}

.content-section,
.content-feature-grid,
.article-body {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.content-section {
  padding: 34px 0;
}

.content-section h2,
.article-body h2 {
  margin: 0 0 12px;
  color: var(--green-950);
  font-size: 28px;
  line-height: 1.25;
}

.content-section p,
.article-body p,
.article-body li {
  color: #30394a;
  font-size: 18px;
}

.content-section a:not(.content-cta):not(.professional-contact__item),
.article-body a:not(.content-cta) {
  color: var(--green-800);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.content-section ul ul {
  margin-top: 8px;
}

.content-section--highlight,
.article-cta {
  border-radius: var(--radius);
  background: var(--green-900);
  color: #fff;
  padding: 34px;
}

.content-section--highlight h2,
.content-section--highlight p,
.content-section--highlight strong,
.article-cta p,
.article-cta h2 {
  color: #fff;
}

.professional-contact {
  display: grid;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
    var(--green-900);
  box-shadow: var(--shadow-soft);
}

.professional-contact .eyebrow {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.professional-contact__header h2 {
  margin: 12px 0 8px;
  font-size: 30px;
}

.professional-contact__header p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.professional-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.professional-contact__item {
  display: grid;
  gap: 6px;
  min-height: 104px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  padding: 18px;
  color: #fff;
}

.professional-contact__item span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.professional-contact__item strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

a.professional-contact__item {
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

a.professional-contact__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.content-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding: 24px 0 54px;
}

.content-feature-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
}

.content-feature-grid h3,
.article-faq h3 {
  margin: 0 0 10px;
  color: var(--green-900);
}

.content-feature-grid ul,
.article-body ul,
.article-body ol {
  margin: 0 0 22px 22px;
  padding: 0;
}

.article-hero {
  padding: 70px 0 44px;
}

.article-body {
  padding: 18px 0 76px;
}

.article-body .lead {
  color: var(--green-950);
  font-size: 21px;
  line-height: 1.72;
}

.article-inline-image {
  margin: 34px 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.article-inline-image img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.article-inline-image figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
}

.article-faq {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.article-cta {
  margin-top: 42px;
}

.site-footer {
  background: #071f18;
  color: rgba(255, 255, 255, .72);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr 1fr;
  gap: 42px;
  padding: 56px 0 44px;
}

.site-logo--footer .site-logo__text strong,
.site-logo--footer .site-logo__text small {
  color: #fff;
}

.site-logo--footer .site-logo__image {
  box-shadow: none;
}

.footer-brand p,
.footer-contact p {
  margin: 16px 0 0;
}

.footer-whatsapp {
  display: inline-flex;
  margin-top: 20px;
  border-radius: var(--radius);
  background: var(--whatsapp);
  color: #fff;
  padding: 12px 16px;
  font-weight: 850;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  text-decoration: underline;
  text-underline-offset: .2em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 16px 0;
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
  text-align: left;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
}

.footer-credit img {
  width: 104px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.floating-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  padding: 12px 18px 12px 14px;
  box-shadow: 0 14px 30px rgba(7, 94, 54, .28);
  font-weight: 900;
}

.floating-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #fff;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp__icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

[vw],
[vw] [vw-access-button] {
  z-index: 130 !important;
}

html.high-contrast,
html.high-contrast body {
  background: #000;
  color: #fff;
}

html.high-contrast *,
html.high-contrast *::before,
html.high-contrast *::after {
  box-shadow: none !important;
  text-shadow: none !important;
}

html.high-contrast a {
  color: #fff333 !important;
  text-decoration: underline !important;
  text-underline-offset: .2em;
}

html.high-contrast button,
html.high-contrast input,
html.high-contrast select,
html.high-contrast textarea {
  border: 2px solid #fff !important;
  background: #000 !important;
  color: #fff !important;
}

html.high-contrast input::placeholder {
  color: #fff !important;
  opacity: 1;
}

html.high-contrast .accessibility-bar,
html.high-contrast .topbar,
html.high-contrast .site-header,
html.high-contrast .site-nav,
html.high-contrast .site-nav ul,
html.high-contrast .site-search-bar,
html.high-contrast .site-search,
html.high-contrast .home-hero,
html.high-contrast .trust-strip,
html.high-contrast .intro-section,
html.high-contrast .section-block,
html.high-contrast .section-block--white,
html.high-contrast .approach-band,
html.high-contrast .image-mosaic,
html.high-contrast .topics-section,
html.high-contrast .cta-section,
html.high-contrast .archive-hero,
html.high-contrast .archive-section,
html.high-contrast .rich-page,
html.high-contrast .rich-article,
html.high-contrast .site-footer,
html.high-contrast .footer-bottom {
  border-color: #fff !important;
  background: #000 !important;
  color: #fff !important;
}

html.high-contrast .home-hero__shade,
html.high-contrast .service-card::after {
  display: none;
}

html.high-contrast .btn,
html.high-contrast .content-cta,
html.high-contrast .section-more,
html.high-contrast .topic-tag,
html.high-contrast .pagination__link,
html.high-contrast .pagination__control,
html.high-contrast .nav-link,
html.high-contrast .nav-link--active,
html.high-contrast .floating-whatsapp,
html.high-contrast .post-card,
html.high-contrast .list-card,
html.high-contrast .service-card,
html.high-contrast .approach-card,
html.high-contrast .content-section--highlight,
html.high-contrast .article-cta,
html.high-contrast .professional-contact__item,
html.high-contrast .content-feature-grid > div,
html.high-contrast .empty-state {
  border: 2px solid #fff !important;
  background: #000 !important;
  color: #fff333 !important;
}

html.high-contrast .eyebrow,
html.high-contrast .post-card__media span,
html.high-contrast .list-card span,
html.high-contrast .mosaic-card span,
html.high-contrast .topic-tag strong {
  border: 1px solid #fff;
  background: #000 !important;
  color: #fff !important;
}

html.high-contrast h1,
html.high-contrast h2,
html.high-contrast h3,
html.high-contrast h4,
html.high-contrast p,
html.high-contrast li,
html.high-contrast span,
html.high-contrast strong,
html.high-contrast small,
html.high-contrast figcaption {
  color: #fff !important;
}

html.high-contrast a:focus-visible,
html.high-contrast button:focus-visible,
html.high-contrast input:focus-visible,
html.high-contrast select:focus-visible,
html.high-contrast textarea:focus-visible,
html.high-contrast [tabindex]:focus-visible {
  outline: 3px solid #fff333 !important;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
  }

  .service-card:hover,
  .post-card:hover,
  .list-card:hover,
  .nav-link:hover,
  a.professional-contact__item:hover {
    transform: none;
  }

  .service-card:hover img,
  .post-card:hover img {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .nav-link {
    padding-inline: 12px;
    font-size: 13px;
  }

  .home-hero__inner,
  .archive-hero__inner,
  .rich-page-hero--split,
  .article-hero,
  .image-mosaic__inner {
    grid-template-columns: 1fr;
  }

  .home-hero__inner {
    align-items: center;
  }

  .rich-page--about .rich-page-hero--split {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    max-width: 520px;
  }

  .trust-strip__grid,
  .services-grid,
  .featured-grid,
  .archive-grid,
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
  }

  .site-header__tools {
    grid-column: 3;
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .site-nav--open {
    display: block;
  }

  .site-nav ul {
    display: grid;
    gap: 4px;
    width: min(100% - 28px, 1180px);
    margin: 0 auto;
    padding: 14px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-link {
    width: 100%;
  }

  .nav-link--cta {
    margin-left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .topbar__links a:first-child {
    display: none;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 590px;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-hero p {
    font-size: 17px;
  }

  .intro-grid,
  .about-story-grid,
  .content-feature-grid,
  .professional-contact__grid {
    grid-template-columns: 1fr;
  }

  .intro-copy h2,
  .section-heading h2,
  .image-mosaic__copy h2,
  .cta-section h2,
  .archive-hero h1,
  .rich-page-hero__text h1,
  .article-hero h1 {
    font-size: 34px;
  }

  .section-row,
  .archive-toolbar,
  .cta-inner,
  .approach-visual {
    display: grid;
    align-items: start;
  }

  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-card__link {
    grid-template-columns: 150px minmax(0, 1fr);
  }

}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .topbar__inner {
    grid-template-columns: 1fr;
    min-height: 36px;
    text-align: center;
  }

  .topbar__inner > span {
    display: none;
  }

  .site-logo__mark {
    width: 42px;
    height: 42px;
  }

  .site-logo__image {
    width: 128px;
    height: 46px;
  }

  .accessibility-bar__inner,
  .accessibility-bar ul {
    justify-content: center;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding-block: 10px;
  }

  .site-header__tools {
    grid-column: 2;
    grid-row: 1;
  }

  .site-search-bar__inner {
    justify-content: stretch;
  }

  .site-search {
    width: 100%;
  }

  .site-logo__text strong {
    font-size: 15px;
  }

  .home-hero,
  .home-hero__inner {
    min-height: auto;
  }

  .home-hero__inner {
    padding: 62px 0 42px;
  }

  .home-hero h1 {
    font-size: 34px;
  }

  .rich-page-hero__text h1,
  .content-section h2 {
    font-size: 28px;
  }

  .rich-page-hero__text h1,
  .content-section h2,
  .article-body h2 {
    overflow-wrap: break-word;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .trust-strip__grid,
  .services-grid,
  .featured-grid,
  .archive-grid,
  .approach-grid,
  .mosaic-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div,
  .trust-strip__grid > div:first-child {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    min-height: auto;
  }

  .intro-section,
  .section-block,
  .archive-section,
  .topics-section,
  .approach-band,
  .image-mosaic,
  .cta-section {
    padding: 50px 0;
  }

  .rich-page-hero,
  .article-hero {
    padding: 46px 0 26px;
  }

  .rich-page-hero--split,
  .article-hero,
  .content-section,
  .about-story-grid,
  .content-feature-grid,
  .article-body {
    width: calc(100vw - 48px);
    max-width: none;
  }

  .rich-page-hero__media--portrait {
    width: 100%;
  }

  .content-section p,
  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .article-body .lead {
    font-size: 18px;
  }

  .list-card__link {
    grid-template-columns: 1fr;
  }

  .list-card img {
    height: 210px;
  }

  .pagination {
    flex-wrap: wrap;
  }

  .pagination__pages {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom__inner {
    justify-content: center;
  }

  .footer-bottom p {
    text-align: center;
  }

  .floating-whatsapp {
    left: 14px;
    bottom: 14px;
    width: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span:not(.floating-whatsapp__icon) {
    display: none;
  }
}

/* Plone admin shell: keep the public Imobys theme away from control panels. */
body#visual-portal-wrapper {
  --admin-sidebar-expanded: 232px;
  --admin-sidebar-collapsed: 64px;
  --admin-sidebar: var(--admin-sidebar-expanded);
  --admin-bg: #f3f7f4;
  --admin-panel: #ffffff;
  --admin-line: #d7e3dd;
  --admin-text: #172033;
  --admin-muted: #627264;
  --admin-green: #0f3d2e;
  --admin-green-2: #23735a;
  margin: 0;
  min-height: 100vh;
  padding: 0 0 48px var(--admin-sidebar);
  background: var(--admin-bg);
  color: var(--admin-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
}

body#visual-portal-wrapper ul,
body#visual-portal-wrapper ol {
  padding-left: 0;
}

body#visual-portal-wrapper a {
  color: var(--admin-green-2);
  text-decoration: none;
}

body#visual-portal-wrapper a:hover {
  color: var(--admin-green);
}

body#visual-portal-wrapper img,
body#visual-portal-wrapper svg {
  max-width: 100%;
  vertical-align: middle;
}

body#visual-portal-wrapper .hiddenStructure,
body#visual-portal-wrapper .sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

body#visual-portal-wrapper #edit-bar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1000;
  width: var(--admin-sidebar);
  background: var(--admin-green);
  color: #fff;
  box-shadow: 10px 0 30px rgba(15, 61, 46, .16);
}

body#visual-portal-wrapper.plone-toolbar-left {
  --admin-sidebar: var(--admin-sidebar-collapsed);
}

body#visual-portal-wrapper.plone-toolbar-left.plone-toolbar-left-expanded {
  --admin-sidebar: var(--admin-sidebar-expanded);
}

body#visual-portal-wrapper #edit-zone {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  overflow-y: auto;
  padding: 12px;
}

body#visual-portal-wrapper .toolbar-header {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

body#visual-portal-wrapper .toolbar-collapse,
body#visual-portal-wrapper .toolbar-expand {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #fff;
}

body#visual-portal-wrapper.plone-toolbar-left .toolbar-expand,
body#visual-portal-wrapper.plone-toolbar-left.plone-toolbar-left-expanded .toolbar-collapse,
body#visual-portal-wrapper:not(.plone-toolbar-left) .toolbar-collapse {
  display: inline-flex;
}

body#visual-portal-wrapper.plone-toolbar-left.plone-toolbar-left-expanded .toolbar-expand {
  display: none;
}

body#visual-portal-wrapper .toolbar-collapse:hover,
body#visual-portal-wrapper .toolbar-expand:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

body#visual-portal-wrapper .plone-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

body#visual-portal-wrapper .plone-toolbar-main,
body#visual-portal-wrapper .nav {
  margin: 0;
  list-style: none;
}

body#visual-portal-wrapper #edit-zone .nav-link .toolbar-label {
  min-width: 0;
}

body#visual-portal-wrapper.plone-toolbar-left:not(.plone-toolbar-left-expanded) #edit-zone .toolbar-label {
  display: none;
}

body#visual-portal-wrapper.plone-toolbar-left:not(.plone-toolbar-left-expanded) #edit-zone .nav-link {
  justify-content: center;
  padding-right: 10px;
  padding-left: 10px;
}

body#visual-portal-wrapper .personaltools-wrapper {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 16px;
}

body#visual-portal-wrapper #personaltools-menulink {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 800;
}

body#visual-portal-wrapper #personaltools-menulink:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

body#visual-portal-wrapper #collapse-personaltools {
  display: block;
  position: static;
  min-width: 0;
  margin: 10px 0 0;
  border: 0;
  padding: 0;
  background: transparent;
  list-style: none;
}

body#visual-portal-wrapper #collapse-personaltools li {
  margin: 0;
}

body#visual-portal-wrapper .dropdown-header {
  display: block;
  padding: 10px 12px 6px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body#visual-portal-wrapper #collapse-personaltools .dropdown-item {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
}

body#visual-portal-wrapper #collapse-personaltools .dropdown-item:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

body#visual-portal-wrapper #portal-top {
  border-bottom: 1px solid var(--admin-line);
  background: var(--admin-panel);
}

body#visual-portal-wrapper #portal-header {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
}

body#visual-portal-wrapper #portal-header::after {
  content: "Painel administrativo";
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--admin-green);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body#visual-portal-wrapper #portal-logo {
  display: inline-flex;
  width: 176px;
  height: 64px;
  align-items: center;
  background: url('/++theme++agropablito/static/img/logo.png') center / contain no-repeat;
  color: var(--admin-green);
  font-weight: 900;
}

body#visual-portal-wrapper #portal-logo img {
  display: none;
}

body#visual-portal-wrapper #portal-searchbox {
  flex: 1 1 360px;
  max-width: 480px;
}

body#visual-portal-wrapper #searchGadget_form,
body#visual-portal-wrapper .d-flex {
  display: flex;
}

body#visual-portal-wrapper .flex-column {
  flex-direction: column;
}

body#visual-portal-wrapper .position-relative {
  position: relative;
}

body#visual-portal-wrapper #searchGadget_form {
  gap: 8px;
}

body#visual-portal-wrapper .form-control,
body#visual-portal-wrapper input[type="text"],
body#visual-portal-wrapper input[type="search"],
body#visual-portal-wrapper input[type="email"],
body#visual-portal-wrapper input[type="password"],
body#visual-portal-wrapper select,
body#visual-portal-wrapper textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  background: #fff;
  color: var(--admin-text);
  padding: 9px 12px;
}

body#visual-portal-wrapper .searchButton,
body#visual-portal-wrapper button,
body#visual-portal-wrapper .btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--admin-green-2);
  border-radius: 8px;
  background: var(--admin-green-2);
  color: #fff;
  padding: 9px 14px;
  font-weight: 800;
  line-height: 1.2;
}

body#visual-portal-wrapper .searchButton:hover,
body#visual-portal-wrapper button:hover,
body#visual-portal-wrapper .btn:hover {
  background: var(--admin-green);
  color: #fff;
}

body#visual-portal-wrapper .btn-light {
  border-color: var(--admin-line);
  background: #fff;
  color: var(--admin-text);
  box-shadow: 0 10px 24px rgba(15, 61, 46, .07);
}

body#visual-portal-wrapper .btn-light:hover {
  border-color: rgba(35, 115, 90, .42);
  background: var(--green-50);
  color: var(--admin-green);
}

body#visual-portal-wrapper #portal-mainnavigation,
body#visual-portal-wrapper #portal-footer-wrapper,
body#visual-portal-wrapper #portal-footer-signature,
body#visual-portal-wrapper #portal-colophon,
body#visual-portal-wrapper .portletActions {
  display: none;
}

body#visual-portal-wrapper #viewlet-above-content,
body#visual-portal-wrapper #viewlet-below-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

body#visual-portal-wrapper #portal-breadcrumbs {
  width: min(1180px, calc(100% - 48px));
  margin: 18px auto 0;
  color: var(--admin-muted);
  font-size: 13px;
}

body#visual-portal-wrapper .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  list-style: none;
}

body#visual-portal-wrapper .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin-right: 8px;
  color: #91a197;
}

body#visual-portal-wrapper #portal-column-content {
  width: min(1180px, calc(100% - 48px));
  margin: 22px auto 0;
}

body#visual-portal-wrapper #content {
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  background: var(--admin-panel);
  padding: 26px;
  box-shadow: 0 18px 46px rgba(15, 61, 46, .08);
}

body#visual-portal-wrapper .documentFirstHeading,
body#visual-portal-wrapper .controlPanel h1 {
  margin: 0 0 8px;
  color: var(--admin-green);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

body#visual-portal-wrapper .lead {
  margin: 0 0 22px;
  color: var(--admin-muted);
  font-size: 18px;
}

body#visual-portal-wrapper .alert {
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
}

body#visual-portal-wrapper .alert-warning {
  border-color: #efd399;
  background: #fff8e8;
  color: #684a12;
}

body#visual-portal-wrapper .mb-3 {
  margin-bottom: 1rem;
}

body#visual-portal-wrapper .mb-4 {
  margin-bottom: 1.5rem;
}

body#visual-portal-wrapper .mb-5 {
  margin-bottom: 2rem;
}

body#visual-portal-wrapper .py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

body#visual-portal-wrapper .text-dark {
  color: var(--admin-text);
}

body#visual-portal-wrapper .text-center {
  text-align: center;
}

body#visual-portal-wrapper .text-decoration-none {
  text-decoration: none;
}

body#visual-portal-wrapper .rounded {
  border-radius: 8px;
}

body#visual-portal-wrapper .d-block {
  display: block;
}

body#visual-portal-wrapper .h-100 {
  height: 100%;
}

body#visual-portal-wrapper .w-100 {
  width: 100%;
}

body#visual-portal-wrapper .list-unstyled {
  list-style: none;
}

body#visual-portal-wrapper .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--admin-line);
  padding-bottom: 10px;
}

body#visual-portal-wrapper .nav-item {
  position: relative;
}

body#visual-portal-wrapper .nav-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--admin-text);
  font-weight: 800;
}

body#visual-portal-wrapper .nav-link.active,
body#visual-portal-wrapper .nav-link:hover {
  background: var(--green-100);
  color: var(--admin-green);
}

body#visual-portal-wrapper .nav-tabs .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  min-width: 260px;
  max-height: 68vh;
  overflow: auto;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 18px 38px rgba(15, 61, 46, .14);
}

body#visual-portal-wrapper .nav-tabs .dropdown:hover > .dropdown-menu,
body#visual-portal-wrapper .nav-tabs .dropdown:focus-within > .dropdown-menu {
  display: block;
}

body#visual-portal-wrapper .nav-tabs .dropdown-menu li {
  list-style: none;
}

body#visual-portal-wrapper .dropdown-item {
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--admin-text);
  font-weight: 700;
}

body#visual-portal-wrapper .dropdown-item:hover {
  background: var(--green-50);
  color: var(--admin-green);
}

body#visual-portal-wrapper .dropdown {
  position: relative;
}

body#visual-portal-wrapper .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  z-index: 1050;
  min-width: 240px;
  max-width: min(320px, calc(100vw - 32px));
  margin: 0;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  background: #fff;
  padding: 6px;
  list-style: none;
  box-shadow: 0 18px 38px rgba(15, 61, 46, .14);
}

body#visual-portal-wrapper .dropdown-menu.show,
body#visual-portal-wrapper .show > .dropdown-menu {
  display: block;
}

body#visual-portal-wrapper .dropdown-menu li {
  margin: 0;
  list-style: none;
}

body#visual-portal-wrapper .controlPanelSection {
  padding-top: 22px;
  border-top: 1px solid var(--admin-line);
}

body#visual-portal-wrapper .controlPanelSection h3 {
  margin: 0 0 14px;
  color: var(--admin-green);
  font-size: 18px;
}

body#visual-portal-wrapper .row {
  display: flex;
  flex-wrap: wrap;
}

body#visual-portal-wrapper .configlets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 14px;
  margin: 0;
}

body#visual-portal-wrapper .configlets .col {
  min-width: 0;
  margin: 0;
  list-style: none;
}

body#visual-portal-wrapper .configlets a {
  min-height: 126px;
  overflow: hidden;
  white-space: normal;
}

body#visual-portal-wrapper .overview-icon {
  width: 30px;
  height: 30px;
  color: var(--admin-green-2);
}

body#visual-portal-wrapper .configlets a:hover .overview-icon {
  color: var(--admin-green);
}

body#visual-portal-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow: hidden;
  border-radius: 8px;
}

body#visual-portal-wrapper th,
body#visual-portal-wrapper td {
  border-bottom: 1px solid var(--admin-line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

body#visual-portal-wrapper th {
  background: var(--green-50);
  color: var(--admin-green);
  font-weight: 900;
}

body#visual-portal-wrapper.template-folder_contents #portal-header,
body#visual-portal-wrapper.template-folder_contents #portal-column-content,
body#visual-portal-wrapper.template-folder_contents #portal-breadcrumbs,
body#visual-portal-wrapper.template-folder_contents #viewlet-above-content,
body#visual-portal-wrapper.template-folder_contents #viewlet-below-content {
  width: min(1440px, calc(100% - 32px));
}

body#visual-portal-wrapper.template-folder_contents #content {
  overflow: visible;
  padding: 24px;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 12px;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 16px 0 12px;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .btn-group {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 2px;
  align-items: center;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .btn,
body#visual-portal-wrapper.template-folder_contents .pat-structure button {
  min-height: 38px;
  padding: 8px 12px;
  white-space: nowrap;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .btn-sm {
  min-width: 38px;
  min-height: 38px;
  padding: 8px 10px;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure table {
  min-width: 960px;
  table-layout: fixed;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure th,
body#visual-portal-wrapper.template-folder_contents .pat-structure td {
  padding: 11px 12px;
  vertical-align: top;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .selection {
  width: 44px;
  text-align: center;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .title {
  width: 30%;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .ModificationDate,
body#visual-portal-wrapper.template-folder_contents .pat-structure .EffectiveDate {
  width: 150px;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .review_state {
  width: 120px;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .actionmenu-container {
  width: 136px;
  overflow: visible;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .actionmenu {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .actionmenu .dropdown-menu {
  top: calc(100% + 8px);
  right: 0;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure .dropdown-item {
  min-height: 36px;
  padding: 8px 10px;
  white-space: normal;
}

body#visual-portal-wrapper.template-folder_contents .pat-structure svg {
  max-width: 16px;
  max-height: 16px;
}

body#visual-portal-wrapper fieldset {
  margin: 18px 0;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  padding: 16px;
}

body#visual-portal-wrapper legend {
  padding: 0 6px;
  color: var(--admin-green);
  font-weight: 900;
}

body#visual-portal-wrapper label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--admin-text);
  font-weight: 800;
}

body#visual-portal-wrapper .formHelp,
body#visual-portal-wrapper .help-block,
body#visual-portal-wrapper .fieldRequired {
  color: var(--admin-muted);
  font-size: 13px;
}

body#visual-portal-wrapper #global_statusmessage {
  width: min(1180px, calc(100% - 48px));
  margin: 18px auto 0;
}

body#visual-portal-wrapper .portalMessage {
  border-radius: 8px;
  background: var(--green-100);
  padding: 12px 14px;
}

@media (max-width: 900px) {
  body#visual-portal-wrapper {
    --admin-sidebar: 0px;
    padding-top: 64px;
    padding-left: 0;
  }

  body#visual-portal-wrapper #edit-bar {
    right: 0;
    bottom: auto;
    width: auto;
    height: 64px;
  }

  body#visual-portal-wrapper #edit-zone {
    min-height: 64px;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
  }

  body#visual-portal-wrapper .toolbar-header {
    margin: 0 10px 0 0;
    border: 0;
    padding: 0;
  }

  body#visual-portal-wrapper .personaltools-wrapper {
    margin: 0;
    border-top: 0;
    padding-top: 0;
  }

  body#visual-portal-wrapper #collapse-personaltools {
    display: none;
  }

  body#visual-portal-wrapper #portal-header,
  body#visual-portal-wrapper #portal-column-content,
  body#visual-portal-wrapper #portal-breadcrumbs,
  body#visual-portal-wrapper #viewlet-above-content,
  body#visual-portal-wrapper #viewlet-below-content,
  body#visual-portal-wrapper #global_statusmessage {
    width: min(100% - 28px, 1180px);
  }

  body#visual-portal-wrapper #portal-header {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  body#visual-portal-wrapper #portal-searchbox,
  body#visual-portal-wrapper #portal-header::after {
    display: none;
  }

  body#visual-portal-wrapper #content {
    padding: 18px;
  }

  body#visual-portal-wrapper .nav-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  body#visual-portal-wrapper .configlets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
