@import url(https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap);
@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #555;
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.section {
  padding: 3rem 0;
}

.section-header {
  margin: 0 auto 3rem;
  max-width: 600px;
  text-align: center;
}

.section-tag {
  align-items: center;
  color: #016d1f;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 600;
  gap: 0.4rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.section-tag::before, .section-tag::after {
  background: #016d1f;
  content: "";
  height: 1px;
  opacity: 0.35;
  width: 18px;
}

.section-title {
  color: #1a1a1a;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}
.section-title em {
  color: #016d1f;
  font-style: italic;
  font-weight: 500;
}

.section-subtitle {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.7;
}

.btn-green,
.btn-outline-white,
.btn-green-md,
.btn-white,
.header__cta-btn,
.f-submit {
  transition: all 0.35s ease-in-out;
}

.btn-green,
.btn-green-md,
.btn-white,
.btn-outline-white {
  align-items: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 0.5rem;
}

.btn-green,
.btn-green-md,
.header__cta-btn,
.f-submit {
  background: #016d1f;
  color: #fff;
}
.btn-green:hover,
.btn-green-md:hover,
.header__cta-btn:hover,
.f-submit:hover {
  background: #2d6b2a;
  transform: translateY(-2px);
}

.btn-green {
  padding: 0.8rem 1.6rem;
}
.btn-green:hover {
  box-shadow: 0 10px 30px rgba(61, 139, 55, 0.3);
}

.btn-green-md {
  padding: 0.75rem 1.6rem;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 0.8rem 1.6rem;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: #1e4a1c;
  padding: 0.85rem 2rem;
}
.btn-white:hover {
  background: #e8f5e3;
  transform: translateY(-2px);
}

@keyframes rall-spin {
  to {
    transform: rotate(360deg);
  }
}
.btn--primary,
.btn--outline,
.btn--ghost {
  transition: all 0.35s ease-in-out;
  align-items: center;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
}

.btn--primary {
  background: #016d1f;
  border: none;
  color: #fff;
}
.btn--primary:hover {
  background: #2d6b2a;
  box-shadow: 0 10px 30px rgba(61, 139, 55, 0.3);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(1, 109, 31, 0.35);
  color: #1e4a1c;
}
.btn--outline:hover {
  background: rgba(1, 109, 31, 0.06);
  border-color: #016d1f;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  color: #888;
}
.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn.is-loading svg,
.btn.is-loading i {
  animation: rall-spin 0.75s linear infinite;
  display: inline-block;
}

[data-lucide] {
  display: inline-block;
  flex-shrink: 0;
  stroke-width: 1.8;
}

/* Esconde antes de animar — sem conflito com fill-mode do animate.css */
[data-animate]:not(.is-animated) {
  opacity: 0;
}

/* Duração padrão: sobrescreve a var do animate.css v4 */
[data-animate] {
  --animate-duration: 1.1s;
}

.preloader {
  align-items: center;
  background: linear-gradient(135deg, #1e4a1c 0%, #016d1f 60%, #4ca945 100%);
  bottom: 0;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.7s, visibility 0.7s;
  z-index: 10000;
}
.preloader.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.preloader__watermark {
  height: auto;
  left: -80px;
  opacity: 0.07;
  pointer-events: none;
  position: absolute;
  top: -80px;
  width: clamp(320px, 55vw, 580px);
}
.preloader__logo {
  animation: pulse 1.4s ease-in-out infinite;
  height: auto;
  max-width: 180px;
  position: relative;
  width: 100%;
  z-index: 1;
}
.preloader div {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  height: 2px;
  margin-top: 1rem;
  overflow: hidden;
  position: relative;
  width: 80px;
  z-index: 1;
}
.preloader div::after {
  animation: pslide 1s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  content: "";
  display: block;
  height: 100%;
  width: 35%;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes pslide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(350%);
  }
}
.header {
  background: transparent;
  border-bottom: 1px solid transparent;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}
.header::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.header.scrolled {
  background: #fff;
  border-bottom-color: #eee;
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.06);
}
.header.scrolled::before {
  opacity: 0;
}

.header__inner {
  align-items: center;
  display: flex;
  height: 78px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .header__inner {
    height: 66px;
    padding: 0 1rem;
  }
}

.header__phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 0.15rem;
}

.header__left,
.header__right,
.header__phone {
  align-items: center;
  display: flex;
}

.header__left {
  gap: 0.7rem;
}

.header__logo-icon {
  display: flex;
  max-width: 180px;
}
.header__logo-icon img {
  display: block;
  height: auto;
  max-height: 52px;
  width: 100%;
}
.header__logo-icon .header__logo--default {
  display: none;
}
.header__logo-icon .header__logo--white {
  display: block;
}

.header.scrolled .header__logo-icon .header__logo--default {
  display: block;
}
.header.scrolled .header__logo-icon .header__logo--white {
  display: none;
}

.header__logo-text {
  line-height: 1.15;
}

.logo-main {
  color: #1a1a1a;
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
}

.logo-sub {
  color: #888;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header__nav {
  align-items: center;
  display: flex;
  gap: 1.6rem;
}
.header__nav > a,
.header__nav > .nav-dropdown > a {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  transition: color 0.3s;
  white-space: nowrap;
  text-transform: uppercase;
}
.header__nav > a:hover,
.header__nav > a.active,
.header__nav > .nav-dropdown:hover > a,
.header__nav > .nav-dropdown > a.active {
  color: #fff;
}
.header.scrolled .header__nav > a,
.header.scrolled .header__nav > .nav-dropdown > a {
  color: #1a1a1a;
}
.header.scrolled .header__nav > a:hover,
.header.scrolled .header__nav > a.active,
.header.scrolled .header__nav > .nav-dropdown:hover > a,
.header.scrolled .header__nav > .nav-dropdown > a.active {
  color: #016d1f;
}
@media (max-width: 768px) {
  .header__nav {
    align-items: center;
    background: #fff;
    bottom: 0;
    display: none;
    flex-direction: column;
    gap: 1.3rem;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
  }
  .header__nav.open {
    display: flex;
  }
}

.nav-dropdown,
.nav-sub-dropdown {
  position: relative;
}

.nav-dropdown > a,
.nav-sub-dropdown > a {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 3px;
}

.nav-dropdown > a i {
  height: 14px;
  transition: transform 0.3s;
  width: 14px;
}

.nav-dropdown:hover > a i {
  transform: rotate(180deg);
}

.nav-dropdown__menu,
.nav-sub-dropdown__menu {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  padding: 0.5rem 0;
  position: absolute;
  visibility: hidden;
}

.nav-dropdown__menu {
  left: 0;
  min-width: 240px;
  top: 100%;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nav-dropdown__menu a,
.nav-sub-dropdown__menu a {
  color: #555;
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  transition: all 0.2s;
}

.nav-dropdown__menu a {
  align-items: center;
  display: flex;
  gap: 0.35rem;
}

.nav-dropdown__menu a:hover,
.nav-sub-dropdown__menu a:hover {
  background: #e8f5e3;
  color: #016d1f;
  padding-left: 1.5rem;
}

.sub-title {
  color: #016d1f;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem 0.2rem;
  text-transform: uppercase;
}

.nav-sub-dropdown > a {
  justify-content: space-between;
}
.nav-sub-dropdown > a span {
  align-items: center;
  display: inline-flex;
  gap: 0.35rem;
}
.nav-sub-dropdown > a > i {
  height: 12px;
  width: 12px;
}

.nav-sub-dropdown__menu {
  left: 100%;
  min-width: 260px;
  top: -0.5rem;
  transform: translateX(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 101;
}

.nav-sub-dropdown:hover .nav-sub-dropdown__menu {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.header__right {
  gap: 1.2rem;
}

.header__phone {
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .header__phone {
    display: none;
  }
}

.header__phone-icon-wrap {
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  color: #fff;
  display: flex;
  height: 42px;
  justify-content: center;
  transition: border-color 0.4s ease, color 0.4s ease;
  width: 42px;
}
.header__phone-icon-wrap i {
  height: 18px;
  width: 18px;
}
.header.scrolled .header__phone-icon-wrap {
  border-color: #016d1f;
  color: #016d1f;
}

.phone-label {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  transition: color 0.4s ease;
}
.header.scrolled .phone-label {
  color: #1a1a1a;
}

.phone-number {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.4s ease;
}
.header.scrolled .phone-number {
  color: #016d1f;
}

.header__cta-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
.header__cta-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
}
.header.scrolled .header__cta-btn {
  background: #016d1f;
  border-color: #016d1f;
  color: #fff;
}
.header.scrolled .header__cta-btn:hover {
  background: #2d6b2a;
  border-color: #2d6b2a;
}

.header__nav-info {
  align-items: center;
  color: #016d1f;
  display: flex;
}
.header__nav-info i {
  height: 20px;
  width: 20px;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  background: #1a1a1a;
  display: block;
  height: 2px;
  transition: all 0.3s;
  width: 22px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .header__nav .nav-dropdown__menu,
  .header__nav .nav-sub-dropdown__menu {
    border: none;
    box-shadow: none;
    opacity: 1;
    padding-left: 1rem;
    position: static;
    transform: none;
    visibility: visible;
  }
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  min-height: 650px;
}

/* ===============================
   Background
=================================*/
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center;
  will-change: transform;
  /* Zoom extremamente suave */
  animation: heroSlowZoom 8s ease-in-out infinite alternate;
}

/* Overlay — gradiente direcional */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 2;
}

/* ===============================
   Conteúdo
=================================*/
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 2rem 4rem;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.hero__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 40px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  gap: 0.45rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
  padding: 0.45rem 1rem;
  text-transform: uppercase;
}
.hero__badge i {
  color: #4ca945;
  height: 14px;
  width: 14px;
}

.hero__title {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.hero__title .hl {
  color: #4ca945;
  font-family: "Inter", sans-serif;
  font-style: italic;
}

.hero__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===============================
   Formulário
=================================*/
.hero__form-col {
  width: 420px;
}

.hero__form {
  background: #fff;
  color: #222;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.hero__form-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.fg {
  margin-bottom: 1rem;
}

.fi,
.fs {
  background: rgba(2, 109, 31, 0.0392156863);
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.85rem;
}

.fi--textarea {
  resize: none;
}

.fi--error,
.fs--error {
  border-color: #e53e3e !important;
  background-color: #fff5f5;
}

.field-error {
  display: none;
  color: #e53e3e;
  font-size: 0.75rem;
  margin-top: 0.3rem;
}
.field-error--visible {
  display: block;
}

.hero-form-feedback {
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  padding: 0.65rem 0.9rem;
}
.hero-form-feedback:empty {
  display: none;
}
.hero-form-feedback--success {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
}
.hero-form-feedback--error {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  color: #c53030;
}

.f-submit {
  width: 100%;
  padding: 0.9rem;
  border-radius: 50px;
  border: none;
  background: #016d1f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.f-submit:hover {
  background: rgb(0.5363636364, 58.4636363636, 16.6272727273);
}

/* ===============================
   Animação de Zoom
=================================*/
@keyframes heroSlowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.07);
  }
}
/* Respeita usuários que desativam animações */
@media (prefers-reduced-motion: reduce) {
  .hero__bg img {
    animation: none;
    transform: none;
  }
}
/* ===============================
   Responsivo
=================================*/
@media (max-width: 992px) {
  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__form-col {
    width: 100%;
    max-width: 500px;
  }
}
.features-row {
  background: #fff;
  padding: 3.5rem 0 0;
  position: relative;
  z-index: 5;
}

.features-row__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .features-row__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .features-row__grid {
    grid-template-columns: 1fr;
  }
}

.fi-item {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
}

.fi-item__icon {
  align-items: center;
  border-radius: 14px;
  color: #016d1f;
  display: flex;
  height: 54px;
  justify-content: center;
  min-width: 54px;
  width: 54px;
}
.fi-item__icon i {
  height: 24px;
  width: 24px;
}

.fi-item__title {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.fi-item__desc {
  color: #888;
  font-size: 0.78rem;
  line-height: 1.65;
}

.about {
  background: #fafafa;
  overflow: hidden;
  position: relative;
}

.about__watermark {
  height: auto;
  left: -60px;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  top: -60px;
  width: clamp(280px, 40vw, 500px);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.about__img-col {
  position: relative;
  display: flex;
  flex-direction: column;
}
.about__img-col .sn-img-stack {
  flex: 1;
  height: 100%;
}
.about__img-col .sn-img-stack .sn-img-stack__top,
.about__img-col .sn-img-stack .sn-img-stack__bot {
  flex: 1;
}
.about__img-col .sn-img-stack .sn-img-stack__top img,
.about__img-col .sn-img-stack .sn-img-stack__bot img {
  height: 100%;
  min-height: 200px;
}

.about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.5rem 0;
}

.about__title {
  color: #1a1a1a;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  .about__title {
    font-size: 1.8rem;
  }
}

.about__text {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.services {
  background: #f8f8f8;
}

.services__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(260px, 1fr));
}
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.services__empty {
  color: #888;
  font-size: 1rem;
  grid-column: 1/-1;
  text-align: center;
}

.svc-card {
  border-radius: 22px;
  min-height: 290px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.svc-card::after {
  background: linear-gradient(180deg, rgba(12, 29, 18, 0.12) 0%, rgba(12, 29, 18, 0.4) 45%, rgba(8, 32, 21, 0.88) 100%);
  content: "";
  inset: 0;
  position: absolute;
  transition: opacity 0.35s ease;
  z-index: 1;
}
@media (max-width: 1024px) {
  .svc-card {
    min-height: 320px;
  }
}

.svc-card--wide {
  grid-column: span 7;
}

.svc-card--portrait {
  grid-column: span 5;
}

.svc-card--compact {
  grid-column: span 4;
}

.svc-card--wide-bottom {
  grid-column: span 8;
}

.svc-card--wide .svc-card__name,
.svc-card--wide-bottom .svc-card__name {
  max-width: 360px;
}

@media (max-width: 1024px) {
  .svc-card--wide,
  .svc-card--portrait,
  .svc-card--compact,
  .svc-card--wide-bottom {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .svc-card--wide,
  .svc-card--portrait,
  .svc-card--compact,
  .svc-card--wide-bottom {
    grid-column: auto;
  }
}
.svc-card__image {
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
}

.svc-card__overlay {
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 1.4rem;
  position: relative;
  z-index: 2;
}

.svc-card__badge {
  align-self: flex-start;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
}

.svc-card__content {
  margin-top: auto;
}

.svc-card__icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 48px;
}
.svc-card__icon i {
  height: 22px;
  width: 22px;
}

.svc-card__name {
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 280px;
}

.svc-card__details {
  max-height: none;
  opacity: 1;
  overflow: visible;
  transform: none;
}

.svc-card__desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 1rem 0 1.25rem;
  max-width: 540px;
}

.svc-card__link {
  align-items: center;
  background: #016d1f;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 0.45rem;
  padding: 0.95rem 1.4rem;
  transition: background 0.3s ease, gap 0.3s ease, transform 0.3s ease;
}
.svc-card__link:hover {
  background: #016d1f;
  gap: 0.7rem;
  transform: translateY(-1px);
}
.svc-card__link i {
  height: 14px;
  width: 14px;
}

.cta-contact {
  overflow: hidden;
  padding: 5.5rem 0;
  position: relative;
}

.cta-contact__bg {
  background: linear-gradient(135deg, #2d6b2a, #4ca945);
  inset: 0;
  position: absolute;
}
.cta-contact__bg img {
  height: 100%;
  mix-blend-mode: overlay;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
  width: 100%;
}

.cta-contact__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .cta-contact__inner {
    flex-direction: column;
    text-align: center;
  }
}

.cta-contact__content {
  max-width: 550px;
}

.cta-contact__title {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  font-family: "Inter", sans-serif;
}
.cta-contact__title em {
  color: #a0ff98;
  font-style: italic;
  font-weight: 500;
}

.cta-contact__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-contact__info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .cta-contact__info {
    justify-content: center;
  }
}

.cta-contact__info-item {
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-size: 0.82rem;
  gap: 0.5rem;
}
.cta-contact__info-item i {
  color: #4ca945;
  height: 18px;
  width: 18px;
}

.partners {
  background: #fff;
  overflow: hidden;
  padding: 4rem 0;
}
.partners .section-header {
  margin-bottom: 2rem;
}

.partners__track-wrapper {
  overflow: hidden;
  position: relative;
}

.partners__track {
  animation: scroll 30s linear infinite;
  display: flex;
  align-items: center;
  gap: 3rem;
  width: -moz-max-content;
  width: max-content;
}
.partners__track:hover {
  animation-play-state: paused;
}

.partner-logo {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 88px;
  justify-content: center;
  padding: 0 0.5rem;
}
.partner-logo a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.partner-logo img {
  display: block;
  height: 100%;
  max-width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.featured {
  background: #f8f8f8;
}

.featured__footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.featured__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .featured__grid {
    grid-template-columns: 1fr;
  }
}

.feat-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feat-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

.feat-card__img {
  height: 180px;
  overflow: hidden;
}
.feat-card__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
  width: 100%;
}

.feat-card:hover .feat-card__img img {
  transform: scale(1.04);
}

.feat-card__body {
  padding: 1.2rem;
}

.feat-card__tag {
  background: #e8f5e3;
  border-radius: 50px;
  color: #016d1f;
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.6rem;
  text-transform: uppercase;
}

.feat-card__title {
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.feat-card__desc {
  color: #888;
  font-size: 0.76rem;
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.feat-card__link {
  align-items: center;
  color: #016d1f;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 0.35rem;
  transition: gap 0.3s;
}
.feat-card__link:hover {
  gap: 0.6rem;
}
.feat-card__link i {
  height: 14px;
  width: 14px;
}

.noticias {
  background: #fff;
  border-top: 1px solid #eee;
}

.noticias__layout {
  align-items: stretch;
  display: grid;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 0;
  grid-template-columns: 55fr 45fr;
}
@media (max-width: 1024px) {
  .noticias__layout {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 2rem;
  }
  .noticias__layout .noticias__right {
    order: -1;
  }
  .noticias__layout .noticias__left {
    order: 0;
  }
}

.noticias__left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.noticias__right {
  display: flex;
  flex-direction: column;
}

.noticias__header {
  max-width: none;
  text-align: left;
  margin: 0 0 1.75rem;
}
.noticias__header .section-title {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  margin-top: 0.35rem;
  margin-bottom: 0.7rem;
}
.noticias__header .section-subtitle {
  font-size: 0.84rem;
  max-width: 380px;
  margin: 0;
}
@media (max-width: 1024px) {
  .noticias__header {
    text-align: center;
  }
  .noticias__header .section-subtitle {
    margin: 0 auto;
  }
}

.noticias__cards {
  display: grid;
  flex: 1;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .noticias__cards {
    grid-template-columns: 1fr;
  }
}

.noticias__footer {
  display: flex;
  grid-column: 2;
  margin-top: 1.5rem;
}
@media (max-width: 1024px) {
  .noticias__footer {
    grid-column: 1;
    justify-content: center;
    margin-top: 1.25rem;
  }
}

.notic-avatar {
  align-items: center;
  background: #e8f5e3;
  border-radius: 50%;
  color: #016d1f;
  display: inline-flex;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  letter-spacing: 0.02em;
  width: 34px;
}
.notic-avatar--sm {
  font-size: 0.6rem;
  height: 26px;
  width: 26px;
}

.notic-feat {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 1024px) {
  .notic-feat {
    flex-direction: row;
  }
}
.notic-feat:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.11);
  transform: translateY(-4px);
}

.notic-feat__img-wrap {
  display: block;
  flex-shrink: 0;
  height: 220px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 1024px) {
  .notic-feat__img-wrap {
    height: auto;
    width: 46%;
  }
}
.notic-feat__img-wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.65s ease;
  width: 100%;
}

.notic-feat:hover .notic-feat__img-wrap img {
  transform: scale(1.05);
}

.notic-feat__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.75rem;
}

.notic-feat__cat {
  color: #016d1f;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.notic-feat__title {
  color: #1a1a1a;
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.28;
  margin-bottom: 0.75rem;
}
.notic-feat__title a {
  color: #1a1a1a;
  transition: color 0.2s;
}
.notic-feat__title a:hover {
  color: #016d1f;
}

.notic-feat__desc {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #888;
  display: -webkit-box;
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.notic-feat__author {
  align-items: center;
  border-top: 1px solid #eee;
  display: flex;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
}

.notic-feat__author-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.1rem;
}

.notic-feat__author-name {
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 600;
}

.notic-feat__author-date {
  color: #888;
  font-size: 0.67rem;
}

.notic-feat__arrow {
  align-items: center;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 50%;
  color: #1a1a1a;
  display: flex;
  flex-shrink: 0;
  height: 32px;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.25s;
  width: 32px;
}
.notic-feat__arrow i {
  height: 14px;
  width: 14px;
}
.notic-feat__arrow:hover {
  background: #016d1f;
  border-color: #016d1f;
  color: #fff;
  transform: rotate(45deg);
}

.notic-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.notic-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.notic-card__img-wrap {
  display: block;
  flex-shrink: 0;
  height: 150px;
  overflow: hidden;
  width: 100%;
}
.notic-card__img-wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.55s ease;
  width: 100%;
}

.notic-card:hover .notic-card__img-wrap img {
  transform: scale(1.06);
}

.notic-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1.1rem 1.1rem;
}

.notic-card__cat {
  color: #016d1f;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.notic-card__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #1a1a1a;
  display: -webkit-box;
  font-family: "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.008em;
  line-height: 1.38;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.notic-card__title a {
  color: #1a1a1a;
  transition: color 0.2s;
}
.notic-card__title a:hover {
  color: #016d1f;
}

.notic-card__desc {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #888;
  display: -webkit-box;
  flex: 1;
  font-size: 0.76rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.notic-card__author {
  align-items: center;
  border-top: 1px solid #eee;
  display: flex;
  gap: 0.4rem;
  padding-top: 0.7rem;
}

.notic-card__author-name {
  color: #1a1a1a;
  font-size: 0.65rem;
  font-weight: 600;
}

.notic-card__author-sep {
  color: #bbbbbb;
  font-size: 0.6rem;
}

.notic-card__author-date {
  color: #888;
  font-size: 0.63rem;
}

@media (max-width: 768px) {
  .notic-feat__body {
    padding: 1.25rem;
  }
}
.notic-filter-wrap {
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.notic-filter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.notic-filter__pill {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 999px;
  color: #888;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.9rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.notic-filter__pill:hover {
  background: #e8f5e3;
  border-color: #016d1f;
  color: #016d1f;
  transform: translateY(-1px);
}
.notic-filter__pill--active {
  background: #016d1f;
  border-color: #016d1f;
  color: #fff;
}
.notic-filter__pill--active:hover {
  background: #2d6b2a;
  border-color: #2d6b2a;
  color: #fff;
  transform: translateY(-1px);
}

.notic-filter__count {
  color: inherit;
  font-size: 0.65rem;
  font-weight: 500;
  margin-left: 0.25rem;
  opacity: 0.75;
}

.notic-archive__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .notic-archive__grid {
    grid-template-columns: 1fr;
  }
}
.notic-archive__grid .notic-feat {
  flex-direction: row;
  min-height: 200px;
}
@media (max-width: 1024px) {
  .notic-archive__grid .notic-feat {
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .notic-archive__grid .notic-feat__img-wrap {
    min-height: 180px;
  }
}

.notic-feat__img-empty {
  align-items: center;
  background: #e8f5e3;
  display: flex;
  height: 100%;
  justify-content: center;
  min-height: 180px;
  width: 100%;
}
.notic-feat__img-empty i {
  color: #016d1f;
  height: 32px;
  opacity: 0.4;
  width: 32px;
}

.instagram {
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.instagram__feed .instagram-feed-wrap,
.instagram__feed .sbi_feed_container {
  width: 100% !important;
  max-width: 100% !important;
}
.instagram__feed .sbi_item,
.instagram__feed #sb_instagram .sbi_photo_wrap {
  background: transparent !important;
}
.instagram__feed #sb_instagram .sbi_photo img {
  border-radius: 16px;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.instagram__feed #sb_instagram .sbi_photo:hover img {
  opacity: 0.88;
  transform: scale(1.04);
}
.instagram__feed #sb_instagram .sbi_header,
.instagram__feed #sb_instagram .sbi_follow_btn,
.instagram__feed .sbi_follow_btn_outside {
  display: none !important;
}
.instagram__feed #sb_instagram .sbi_load_btn {
  background: #016d1f !important;
  border: none !important;
  border-radius: 50px !important;
  color: #fff !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  margin-top: 1.5rem !important;
  padding: 0.7rem 1.8rem !important;
  transition: background 0.3s ease !important;
}
.instagram__feed #sb_instagram .sbi_load_btn:hover {
  background: #2d6b2a !important;
}

.instagram__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .instagram__feed #sb_instagram {
    padding: 0 !important;
  }
}
.sitemap-section {
  background: #fafafa;
  padding: 3.5rem 0;
}
.sitemap-section .section-header {
  margin-bottom: 2rem;
}

.sitemap__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .sitemap__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sitemap__grid {
    grid-template-columns: 1fr;
  }
}

.sitemap__col-title {
  align-items: center;
  color: #1a1a1a;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  font-family: "Inter", sans-serif;
}
.sitemap__col-title i {
  color: #016d1f;
  height: 16px;
  width: 16px;
}

.sitemap__links a {
  align-items: center;
  color: #888;
  display: flex;
  font-size: 0.78rem;
  gap: 0.4rem;
  padding: 0.25rem 0;
  transition: color 0.3s, padding-left 0.3s;
}
.sitemap__links a:hover {
  color: #016d1f;
  padding-left: 4px;
}
.sitemap__links a i {
  color: #016d1f;
  height: 12px;
  opacity: 0.5;
  width: 12px;
}

.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.5);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  margin: 0 auto 3rem;
  max-width: 1280px;
  padding: 0 2rem;
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

.footer__logo {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}
.footer__logo i {
  color: #4ca945;
  height: 28px;
  width: 28px;
}

.footer__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #25d366;
}

.footer__desc,
.footer__nl-text {
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer__desc {
  margin-bottom: 1rem;
}

.footer__nl-text {
  margin-bottom: 0.7rem;
}

.footer__socials {
  display: flex;
  gap: 0.5rem;
}

.footer__social {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  height: 36px;
  justify-content: center;
  transition: all 0.3s;
  width: 36px;
}
.footer__social:hover {
  background: #016d1f;
  color: #fff;
  transform: translateY(-2px);
}
.footer__social i, .footer__social svg {
  height: 16px;
  width: 16px;
}

.footer__heading {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-family: "Inter", sans-serif;
}

.footer__links li {
  margin-bottom: 0.4rem;
}

.footer__links a {
  font-size: 0.8rem;
  transition: color 0.3s, padding-left 0.3s;
}
.footer__links a:hover {
  color: #4ca945;
  padding-left: 3px;
}

.footer__nl-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  display: flex;
  overflow: hidden;
}

.footer__nl-input {
  background: rgba(255, 255, 255, 0.03);
  border: none;
  color: #fff;
  flex: 1;
  font-size: 0.78rem;
  outline: none;
  padding: 0.65rem 0.8rem;
}
.footer__nl-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.footer__nl-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.footer__nl-btn {
  background: #016d1f;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 1rem;
  text-transform: uppercase;
  transition: background 0.3s;
}
.footer__nl-btn:hover {
  background: #4ca945;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  font-size: 0.7rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 1.2rem 2rem;
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
}

.back-to-top {
  align-items: center;
  background: #016d1f;
  border: none;
  border-radius: 50%;
  bottom: 1.2rem;
  box-shadow: 0 5px 20px rgba(61, 139, 55, 0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  opacity: 0;
  position: fixed;
  right: 1.8rem;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  width: 44px;
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.back-to-top:hover {
  background: #2d6b2a;
  transform: translateY(-2px);
}
.back-to-top i {
  height: 20px;
  width: 20px;
}

.whatsapp-fab {
  border-radius: 50%;
  bottom: 4.4rem;
  display: block;
  height: 70px;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 1.2rem;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  width: 70px;
  z-index: 900;
}
.whatsapp-fab img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.whatsapp-fab.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
}

.ct-cities {
  background: #fff;
  padding: 3rem 0 2.5rem;
  border-top: 1px solid #eee;
}

.ct-cities__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #016d1f;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.ct-cities__title span {
  color: #016d1f;
  font-weight: 800;
}

.ct-cities__tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0;
  scrollbar-width: none;
}
.ct-cities__tabs-wrap::-webkit-scrollbar {
  display: none;
}

.ct-cities__tabs {
  display: flex;
  border: 1px solid #ccc;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
}

.ct-cities__tab {
  flex-shrink: 0;
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: inherit;
  color: #333;
  background: #fff;
  border: none;
  border-right: 1px solid #ccc;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.ct-cities__tab:last-child {
  border-right: none;
}
.ct-cities__tab:hover:not(.ct-cities__tab--active) {
  background: #f0f0f0;
}
.ct-cities__tab--active {
  background: #1a1a1a;
  color: #fff;
}

.ct-cities__panel {
  display: none;
  border: 1px solid #ccc;
  border-top: none;
}
.ct-cities__panel--active {
  display: block;
}

.ct-cities__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
@media (max-width: 1024px) {
  .ct-cities__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .ct-cities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ct-cities__city {
  font-size: 0.82rem;
  color: #1a1a1a;
  padding: 0.55rem 0.75rem;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.ct-cities__city:nth-child(7n) {
  border-right: none;
}
@media (max-width: 1024px) {
  .ct-cities__city:nth-child(7n) {
    border-right: 1px solid #e0e0e0;
  }
}
@media (max-width: 1024px) {
  .ct-cities__city:nth-child(4n) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .ct-cities__city:nth-child(4n) {
    border-right: 1px solid #e0e0e0;
  }
}
@media (max-width: 768px) {
  .ct-cities__city:nth-child(2n) {
    border-right: none;
  }
}

.ct-copyright {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 1.25rem 0;
}
.ct-copyright p {
  font-size: 0.72rem;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

.cookie-consent {
  bottom: 1.5rem;
  left: 50%;
  max-width: 1400px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: translateX(-50%) translateY(calc(100% + 2rem));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: calc(100% - 3rem);
  z-index: 9990;
}
.cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 768px) {
  .cookie-consent {
    bottom: 0;
    left: 0;
    max-width: 100%;
    transform: translateY(calc(100% + 1rem));
    width: 100%;
  }
  .cookie-consent.is-visible {
    transform: translateY(0);
  }
}

.cookie-consent__inner {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
}
@media (max-width: 1024px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .cookie-consent__inner {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
    padding: 1.25rem 1rem 1.5rem;
  }
}

.cookie-consent__header {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  gap: 0.375rem;
  min-width: 0;
}

.cookie-consent__title {
  color: #1a1a1a;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.cookie-consent__desc {
  color: rgba(26, 26, 26, 0.6);
  font-size: 0.8125rem;
  line-height: 1.65;
  margin: 0;
}

.cookie-consent__categories {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.cookie-consent__categories input[type=checkbox] {
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.cookie-consent__tag {
  background: rgba(26, 26, 26, 0.05);
  border: 1.5px solid rgba(26, 26, 26, 0.14);
  border-radius: 20px;
  color: rgba(26, 26, 26, 0.6);
  cursor: pointer;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.3rem 0.75rem;
  transition: all 0.15s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
input:checked + .cookie-consent__tag {
  background: rgba(1, 109, 31, 0.1);
  border-color: #016d1f;
  color: #016d1f;
}
.cookie-consent__tag--locked {
  cursor: default;
  opacity: 0.55;
  pointer-events: none;
}
.cookie-consent__tag:hover:not(.cookie-consent__tag--locked) {
  border-color: rgba(26, 26, 26, 0.3);
  color: #1a1a1a;
}

.cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .cookie-consent__actions {
    flex-direction: column;
  }
}

.cookie-consent__btn {
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.8125rem;
  font-weight: 600;
  height: 38px;
  justify-content: center;
  letter-spacing: 0.01em;
  padding: 0 1.25rem;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
.cookie-consent__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(1, 109, 31, 0.4);
  outline: none;
}
.cookie-consent__btn:active:not(:disabled) {
  transform: translateY(1px);
}
.cookie-consent__btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .cookie-consent__btn {
    height: 44px;
    width: 100%;
  }
}
.cookie-consent__btn--primary {
  background: #016d1f;
  border: 2px solid #016d1f;
  color: #fff;
  flex: 1;
}
.cookie-consent__btn--primary:hover:not(:disabled) {
  background: #2d6b2a;
  border-color: #2d6b2a;
}
@media (max-width: 768px) {
  .cookie-consent__btn--primary {
    flex: none;
  }
}
.cookie-consent__btn--secondary {
  background: transparent;
  border: 2px solid rgba(26, 26, 26, 0.18);
  color: #1a1a1a;
}
.cookie-consent__btn--secondary:hover:not(:disabled) {
  background: rgba(26, 26, 26, 0.04);
  border-color: rgba(26, 26, 26, 0.4);
}
.cookie-consent__btn--ghost {
  background: transparent;
  border: 2px solid transparent;
  color: rgba(26, 26, 26, 0.5);
}
.cookie-consent__btn--ghost:hover:not(:disabled) {
  background: rgba(26, 26, 26, 0.05);
  color: #1a1a1a;
}

.svc-breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.svc-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.svc-breadcrumb a:hover {
  color: #fff;
}
.svc-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}
.svc-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
  margin: 0 0.15rem;
}

@keyframes svc-hero-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.svc-hero {
  min-height: 244px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .svc-hero {
    min-height: 220px;
  }
}
.svc-hero--gradient {
  background: linear-gradient(135deg, #1e4a1c 0%, #016d1f 60%, #4ca945 100%);
}
.svc-hero--image {
  background: #1e4a1c;
}
.svc-hero--blur .svc-hero__bg img {
  animation: none;
  filter: blur(8px);
  transform: scale(1.06);
}
.svc-hero__bg {
  height: 100%;
  inset: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.svc-hero__bg img {
  animation: svc-hero-zoom 10s ease-out both;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  width: 100%;
}
.svc-hero__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.2) 65%, transparent 100%);
  inset: 0;
  position: absolute;
}
.svc-hero--gradient .svc-hero__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 80%);
}
.svc-hero__inner {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: 6rem 0 2rem;
  position: relative;
}
@media (max-width: 768px) {
  .svc-hero__inner {
    min-height: 220px;
  }
}
.svc-hero__label {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  padding: 0.3rem 0.9rem;
  text-transform: uppercase;
}
.svc-hero__title {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
.svc-hero__title em {
  font-style: italic;
  font-weight: 500;
  opacity: 0.9;
}
.svc-hero__desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 560px;
}

.svc-listing__label {
  align-items: center;
  color: #016d1f;
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.svc-listing__count {
  align-items: center;
  background: #e8f5e3;
  border-radius: 50px;
  color: #016d1f;
  display: inline-flex;
  font-size: 0.7rem;
  height: 20px;
  justify-content: center;
  min-width: 20px;
  padding: 0 0.4rem;
}

.svc-listing {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (max-width: 768px) {
  .svc-listing {
    grid-template-columns: 1fr;
  }
}

.svc-listing__card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.svc-listing__card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}
.svc-listing__card:hover .svc-listing__img {
  transform: scale(1.04);
}

.svc-listing__img-wrap {
  padding: 0.75rem 0.75rem 0;
}

.svc-listing__img {
  border-radius: 16px;
  display: block;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.svc-listing__img-empty {
  align-items: center;
  background: #e8f5e3;
  border-radius: 16px;
  display: flex;
  height: 190px;
  justify-content: center;
}
.svc-listing__img-empty i {
  color: #016d1f;
  height: 48px;
  width: 48px;
}

.svc-listing__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.1rem 1.25rem 0.5rem;
}

.svc-listing__header {
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.svc-listing__title {
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.svc-listing__badge {
  background: #e8f5e3;
  border-radius: 100px;
  color: #016d1f;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  padding: 0.25rem 0.7rem;
  white-space: nowrap;
}

.svc-listing__desc {
  color: #888;
  font-size: 0.83rem;
  line-height: 1.65;
}

.svc-listing__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.svc-listing__tag {
  background: #f0f0f0;
  border-radius: 100px;
  color: #555;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.65rem;
}

.svc-listing__btn {
  align-items: center;
  background: #1e4a1c;
  border-radius: 0 0 24px 24px;
  color: #fff;
  display: flex;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  transition: background 0.25s ease-in-out;
}
.svc-listing__btn i {
  height: 16px;
  width: 16px;
  transition: transform 0.2s ease-in-out;
}
.svc-listing__btn:hover {
  background: #016d1f;
  color: #fff;
}
.svc-listing__btn:hover i {
  transform: translateX(4px);
}

.svc-empty {
  align-items: center;
  border: 2px dashed #eee;
  border-radius: 16px;
  color: #888;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem 2rem;
  text-align: center;
}
.svc-empty i {
  color: #eee;
  height: 48px;
  width: 48px;
}
.svc-empty p {
  font-size: 0.9rem;
}

.svc-page {
  background: #fff;
}

.svc-article-wrap {
  min-height: 60vh;
}

.svc-article__featured-img {
  border-radius: 16px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.svc-article__featured-img img {
  display: block;
  height: auto;
  width: 100%;
}

.svc-article__layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 340px 1fr;
}
@media (max-width: 1024px) {
  .svc-article__layout {
    grid-template-columns: 1fr;
  }
}
.svc-article__layout--full {
  grid-template-columns: 1fr;
}
.svc-article__body {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.85;
  font-weight: 300;
}
.svc-article__body h2 {
  color: #1a1a1a;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}
.svc-article__body h3 {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.2rem 0 0.4rem;
}
.svc-article__body p {
  margin-bottom: 1rem;
}
.svc-article__body ul,
.svc-article__body ol {
  margin: 0.5rem 0 1rem 1.4rem;
}
.svc-article__body li {
  margin-bottom: 0.3rem;
}
.svc-article__body strong {
  color: #1a1a1a;
  font-weight: 600;
}
.svc-article__body img {
  border-radius: 8px;
  margin: 1.5rem 0;
  max-width: 100%;
}
.svc-article__body a {
  color: #016d1f;
  text-decoration: underline;
}
.svc-article__thumb {
  border-radius: 16px;
  margin-top: 2rem;
  overflow: hidden;
}
.svc-article__thumb img {
  width: 100%;
}
.svc-article__nav {
  border-top: 1px solid #eee;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
}
@media (max-width: 768px) {
  .svc-article__nav {
    flex-direction: column;
  }
}
.svc-article__nav-link {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 48%;
  padding: 1rem 1.2rem;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 768px) {
  .svc-article__nav-link {
    max-width: 100%;
  }
}
.svc-article__nav-link--next {
  align-items: flex-end;
  text-align: right;
}
.svc-article__nav-link:hover {
  border-color: rgba(1, 109, 31, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.svc-article__nav-dir {
  color: #016d1f;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.svc-article__nav-title {
  color: #1a1a1a;
  font-size: 0.88rem;
  font-weight: 600;
}

.svc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
}

.sb-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.sb-header {
  align-items: center;
  background: #fafafa;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
}
.sb-header__title {
  color: #1a1a1a;
  font-size: 0.83rem;
  font-weight: 700;
  margin-top: 10px;
}

@keyframes sb-planet-spin {
  to {
    transform: rotate(360deg);
  }
}
.sb-planet {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 26px;
  justify-content: center;
  width: 26px;
}
.sb-planet i {
  animation: sb-planet-spin 8s linear infinite;
  color: #016d1f;
  height: 14px;
  width: 14px;
}

.sb-svc-list {
  list-style: none;
  margin: 0;
  padding: 0.3rem 0;
}

.sb-svc-item {
  align-items: center;
  color: #1a1a1a;
  display: flex;
  font-size: 0.88rem;
  gap: 0.4rem;
  justify-content: space-between;
  padding: 0.6rem 1.1rem;
  transition: all 0.2s ease-in-out;
}
.sb-svc-item i {
  color: #016d1f;
  flex-shrink: 0;
  height: 14px;
  transition: transform 0.2s ease-in-out;
  width: 14px;
}
.sb-svc-item:hover {
  background: #e8f5e3;
  color: #2d6b2a;
}
.sb-svc-item:hover i {
  transform: translateX(4px);
}
.sb-svc-item--active {
  background: #016d1f;
  color: #fff;
  font-weight: 600;
}
.sb-svc-item--active i {
  color: #fff;
}
.sb-svc-item--active:hover {
  background: #2d6b2a;
  color: #fff;
}

.sb-posts {
  display: flex;
  flex-direction: column;
  padding: 0.3rem 0;
}

.sb-post {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 1.1rem;
  transition: background 0.2s ease-in-out;
}
.sb-post:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.sb-post:hover {
  background: #e8f5e3;
}
.sb-post__thumb {
  border-radius: 4px;
  flex-shrink: 0;
  height: 58px;
  overflow: hidden;
  width: 58px;
}
.sb-post__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.sb-post__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.sb-post__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #1a1a1a;
  display: -webkit-box;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  overflow: hidden;
}
.sb-post__date {
  align-items: center;
  color: #888;
  display: flex;
  font-size: 0.72rem;
  gap: 0.3rem;
}
.sb-post__date i {
  flex-shrink: 0;
  height: 12px;
  width: 12px;
}

.sb-contact {
  display: flex;
  flex-direction: column;
  padding: 0.3rem 0;
}
.sb-contact__item {
  align-items: flex-start;
  color: #888;
  display: flex;
  font-size: 0.82rem;
  gap: 0.7rem;
  line-height: 1.55;
  padding: 0.65rem 1.1rem;
  transition: background 0.2s ease-in-out;
}
.sb-contact__item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.sb-contact__item[href]:hover {
  background: #e8f5e3;
  color: #2d6b2a;
}
.sb-contact__icon {
  align-items: center;
  background: #e8f5e3;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 28px;
  justify-content: center;
  margin-top: 0.1rem;
  width: 28px;
}
.sb-contact__icon i {
  color: #016d1f;
  height: 13px;
  width: 13px;
}

.dest-wrap {
  background: #f8f8f8;
}

.dest-layout {
  align-items: flex-start;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 380px 1fr;
}
@media (max-width: 1024px) {
  .dest-layout {
    grid-template-columns: 1fr;
  }
}

.dest-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 5.5rem;
}
@media (max-width: 1024px) {
  .dest-sidebar {
    order: 2;
    position: static;
  }
}
.dest-sidebar__card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  padding: 1.4rem;
}
.dest-sidebar__card-title {
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid #016d1f;
  display: inline-block;
}

.dest-recent__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dest-recent__item {
  border-bottom: 1px solid #eee;
}
.dest-recent__item:last-child {
  border-bottom: none;
}
.dest-recent__item a {
  display: block;
  padding: 0.75rem 0;
  transition: opacity 0.2s;
}
.dest-recent__item a:hover {
  opacity: 0.75;
}
.dest-recent__item--active a {
  pointer-events: none;
}
.dest-recent__item--active a .dest-recent__title {
  color: #016d1f;
  font-weight: 600;
}

.dest-recent__date {
  align-items: center;
  color: #016d1f;
  display: flex;
  font-size: 0.7rem;
  font-weight: 500;
  gap: 0.3rem;
  margin-bottom: 0.2rem;
}
.dest-recent__date i {
  height: 12px;
  width: 12px;
}

.dest-recent__title {
  color: #1a1a1a;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dest-tag {
  background: #016d1f;
  border-radius: 999px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
.dest-tag:hover {
  background: #1e4a1c;
  transform: translateY(-1px);
}
.dest-tag--active {
  background: #1e4a1c;
  outline: 2px solid #016d1f;
  outline-offset: 2px;
}

.dest-sidebar__banner {
  background: linear-gradient(160deg, rgba(30, 74, 28, 0.88) 0%, rgba(1, 109, 31, 0.78) 100%), center/cover no-repeat;
  border-radius: 16px;
  min-height: 200px;
  overflow: hidden;
  padding: 1.75rem 1.4rem;
  position: relative;
}
.dest-sidebar__banner--has-image {
  background-blend-mode: multiply;
}

.dest-sidebar__banner-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.dest-sidebar__banner-title {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.dest-sidebar__banner-cta {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.4rem;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: gap 0.2s, opacity 0.2s;
}
.dest-sidebar__banner-cta i {
  height: 14px;
  width: 14px;
  transition: transform 0.2s;
}
.dest-sidebar__banner-cta:hover {
  gap: 0.65rem;
  opacity: 0.9;
}
.dest-sidebar__banner-cta:hover i {
  transform: translateX(2px);
}

.dest-main {
  min-width: 0;
}

.dest-featured-img {
  border-radius: 16px;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.dest-featured-img img {
  display: block;
  height: auto;
  width: 100%;
}

.dest-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.dest-meta__item {
  align-items: center;
  color: #888;
  display: inline-flex;
  font-size: 0.78rem;
  gap: 0.35rem;
}
.dest-meta__item i {
  color: #016d1f;
  height: 14px;
  width: 14px;
}
.dest-meta__item--link {
  margin-left: auto;
  transition: color 0.2s;
}
.dest-meta__item--link:hover {
  color: #016d1f;
}

.dest-divider {
  border: none;
  border-top: 1px solid #eee;
  margin-bottom: 1.75rem;
}

.dest-body {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.85;
}
.dest-body h2 {
  color: #1a1a1a;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}
.dest-body h3 {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.2rem 0 0.4rem;
}
.dest-body p {
  margin-bottom: 1rem;
}
.dest-body ul,
.dest-body ol {
  margin: 0.5rem 0 1rem 1.4rem;
}
.dest-body li {
  margin-bottom: 0.3rem;
}
.dest-body strong {
  color: #1a1a1a;
  font-weight: 600;
}
.dest-body img {
  border-radius: 8px;
  margin: 1.5rem 0;
  max-width: 100%;
}
.dest-body a {
  color: #016d1f;
  text-decoration: underline;
}
.dest-body blockquote {
  background: #1e4a1c;
  border-radius: 16px;
  margin: 2rem 0;
  padding: 2rem 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.dest-body blockquote::after {
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.1);
  content: "”";
  font-family: "Inter", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: 1.25rem;
}
.dest-body blockquote p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.dest-body blockquote cite,
.dest-body blockquote footer {
  display: block;
  position: relative;
  z-index: 1;
}
.dest-body blockquote cite strong,
.dest-body blockquote cite .quote-author,
.dest-body blockquote footer strong,
.dest-body blockquote footer .quote-author {
  color: #fff;
  display: block;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
}
.dest-body blockquote cite .quote-role,
.dest-body blockquote footer .quote-role {
  color: #4ca945;
  display: block;
  font-size: 0.78rem;
  font-style: normal;
  margin-top: 0.15rem;
}

.dest-search-wrap {
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
  padding: 1.75rem 0;
}

.dest-search {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
@media (max-width: 768px) {
  .dest-search {
    flex-direction: column;
  }
}

.dest-search__field {
  position: relative;
  flex: 1;
}

.dest-search__icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: #888;
  pointer-events: none;
}

.dest-search__input {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 0.75rem 2.8rem 0.75rem 2.5rem;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #fff;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dest-search__input::-moz-placeholder {
  color: #aaa;
}
.dest-search__input::placeholder {
  color: #aaa;
}
.dest-search__input:focus {
  outline: none;
  border-color: #016d1f;
  box-shadow: 0 0 0 3px rgba(1, 109, 31, 0.12);
}
.dest-search__input::-webkit-search-cancel-button, .dest-search__input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.dest-search__clear {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: color 0.2s;
}
.dest-search__clear i {
  width: 16px;
  height: 16px;
}
.dest-search__clear:hover {
  color: #e53e3e;
}

.dest-search__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #016d1f;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.25s, transform 0.2s;
}
.dest-search__btn:hover {
  background: #2d6b2a;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .dest-search__btn {
    width: 100%;
  }
}

.dest-search__label {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.dest-search__label strong {
  color: #1a1a1a;
}

.dest-archive {
  background: #f8f8f8;
}

.dest-archive__grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .dest-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .dest-archive__grid {
    grid-template-columns: 1fr;
  }
}

.feat-card__img-link {
  display: block;
}

.feat-card__img-empty {
  align-items: center;
  background: #fafafa;
  display: flex;
  height: 100%;
  justify-content: center;
}
.feat-card__img-empty i {
  color: #888;
  height: 32px;
  width: 32px;
}

.feat-card__title a {
  color: #1a1a1a;
  transition: color 0.2s;
}
.feat-card__title a:hover {
  color: #016d1f;
}

.dest-pagination {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 3rem;
}
.dest-pagination .page-numbers {
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  color: #555;
  display: inline-flex;
  font-size: 0.85rem;
  height: 38px;
  justify-content: center;
  min-width: 38px;
  padding: 0 0.5rem;
  transition: all 0.2s;
}
.dest-pagination .page-numbers:hover, .dest-pagination .page-numbers.current {
  background: #016d1f;
  border-color: #016d1f;
  color: #fff;
}

.sn-wrap {
  padding-bottom: 0;
}

.sn-about {
  overflow: hidden;
  padding: 4rem 0 3rem;
  position: relative;
}

.sn-about__watermark {
  height: auto;
  left: -60px;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  top: -60px;
  width: clamp(280px, 40vw, 500px);
}

.sn-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.sn-about__img-col {
  position: relative;
}

.sn-img-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.sn-img-stack__top,
.sn-img-stack__bot {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  flex: 1;
  min-height: 200px;
}
.sn-img-stack__top img,
.sn-img-stack__bot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sn-img-stack__top:hover img,
.sn-img-stack__bot:hover img {
  transform: scale(1.03);
}

.sn-img-stack__bot {
  margin-left: 2.5rem;
}

.sn-img-stack__badge {
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #016d1f;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(1, 109, 31, 0.35);
  padding: 0.5rem;
}

.sn-img-stack__badge-value {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.sn-img-stack__badge-label {
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.9;
  margin-top: 2px;
}

.sn-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e8f5e3;
  color: #016d1f;
  border-radius: 40px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.sn-badge i {
  width: 14px;
  height: 14px;
}

.sn-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

.sn-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

.sn-skills {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  width: 100%;
}

.sn-skill {
  width: 100%;
}

.sn-skill__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.sn-skill__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
  padding-right: 0.75rem;
}

.sn-skill__pct {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
}

.sn-skill__track {
  height: 8px;
  background: #e4e4e4;
  border-radius: 100px;
  position: relative;
}

.sn-skill__fill {
  height: 100%;
  background: #016d1f;
  border-radius: 100px;
  position: relative;
}
.sn-skill__fill::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #016d1f;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #016d1f;
}

.sn-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #016d1f;
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.sn-cta-btn i {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.sn-cta-btn:hover {
  background: #2d6b2a;
  transform: translateY(-1px);
}
.sn-cta-btn:hover i {
  transform: translateX(3px);
}

.sn-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 3rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  flex-wrap: wrap;
}

.sn-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sn-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: #016d1f;
  line-height: 1;
}

.sn-stat__label {
  font-size: 0.82rem;
  color: #555;
  font-weight: 500;
}

.sn-stat__sep i {
  width: 22px;
  height: 22px;
  stroke: #016d1f;
  opacity: 0.35;
}

.sn-pillars {
  background: #fff;
  padding: 3rem 0 5rem;
}

.sn-pillars__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}
.sn-pillars__header .sn-badge {
  margin-bottom: 0.8rem;
}

.sn-pillars__header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sn-pillars__heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.15;
}

.sn-pillars__nav {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.sn-pillars__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #016d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.sn-pillars__btn i {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
.sn-pillars__btn:hover {
  background: #2d6b2a;
  transform: scale(1.08);
}
.sn-pillars__btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
  transform: none;
}

.sn-pillars__swiper {
  overflow: hidden;
}

.sn-pillar__marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0.25rem;
  margin-bottom: 0;
}

.sn-pillar__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #016d1f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 6px;
}

.sn-pillar__line {
  width: 2px;
  height: 32px;
  background: #016d1f;
  border-radius: 2px;
}

.sn-pillar {
  background: #e8f5e3;
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
  min-height: 180px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.sn-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.sn-pillar__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}

.sn-pillar__half-circle {
  display: inline-block;
  flex-shrink: 0;
  width: 10px;
  height: 18px;
  background: #016d1f;
  border-radius: 0 100px 100px 0;
}

.sn-pillar__text {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .sn-about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sn-img-stack__bot {
    margin-left: 1rem;
  }
  .sn-img-stack__badge {
    right: 0.5rem;
  }
}
@media (max-width: 768px) {
  .sn-title {
    font-size: 1.8rem;
  }
  .sn-pillars__heading {
    font-size: 1.5rem;
  }
  .sn-stats {
    padding: 1.5rem;
    gap: 1rem;
    justify-content: flex-start;
  }
  .sn-stat__sep {
    display: none;
  }
  .sn-stat__value {
    font-size: 1.5rem;
  }
}
.sn-steps {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.sn-steps__header {
  margin-bottom: 4rem;
}

.sn-steps__list {
  display: flex;
  flex-direction: column;
  position: relative;
}

.sn-steps__spine {
  background: linear-gradient(to bottom, transparent, rgba(1, 109, 31, 0.2) 5%, rgba(1, 109, 31, 0.2) 95%, transparent);
  bottom: 0;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  z-index: 0;
}

.sn-step {
  align-items: center;
  display: grid;
  gap: 0 4rem;
  grid-template-columns: 1fr 64px 1fr;
  grid-template-areas: "text node media";
  padding: 3.5rem 0;
  position: relative;
}
.sn-step--reversed {
  grid-template-areas: "media node text";
}
.sn-step + .sn-step::before {
  background: rgba(0, 0, 0, 0.05);
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.sn-step__text {
  grid-area: text;
  padding: 0 0.5rem;
}
.sn-step--reversed .sn-step__text {
  text-align: left;
}

.sn-step__title {
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.sn-step__desc {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.sn-step__node {
  align-items: center;
  display: flex;
  grid-area: node;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.sn-step__num {
  align-items: center;
  background: #016d1f;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(1, 109, 31, 0.1), 0 4px 16px rgba(1, 109, 31, 0.25);
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  height: 52px;
  justify-content: center;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 52px;
}
.sn-step:hover .sn-step__num {
  box-shadow: 0 0 0 10px rgba(1, 109, 31, 0.08), 0 6px 20px rgba(1, 109, 31, 0.3);
  transform: scale(1.08);
}

.sn-step__media {
  aspect-ratio: 4/3;
  border-radius: 16px;
  grid-area: media;
  overflow: hidden;
  position: relative;
}
.sn-step__media img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}
.sn-step__media:hover img {
  transform: scale(1.04);
}

.sn-step__media-placeholder {
  align-items: center;
  background: #fafafa;
  border: 2px dashed rgba(1, 109, 31, 0.2);
  border-radius: 16px;
  color: rgba(1, 109, 31, 0.35);
  display: flex;
  height: 100%;
  justify-content: center;
  min-height: 220px;
}
.sn-step__media-placeholder i {
  height: 48px;
  width: 48px;
}

@media (max-width: 1024px) {
  .sn-steps__spine {
    left: 28px;
  }
  .sn-step,
  .sn-step--reversed {
    grid-template-areas: "node text" "node media";
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    gap: 1rem 1.5rem;
    padding: 2.5rem 0;
    align-items: start;
  }
  .sn-step__node {
    align-items: flex-start;
    padding-top: 0.2rem;
  }
  .sn-step__num {
    height: 44px;
    width: 44px;
    font-size: 0.95rem;
  }
  .sn-step__media {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 768px) {
  .sn-steps__header {
    margin-bottom: 2.5rem;
  }
  .sn-step,
  .sn-step--reversed {
    grid-template-areas: "node text" ". media";
    padding: 2rem 0;
    gap: 0.75rem 1rem;
  }
  .sn-steps__spine {
    left: 22px;
  }
  .sn-step__num {
    height: 40px;
    width: 40px;
    font-size: 0.88rem;
  }
  .sn-step__title {
    font-size: 1.1rem;
  }
}
.ct-wrap {
  padding-bottom: 0;
}

.ct-section {
  padding: 5rem 0;
  background: #f9f9f9;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.ct-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.ct-form-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.ct-form-card__desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.8rem;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ct-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.ct-req {
  color: #016d1f;
}

.ct-input {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  font-family: inherit;
}
.ct-input::-moz-placeholder {
  color: #aaa;
}
.ct-input::placeholder {
  color: #aaa;
}
.ct-input:focus {
  outline: none;
  border-color: #016d1f;
  box-shadow: 0 0 0 3px rgba(1, 109, 31, 0.12);
  background: #fff;
}
.ct-input--error {
  border-color: #e53e3e;
  background: #fff5f5;
}

.ct-select-wrap {
  position: relative;
}

.ct-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}

.ct-select-icon {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: #888;
  pointer-events: none;
}

.ct-textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-error {
  font-size: 0.78rem;
  color: #e53e3e;
  display: none;
}
.ct-error--visible {
  display: block;
}

.ct-feedback {
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}
.ct-feedback:not(:empty) {
  display: block;
}
.ct-feedback--success {
  background: #f0fff4;
  color: #276749;
  border: 1px solid #9ae6b4;
}
.ct-feedback--error {
  background: #fff5f5;
  color: #c53030;
  border: 1px solid #feb2b2;
}

.ct-file-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 0.9rem;
  color: #1a1a1a;
}
.ct-file-label i {
  width: 15px;
  height: 15px;
  stroke: #888;
  flex-shrink: 0;
}
.ct-file-label:hover, .ct-file-label:focus-within {
  border-color: #016d1f;
  box-shadow: 0 0 0 3px rgba(1, 109, 31, 0.12);
  background: #fff;
}
.ct-file-label.ct-input--error {
  border-color: #e53e3e;
  background: #fff5f5;
}

.ct-file-label__text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}

.ct-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ct-file-hint {
  font-size: 0.78rem;
  color: #999;
}

.ct-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #016d1f;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
}
.ct-submit i {
  width: 16px;
  height: 16px;
  stroke: #fff;
}
.ct-submit:hover {
  background: #2d6b2a;
  transform: translateY(-2px);
}
.ct-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.ct-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #016d1f;
  position: sticky;
  top: 100px;
}

.ct-info-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #016d1f;
  margin-bottom: 1.5rem;
}

.ct-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #eee;
}
.ct-info-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ct-info-block__heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.ct-info-block__sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  display: block;
}

.ct-info-block__text {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.55;
  margin: 0 0 0.3rem;
}

.ct-info-block__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.ct-info-block__item i {
  width: 13px;
  height: 13px;
  stroke: #016d1f;
  flex-shrink: 0;
}
.ct-info-block__item:hover {
  color: #016d1f;
}

.ct-director {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.6rem;
}

.ct-director__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
}

.ct-director__email {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.ct-director__email i {
  width: 12px;
  height: 12px;
  stroke: #016d1f;
  flex-shrink: 0;
}
.ct-director__email:hover {
  color: #016d1f;
}

.ct-socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ct-socials__icons {
  display: flex;
  gap: 0.6rem;
}

.ct-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.85rem;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.ct-social:hover {
  background: #016d1f;
  border-color: #016d1f;
  color: #fff;
}

.ct-maps {
  background: #fff;
  padding: 4rem 0 5rem;
}

.ct-maps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.ct-map-unit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ct-map-unit__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #016d1f;
  text-align: center;
  margin: 0;
}

.ct-map {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background: #e8f5e3;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.ct-map__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ct-map__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: 100%;
  color: #555;
  text-align: center;
  padding: 2rem;
}
.ct-map__placeholder i {
  width: 36px;
  height: 36px;
  stroke: #016d1f;
}
.ct-map__placeholder span {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
}
.ct-map__placeholder small {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }
  .ct-info-card {
    position: static;
  }
}
@media (max-width: 768px) {
  .ct-section {
    padding: 3rem 0;
  }
  .ct-row {
    grid-template-columns: 1fr;
  }
  .ct-maps__grid {
    grid-template-columns: 1fr;
  }
  .ct-map {
    height: 300px;
  }
  .ct-form-card {
    padding: 1.5rem 1.25rem;
  }
}
.ouv-page {
  padding-bottom: 0;
}

.ouv-welcome {
  background: #e8f5e3;
  padding: 4rem 0;
  border-bottom: 1px solid rgb(213.4789473684, 236.9473684211, 204.4526315789);
}

.ouv-welcome__inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.ouv-welcome__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #016d1f;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ouv-welcome__icon i {
  width: 32px;
  height: 32px;
  stroke: #fff;
}

.ouv-welcome__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #016d1f;
  margin-bottom: 0.6rem;
}

.ouv-welcome__text {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

.ouv-info {
  padding: 5rem 0;
  background: #fff;
}

.ouv-info__intro {
  margin-bottom: 2.5rem;
}

.ouv-info__heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.ouv-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.ouv-info__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ouv-info__cta {
  align-self: flex-start;
}
.ouv-info__cta i {
  width: 15px;
  height: 15px;
  stroke: #fff;
  transition: transform 0.3s ease;
}
.ouv-info__cta:hover i {
  transform: translateY(3px);
}

.ouv-card-info {
  background: #f9fafb;
  border: 1px solid rgba(1, 109, 31, 0.15);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.ouv-card-info__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}
.ouv-card-info__header i {
  width: 20px;
  height: 20px;
  stroke: #016d1f;
  flex-shrink: 0;
}
.ouv-card-info__header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.ouv-card-info__text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.ouv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.ouv-tags__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #e8f5e3;
  color: #2d6b2a;
  border: 1px solid rgba(1, 109, 31, 0.25);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.ouv-tags__tag i {
  width: 13px;
  height: 13px;
  stroke: #016d1f;
}

.ouv-types-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #eee;
}

.ouv-types-card__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e8f5e3;
}
.ouv-types-card__header i {
  width: 22px;
  height: 22px;
  stroke: #016d1f;
}
.ouv-types-card__header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.ouv-types-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ouv-type {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ouv-type strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}
.ouv-type p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

.ouv-type__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #016d1f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

.ouv-nature {
  padding: 5.5rem 0;
  background: #f8f8f8;
}

.ouv-nature__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.ouv-nature__title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.ouv-nature__desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.ouv-nature__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.ouv-ncard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1.5px solid #eee;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.ouv-ncard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #016d1f;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.ouv-ncard:hover::before {
  transform: scaleX(1);
}
.ouv-ncard:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(1, 109, 31, 0.25);
}

.ouv-ncard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.ouv-ncard__tag {
  background: #e8f5e3;
  border-radius: 50px;
  color: #016d1f;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  text-transform: uppercase;
}

.ouv-ncard__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ouv-ncard__icon i {
  width: 36px;
  height: 36px;
  stroke: #016d1f;
}

.ouv-ncard__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.ouv-ncard__desc {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.65;
  flex: 1;
  margin: 0 0 1.6rem;
}

.ouv-ncard__btn {
  align-self: flex-start;
}
.ouv-ncard__btn i {
  width: 15px;
  height: 15px;
  stroke: #fff;
  transition: transform 0.2s;
}
.ouv-ncard__btn:hover i {
  transform: translateX(3px);
}

.ouv-ncard--comite::before {
  background: #016d1f;
}
.ouv-ncard--comite .ouv-ncard__tag {
  background: rgba(1, 109, 31, 0.1);
  color: #016d1f;
}
.ouv-ncard--comite .ouv-ncard__icon {
  background: rgba(1, 109, 31, 0.1);
}
.ouv-ncard--comite .ouv-ncard__icon i {
  stroke: #016d1f;
}
.ouv-ncard--comite:hover {
  border-color: rgba(1, 109, 31, 0.25);
}
.ouv-ncard--comite .ouv-ncard__btn {
  background: #016d1f;
}
.ouv-ncard--comite .ouv-ncard__btn:hover {
  background: rgb(0.6290909091, 68.5709090909, 19.5018181818);
}

.ouv-ncard--anonima::before {
  background: #016d1f;
}
.ouv-ncard--anonima .ouv-ncard__tag {
  background: rgba(1, 109, 31, 0.1);
  color: #016d1f;
}
.ouv-ncard--anonima .ouv-ncard__icon {
  background: rgba(1, 109, 31, 0.1);
}
.ouv-ncard--anonima .ouv-ncard__icon i {
  stroke: #016d1f;
}
.ouv-ncard--anonima:hover {
  border-color: rgba(1, 109, 31, 0.25);
}
.ouv-ncard--anonima .ouv-ncard__btn {
  background: #016d1f;
}
.ouv-ncard--anonima .ouv-ncard__btn:hover {
  background: rgba(0.6290909091, 68.5709090909, 19.5018181818, 0.2);
}

.ouv-legal {
  padding: 3.5rem 0;
  background: #fff;
}

.ouv-legal__box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
  background: #fafafa;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.ouv-legal__box i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: #d97706;
  margin-top: 0.1rem;
}
.ouv-legal__box p {
  font-size: 0.84rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.ouv-form-page {
  background: #f9fafb;
  padding-bottom: 5rem;
}

.ouv-form-section {
  padding: 4rem 0;
}

.ouv-form-wrap {
  margin: 0 auto;
}

.ouv-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e8f5e3;
  color: #2d6b2a;
  border: 1px solid rgba(1, 109, 31, 0.3);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.ouv-form-badge i {
  width: 14px;
  height: 14px;
  stroke: #016d1f;
}

.ouv-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.ouv-form-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.ouv-form-card__desc {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 2rem;
}

.ouv-form-group-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #016d1f;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.6rem 0;
  border-bottom: 1.5px solid #e8f5e3;
  margin: 1rem 0 0.25rem;
}
.ouv-form-group-title i {
  width: 15px;
  height: 15px;
  stroke: #016d1f;
}

.ouv-upload__zone {
  border: 2px dashed #d0d5dd;
  border-radius: 12px;
  padding: 2.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fafafa;
  position: relative;
}
.ouv-upload__zone:hover, .ouv-upload__zone:focus, .ouv-upload__zone.ouv-upload--drag {
  border-color: #016d1f;
  background: #e8f5e3;
  outline: none;
}

.ouv-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.ouv-upload__icon {
  width: 36px;
  height: 36px;
  stroke: #aaa;
  margin: 0 auto 0.75rem;
  display: block;
  transition: stroke 0.2s;
}
.ouv-upload__zone:hover .ouv-upload__icon, .ouv-upload__zone.ouv-upload--drag .ouv-upload__icon {
  stroke: #016d1f;
}

.ouv-upload__text {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 0.3rem;
}
.ouv-upload__text strong {
  color: #016d1f;
}

.ouv-upload__hint {
  font-size: 0.78rem;
  color: #aaa;
  margin: 0;
}

.ouv-upload__list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ouv-upload__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #e8f5e3;
  border: 1px solid rgba(1, 109, 31, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
}
.ouv-upload__item i.ouv-upload__item-icon {
  width: 14px;
  height: 14px;
  stroke: #016d1f;
  flex-shrink: 0;
}

.ouv-upload__item-name {
  flex: 1;
  font-size: 0.82rem;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ouv-upload__item-size {
  font-size: 0.75rem;
  color: #888;
  flex-shrink: 0;
}

.ouv-upload__item-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #e53e3e;
  transition: transform 0.15s;
}
.ouv-upload__item-remove i {
  width: 14px;
  height: 14px;
  stroke: #e53e3e;
}
.ouv-upload__item-remove:hover {
  transform: scale(1.2);
}

.ouv-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.ouv-submit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #016d1f;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  position: relative;
  font-family: inherit;
}
.ouv-submit__btn i {
  width: 16px;
  height: 16px;
  stroke: #fff;
}
.ouv-submit__btn:hover:not(:disabled) {
  background: #2d6b2a;
  transform: translateY(-2px);
}
.ouv-submit__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.ouv-submit__btn .ouv-submit__loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.ouv-submit__btn.ouv-btn--loading .ouv-submit__label {
  display: none;
}
.ouv-submit__btn.ouv-btn--loading .ouv-submit__loading {
  display: inline-flex;
}

.ouv-submit__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.ouv-submit__back i {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.ouv-submit__back:hover {
  color: #016d1f;
}

@keyframes ouv-spin {
  to {
    transform: rotate(360deg);
  }
}
.ouv-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ouv-spin 0.75s linear infinite;
}

.ouv-protocol {
  background: #fff;
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.ouv-protocol[hidden] {
  display: none;
}

.ouv-protocol__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  background: #e8f5e3;
  border-radius: 50%;
}
.ouv-protocol__icon i {
  width: 40px;
  height: 40px;
  stroke: #016d1f;
}

.ouv-protocol__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.ouv-protocol__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.ouv-protocol__box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: #e8f5e3;
  border: 2px solid rgba(1, 109, 31, 0.3);
  border-radius: 14px;
  padding: 1.25rem 2.5rem;
  margin-bottom: 1.25rem;
}

.ouv-protocol__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2d6b2a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ouv-protocol__code {
  font-size: 1.5rem;
  font-weight: 900;
  color: #016d1f;
  letter-spacing: 0.08em;
  font-family: "Courier New", monospace;
}

.ouv-protocol__note {
  font-size: 0.85rem;
  color: #888;
  margin: 0 0 2rem;
}

.ouv-protocol__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #016d1f;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.25s, transform 0.2s;
}
.ouv-protocol__btn i {
  width: 16px;
  height: 16px;
  stroke: #fff;
}
.ouv-protocol__btn:hover {
  background: #2d6b2a;
  transform: translateY(-2px);
}

.ouv-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.ouv-status-badge--recebida {
  background: #e8f5e3;
  color: #2d6b2a;
}
.ouv-status-badge--analise {
  background: #fff3cd;
  color: #856404;
}
.ouv-status-badge--investigacao {
  background: #fff0e6;
  color: #b45309;
}
.ouv-status-badge--respondida {
  background: #dbeafe;
  color: #1e40af;
}
.ouv-status-badge--encerrada {
  background: #f3f4f6;
  color: #374151;
}

.ouv-track {
  padding: 48px 0 80px;
}

.ouv-track__inner {
  max-width: 680px;
  margin: 0 auto;
}

.ouv-track-form {
  background: #fff;
  border: 1px solid #eee;
  border-top: 4px solid #016d1f;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 36px 40px 32px;
}

.ouv-track__title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.ouv-track__subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}

.ouv-track-error {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 3px solid #ef4444;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
  color: #b91c1c;
  margin-bottom: 16px;
}
.ouv-track-error svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.ouv-track-hint {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ouv-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.ouv-trust__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
  font-family: "Inter", sans-serif;
}
.ouv-trust__item [data-lucide] {
  color: #016d1f;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}

.ouv-track-result {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 28px 32px 24px;
  margin-bottom: 32px;
}

.ouv-track-result__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.ouv-track-result__proto {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #016d1f;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.ouv-track-result__proto span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.ouv-stepper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.ouv-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  gap: 6px;
}
.ouv-stepper__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  left: calc(50% + 14px);
  width: calc(100% - 28px);
  height: 2px;
  background: #eee;
}
.ouv-stepper__step.ouv-stepper__step--done:not(:last-child)::after {
  background: #016d1f;
}

.ouv-stepper__dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e5e9e5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s;
}
.ouv-stepper__step--done .ouv-stepper__dot {
  background: #016d1f;
}
.ouv-stepper__step--active .ouv-stepper__dot {
  background: #fff;
  border: 2px solid #016d1f;
  box-shadow: 0 0 0 4px rgba(1, 109, 31, 0.15);
}
.ouv-stepper__step--active .ouv-stepper__dot::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #016d1f;
  border-radius: 50%;
}

.ouv-stepper__name {
  font-size: 10px;
  color: #888;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}
.ouv-stepper__step--done .ouv-stepper__name, .ouv-stepper__step--active .ouv-stepper__name {
  color: #016d1f;
  font-weight: 600;
}

.ouv-track-result__rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.ouv-track-result__row {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  background: #f8f8f8;
}
.ouv-track-result__row:nth-child(odd) {
  border-right: 1px solid #eee;
}
.ouv-track-result__row:nth-last-child(-n+2) {
  border-bottom: none;
}

.ouv-track-result__label {
  font-size: 10px;
  font-weight: 700;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Inter", sans-serif;
  margin-bottom: 3px;
}

.ouv-track-result__value {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  font-family: "Inter", sans-serif;
}

.ouv-track-result__response {
  background: #e8f5e3;
  border: 1px solid rgb(216.5657894737, 238.2894736842, 208.2105263158);
  border-left: 3px solid #016d1f;
  border-radius: 4px;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.ouv-track-result__response h3 {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #2d6b2a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.ouv-track-result__response p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.ouv-track-result__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ouv-thread {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.ouv-thread__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  padding: 18px 24px;
  border-bottom: 1px solid #eee;
  margin: 0;
}
.ouv-thread__title [data-lucide] {
  color: #016d1f;
}

.ouv-thread__list {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ouv-thread__msg {
  display: flex;
  gap: 10px;
  max-width: 78%;
}
.ouv-thread__msg--equipe {
  align-self: flex-start;
}
.ouv-thread__msg--manifestante {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.ouv-thread__msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.ouv-thread__msg--equipe .ouv-thread__msg-avatar {
  background: #016d1f;
  color: #fff;
}
.ouv-thread__msg--manifestante .ouv-thread__msg-avatar {
  background: #e8f5e3;
  color: #2d6b2a;
}

.ouv-thread__msg-body {
  flex: 1;
  min-width: 0;
}

.ouv-thread__msg-meta {
  font-size: 11px;
  color: #888;
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
}
.ouv-thread__msg--manifestante .ouv-thread__msg-meta {
  text-align: right;
}

.ouv-thread__msg-text {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.ouv-thread__msg--equipe .ouv-thread__msg-text {
  background: #f8f8f8;
  color: #333;
  border-radius: 4px 12px 12px 12px;
  border: 1px solid #eee;
}
.ouv-thread__msg--manifestante .ouv-thread__msg-text {
  background: #e8f5e3;
  color: rgb(37.2986577181, 88.6879194631, 34.8120805369);
  border-radius: 12px 4px 12px 12px;
}

.ouv-thread__compose {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  background: #f8f8f8;
}

.ouv-thread__compose-hint {
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
}

.ouv-thread__compose-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ouv-thread__compose-feedback {
  font-size: 14px;
  color: #016d1f;
}

.ouv-thread__closed {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #eee;
  background: #f8f8f8;
  margin: 0;
}
.ouv-thread__closed [data-lucide] {
  color: #888;
}

@media (max-width: 1024px) {
  .ouv-info__grid {
    grid-template-columns: 1fr;
  }
  .ouv-nature__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .ouv-info__heading {
    font-size: 1.4rem;
  }
  .ouv-welcome {
    padding: 3rem 0;
  }
  .ouv-welcome__inner {
    flex-direction: column;
    gap: 1.25rem;
  }
  .ouv-welcome__icon {
    width: 50px;
    height: 50px;
  }
  .ouv-welcome__title {
    font-size: 1.35rem;
  }
  .ouv-nature {
    padding: 4rem 0;
  }
  .ouv-nature__title {
    font-size: 1.5rem;
  }
  .ouv-nature__cards {
    max-width: 100%;
  }
  .ouv-form-card {
    padding: 2rem 1.5rem;
  }
  .ouv-form-card__title {
    font-size: 1.25rem;
  }
  .ouv-protocol {
    padding: 2.5rem 1.5rem;
  }
  .ouv-protocol__title {
    font-size: 1.4rem;
  }
  .ouv-protocol__code {
    font-size: 1.25rem;
  }
  .ouv-submit {
    flex-direction: column;
    align-items: flex-start;
  }
  .ouv-track-form,
  .ouv-track-result {
    padding: 24px 20px;
  }
  .ouv-track-result__rows {
    grid-template-columns: 1fr;
  }
  .ouv-track-result__rows .ouv-track-result__row {
    border-right: none !important;
  }
  .ouv-track-result__rows .ouv-track-result__row:nth-last-child(-n+2) {
    border-bottom: 1px solid #eee;
  }
  .ouv-track-result__rows .ouv-track-result__row:last-child {
    border-bottom: none;
  }
  .ouv-stepper {
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .ouv-stepper__step {
    min-width: 68px;
  }
  .ouv-stepper__name {
    font-size: 9px;
    white-space: normal;
  }
  .ouv-thread__msg {
    max-width: 90%;
  }
  .ouv-trust {
    gap: 16px;
  }
  .ouv-track-result__header {
    flex-direction: column;
    gap: 8px;
  }
  .ouv-thread__list, .ouv-thread__compose {
    padding: 16px;
  }
  .ouv-thread__title {
    padding: 14px 16px;
  }
}
.ouv-thread__waiting {
  align-items: center;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  color: #888;
  display: flex;
  font-size: 0.9rem;
  gap: 0.5rem;
  margin-top: 32px;
  padding: 1rem 1.25rem;
}
.ouv-thread__waiting [data-lucide] {
  flex-shrink: 0;
  height: 16px;
  width: 16px;
}
