@layer base, utilities, layout;
@layer base {
  :root {
    --ink: #0B1F16;
    --forest: #10301F;
    --forest-2: #16482E;
    --green: #1A7F52;
    --green-bright: #2EB873;
    --lime: #5FE6A0;
    --steel: #C8D2CD;
    --steel-2: #8FA29A;
    --paper: #F3F6F4;
    --paper-2: #E7EDE9;
    --line: rgba(255, 255, 255, .12);
    --line-dk: rgba(11, 31, 22, .12);
    --txt-dk: #0E1B14;
    --txt-mut: #5C6B63;
    --txt-lt: rgba(255, 255, 255, .92);
    --txt-lt-mut: rgba(255, 255, 255, .62);
    --r: 16px;
    --r-lg: 26px;
    --maxw: 1240px;
    --ease: cubic-bezier(.22, .61, .36, 1);
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
  * {
    margin: 0;
  }
  html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
  }
  html, body {
    height: 100%;
  }
  body {
    min-height: 100svh;
    text-rendering: optimizeSpeed;
    background-color: #F3F6F4;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #384640;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  }
  img, svg, video, canvas, audio, iframe {
    display: block;
    max-width: 100%;
  }
  img, svg, video {
    height: auto;
  }
  button, input, textarea, select {
    font: inherit;
    color: inherit;
  }
  :focus-visible {
    outline: 2px solid Highlight;
    outline-offset: 2px;
  }
  section {
    padding: clamp(72px, 9vw, 128px) 0;
  }
  @media (max-width: 768px) {
    section {
      padding: 4rem 0;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    html:focus-within {
      scroll-behavior: auto;
    }
    *, *::before, *::after {
      animation: none !important;
      transition: none !important;
    }
  }
  @font-face {
    font-display: swap;
    font-family: "Archivo";
    font-style: normal;
    font-weight: 400 900;
    src: url("../fonts/archivo-400-900.woff2") format("woff2");
  }
  @font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    src: url("../fonts/inter-400-700.woff2") format("woff2");
  }
}
@layer layout {
  h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-family: Archivo, sans-serif;
    color: #0E1B14;
    font-weight: 800;
    line-height: 1.05;
  }
  h1, .h1 {
    font-size: 3.5rem;
  }
  h2, .h2 {
    font-size: 2.25em;
  }
  h3, .h3 {
    font-size: 1.75em;
  }
  h4, .h4 {
    font-size: 1.5em;
  }
  h5, .h5 {
    font-size: 0.83em;
  }
  h6, .h6 {
    font-size: 0.67em;
  }
  a {
    color: inherit;
    text-decoration: underline;
    background-color: transparent;
  }
  a:hover {
    color: #1A7F52;
  }
  .copy {
    font-size: 1.1875rem;
    font-weight: 400;
    color: #5C6B63;
    margin: 0 0 3rem 0;
  }
  .caption {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 400;
    line-height: 1.25rem;
  }
  .btn {
    background-color: #1A7F52;
    color: #fff;
    border-radius: 999px;
    padding: 16px 26px;
    font-size: 1.0625rem;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .btn:hover {
    background-color: #2EB873;
    color: #fff;
  }
  .btn .icon {
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn img {
    width: 1.125rem;
    height: 1.125rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .btn svg {
    flex-shrink: 0;
  }
  .btn.outline {
    background-color: transparent;
    border: 2px solid #1A7F52;
    color: #1A7F52;
  }
  .btn.outline:hover {
    background-color: #1A7F52;
    color: #fff;
    border-color: #1A7F52;
  }
  .btn.zap {
    background-color: #25d366;
    color: #fff;
  }
  .btn.zap:hover {
    background-color: #1da851;
  }
  .btn.large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .form-group label {
    font-weight: 600;
    color: #334155;
    font-size: 0.875rem;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 1rem 1.5rem;
    border: 2px solid #cbd5e1;
    border-radius: 0.75rem;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #1e293b;
  }
  .form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder, .form-group select::-moz-placeholder {
    color: #94a3b8;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder,
  .form-group select::placeholder {
    color: #94a3b8;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: #2EB873;
    box-shadow: 0 0 0 3px rgba(46, 184, 115, 0.1);
  }
  .form-group input:disabled,
  .form-group textarea:disabled,
  .form-group select:disabled {
    background: #f1f5f9;
    cursor: not-allowed;
  }
  .form-group input[aria-invalid=true],
  .form-group textarea[aria-invalid=true],
  .form-group select[aria-invalid=true] {
    border-color: #ef4444;
  }
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  .form-group select {
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 4rem;
  }
  .form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  .form-success {
    color: #10b981;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  .form-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
  }
  .form-check input[type=checkbox],
  .form-check input[type=radio] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #2EB873;
  }
  .form-check label {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--txt-dk);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  h1, h2, h3, h4, .display {
    font-family: "Archivo", sans-serif;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: inherit;
  }
  a {
    text-decoration: none;
  }
  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
  }
  .eyebrow {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--green);
  }
  .eyebrow.on-dark {
    color: var(--lime);
  }
  .eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
    display: inline-block;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.01em;
    padding: 16px 26px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.25s var(--ease);
    white-space: nowrap;
    text-decoration: none;
  }
  .btn svg {
    width: 18px;
    height: 18px;
  }
  .btn-primary {
    background: var(--green);
    color: #fff;
  }
  .btn-primary:hover {
    background: var(--green-bright);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(26, 127, 82, 0.35);
  }
  .btn-ghost {
    border-color: var(--line);
    color: #fff;
  }
  .btn-ghost:hover {
    border-color: var(--lime);
    color: var(--lime);
  }
  .btn-dark {
    background: var(--ink);
    color: #fff;
  }
  .btn-dark:hover {
    background: var(--forest-2);
    transform: translateY(-2px);
  }
  header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    transition: 0.3s var(--ease);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
  }
  .nav .logo img {
    height: 46px;
    width: auto;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links a {
    font-weight: 600;
    font-size: 17px;
    color: var(--txt-lt);
    transition: 0.2s;
    position: relative;
    padding: 6px 0;
    text-decoration: none;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: 0.25s var(--ease);
  }
  .nav-links a:hover {
    color: #fff;
  }
  .nav-links a:hover::after {
    width: 100%;
  }
  header.scrolled {
    background: rgba(11, 31, 22, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
  }
  header.scrolled .nav {
    height: 72px;
  }
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .burger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .burger span {
    width: 26px;
    height: 2px;
    background: #fff;
    display: block;
    transition: 0.25s var(--ease);
  }
  header.nav-open .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  header.nav-open .burger span:nth-child(2) {
    opacity: 0;
  }
  header.nav-open .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  footer {
    background: #07150E;
    color: var(--txt-lt-mut);
    padding: 64px 0 30px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
  }
  footer .logo img {
    height: 44px;
    margin-bottom: 20px;
  }
  footer p.about {
    font-size: 16.5px;
    line-height: 1.6;
    max-width: 320px;
  }
  .foot-col h5 {
    font-family: "Archivo", sans-serif;
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
  }
  .foot-col a, .foot-col li {
    display: block;
    font-size: 16.5px;
    color: var(--txt-lt-mut);
    margin-bottom: 11px;
    list-style: none;
    text-decoration: none;
    transition: 0.2s;
  }
  .foot-col a:hover {
    color: var(--lime);
  }
  .foot-bottom {
    border-top: 1px solid var(--line);
    margin-top: 48px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 16px;
  }
  .foot-bottom a {
    color: var(--txt-lt-mut);
    text-decoration: none;
  }
  .foot-bottom a:hover {
    color: #fff;
  }
  .wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    transition: 0.25s;
  }
  .wa:hover {
    transform: scale(1.08);
  }
  .wa svg {
    width: 32px;
    height: 32px;
    fill: #fff;
  }
  .reveal {
    transition: 0.7s var(--ease);
  }
  html.js-enabled .reveal {
    opacity: 0;
    transform: translateY(26px);
  }
  html.js-enabled .reveal.in {
    opacity: 1;
    transform: none;
  }
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    color: #fff;
    overflow: hidden;
    background: var(--ink);
    padding: 0;
  }
  .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
  }
  .slide.active {
    opacity: 1;
    visibility: visible;
  }
  .slide .img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    filter: grayscale(1) contrast(1.05) brightness(0.6);
    transform: scale(1.06);
  }
  .slide.active .img {
    animation: kenburns 8s ease-out forwards;
  }
  @keyframes kenburns {
    from {
      transform: scale(1.06);
    }
    to {
      transform: scale(1.18);
    }
  }
  .slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, var(--ink) 6%, rgba(11, 31, 22, 0.62) 50%, rgba(11, 31, 22, 0.18) 100%);
  }
  .slide .wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .hero-coil {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: min(58vw, 820px);
    opacity: 0.42;
    pointer-events: none;
  }
  .hero-coil ellipse {
    fill: none;
    stroke: url(#coilgrad);
    stroke-width: 2;
  }
  .hero-inner {
    max-width: 840px;
  }
  .slide .hero-inner > * {
    opacity: 0;
    transform: translateY(26px);
  }
  .slide.active .hero-inner > * {
    opacity: 1;
    transform: none;
    transition: 0.75s var(--ease);
  }
  .slide.active .hero-inner > *:nth-child(1) {
    transition-delay: 0.25s;
  }
  .slide.active .hero-inner > *:nth-child(2) {
    transition-delay: 0.38s;
  }
  .slide.active .hero-inner > *:nth-child(3) {
    transition-delay: 0.5s;
  }
  .slide.active .hero-inner > *:nth-child(4) {
    transition-delay: 0.62s;
  }
  .hero h1 {
    font-size: clamp(34px, 4.6vw, 68px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 26px 0 0;
  }
  .hero h1 .accent {
    color: var(--lime);
    white-space: nowrap;
  }
  .hero p.lead {
    font-size: clamp(18px, 2.1vw, 22px);
    color: var(--txt-lt);
    max-width: 560px;
    margin: 30px 0 0;
    line-height: 1.6;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 38px;
    flex-wrap: wrap;
  }
  .hero-controls {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 36px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .hero-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(6px);
    transition: 0.25s var(--ease);
  }
  .hero-arrow:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-2px);
  }
  .hero-arrow svg {
    width: 21px;
    height: 21px;
  }
  .hero-dots {
    display: flex;
    gap: 12px;
  }
  .hero-dots button {
    width: 46px;
    height: 5px;
    border-radius: 3px;
    border: 0;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    padding: 0;
    transition: 0.3s var(--ease);
  }
  .hero-dots button.active {
    background: var(--lime);
    width: 66px;
  }
  .hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 104px;
    transform: translateX(-50%);
    z-index: 6;
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--txt-lt-mut);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    font-family: "Archivo", sans-serif;
    font-weight: 600;
  }
  .hero-scroll .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--txt-lt-mut);
    border-radius: 14px;
    position: relative;
  }
  .hero-scroll .mouse::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translateX(-50%);
    width: 4px;
    height: 7px;
    border-radius: 3px;
    background: var(--lime);
    animation: scrolldot 1.6s infinite;
  }
  @keyframes scrolldot {
    0% {
      opacity: 0;
      transform: translate(-50%, 0);
    }
    40% {
      opacity: 1;
    }
    80% {
      opacity: 0;
      transform: translate(-50%, 12px);
    }
  }
  .stats {
    background: var(--ink);
    color: #fff;
    border-top: 1px solid var(--line);
    padding: 0;
  }
  .stats .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat {
    padding: 40px 26px;
    border-right: 1px solid var(--line);
    text-align: center;
  }
  .stat:last-child {
    border-right: 0;
  }
  .stat .num {
    font-family: "Archivo", sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5vw, 62px);
    color: var(--lime);
    line-height: 1;
  }
  .stat .num small {
    font-size: 0.5em;
    color: var(--green-bright);
    vertical-align: super;
    font-weight: 800;
  }
  .stat .lbl {
    font-size: 16px;
    letter-spacing: 0.04em;
    color: var(--txt-lt-mut);
    margin-top: 10px;
    text-transform: uppercase;
    font-family: "Archivo", sans-serif;
    font-weight: 600;
  }
  section {
    position: relative;
  }
  .pad {
    padding: clamp(72px, 9vw, 128px) 0;
  }
  .sec-head {
    max-width: 760px;
  }
  .sec-head h2 {
    font-size: clamp(32px, 4.6vw, 58px);
    font-weight: 800;
    margin: 20px 0 0;
  }
  .sec-head p {
    font-size: 19px;
    color: var(--txt-mut);
    margin-top: 20px;
    line-height: 1.6;
  }
  .sobre {
    background: var(--paper);
  }
  .sobre-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
  }
  .sobre p.body {
    font-size: 19px;
    color: #384640;
    margin-top: 22px;
  }
  .sobre .pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 38px;
  }
  .pillar {
    position: relative;
    background: #fff;
    border: 1px solid var(--line-dk);
    border-radius: 18px;
    padding: 28px 26px;
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  }
  .pillar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--green);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease);
  }
  .pillar::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 127, 82, 0.14), transparent 70%);
    transition: transform 0.45s var(--ease);
  }
  .pillar:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 24px 46px rgba(11, 31, 22, 0.14);
  }
  .pillar:hover::before {
    transform: scaleY(1);
  }
  .pillar:hover::after {
    transform: scale(1.7);
  }
  .pillar .ic {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--green-bright), var(--forest-2));
    box-shadow: 0 12px 24px rgba(26, 127, 82, 0.32);
    transition: transform 0.35s var(--ease);
  }
  .pillar .ic svg {
    width: 27px;
    height: 27px;
  }
  .pillar:hover .ic {
    transform: rotate(-6deg) scale(1.07);
  }
  .pillar h4 {
    position: relative;
    z-index: 1;
    font-size: 19px;
    font-weight: 700;
    font-family: "Archivo", sans-serif;
  }
  .pillar p {
    position: relative;
    z-index: 1;
    font-size: 16.5px;
    color: var(--txt-mut);
    margin-top: 8px;
    line-height: 1.5;
  }
  .sobre-visual {
    position: relative;
  }
  .sobre-visual .ph {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 60px rgba(11, 31, 22, 0.22);
  }
  .sobre-visual .ph img,
  .sobre-visual .ph video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    filter: grayscale(0.4) contrast(1.04);
  }
  .sobre-badge {
    position: absolute;
    left: -26px;
    bottom: -26px;
    background: var(--green);
    color: #fff;
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 22px 44px rgba(26, 127, 82, 0.4);
    max-width: 240px;
  }
  .sobre-badge .big {
    font-family: "Archivo", sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 0.95;
  }
  .sobre-badge .small {
    font-size: 16px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.85);
  }
  .tipos {
    background: linear-gradient(180deg, var(--ink), var(--forest));
    color: #fff;
  }
  .tipos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 54px;
  }
  .tipo {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--line);
    transition: 0.4s var(--ease);
  }
  .tipo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    filter: grayscale(1) contrast(1.05) brightness(0.8);
    transition: 0.6s var(--ease);
    z-index: 0;
  }
  .tipo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(11, 31, 22, 0.15) 0%, rgba(11, 31, 22, 0.55) 45%, rgba(16, 48, 31, 0.95) 100%);
    mix-blend-mode: multiply;
  }
  .tipo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--green);
    opacity: 0.14;
    transition: 0.4s;
  }
  .tipo .body {
    position: relative;
    z-index: 2;
    padding: 30px;
  }
  .tipo .n {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--lime);
    letter-spacing: 0.12em;
  }
  .tipo h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 8px 0 6px;
  }
  .tipo p {
    font-size: 16.5px;
    color: var(--txt-lt-mut);
    max-width: 380px;
    line-height: 1.5;
  }
  .tipo .more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.35s var(--ease);
  }
  .tipo:hover {
    transform: translateY(-6px);
    border-color: rgba(95, 230, 160, 0.4);
  }
  .tipo:hover img {
    transform: scale(1.07);
    filter: grayscale(0.5) contrast(1.08) brightness(0.85);
  }
  .tipo:hover::before {
    opacity: 0.05;
  }
  .tipo:hover .more {
    opacity: 1;
    transform: translateY(0);
  }
  .seg {
    background: var(--paper);
  }
  .seg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 54px;
  }
  .seg-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 310px;
    border-radius: var(--r);
    overflow: hidden;
    color: #fff;
    z-index: 1;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  }
  .seg-card .seg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    filter: grayscale(1) contrast(1.04) brightness(0.82);
    transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
  }
  .seg-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(11, 31, 22, 0.05) 0%, rgba(11, 31, 22, 0.5) 52%, rgba(11, 31, 22, 0.94) 100%);
  }
  .seg-card .seg-body {
    position: relative;
    z-index: 2;
    padding: 26px;
    width: 100%;
  }
  .seg-card .seg-body::before {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    background: var(--lime);
    margin-bottom: 14px;
    transition: width 0.4s var(--ease);
  }
  .seg-card h4 {
    font-size: 22px;
    font-weight: 800;
    font-family: "Archivo", sans-serif;
    letter-spacing: -0.01em;
  }
  .seg-card p {
    font-size: 16px;
    color: var(--txt-lt-mut);
    line-height: 1.45;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.45s var(--ease);
  }
  .seg-card:hover {
    transform: scale(1.045);
    z-index: 6;
    box-shadow: 0 28px 56px rgba(11, 31, 22, 0.42);
  }
  .seg-card:hover .seg-img {
    transform: scale(1.16);
    filter: grayscale(0.35) contrast(1.08) brightness(0.9);
  }
  .seg-card:hover .seg-body::before {
    width: 64px;
  }
  .seg-card:hover p {
    max-height: 70px;
    opacity: 1;
    margin-top: 8px;
  }
  .proc {
    background: var(--forest);
    color: #fff;
    overflow: hidden;
    position: relative;
  }
  .proc .wrap {
    position: relative;
    z-index: 2;
  }
  .proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
    counter-reset: step;
  }
  .proc-card {
    position: relative;
    border-top: 2px solid var(--line);
    padding-top: 28px;
    transition: transform 0.35s var(--ease);
  }
  .proc-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    height: 2px;
    width: 48px;
    background: var(--lime);
    transition: width 0.5s var(--ease);
  }
  .proc-card:hover {
    transform: translateY(-5px);
  }
  .proc-card:hover::after {
    width: 100%;
  }
  .proc-card .step {
    font-family: "Archivo", sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--lime);
    display: flex;
    align-items: baseline;
    gap: 11px;
  }
  .proc-card .step::before {
    counter-increment: step;
    content: "0" counter(step);
    font-size: 30px;
    line-height: 0.9;
    letter-spacing: -0.02em;
  }
  .proc-card h4 {
    font-size: 21px;
    font-weight: 700;
    font-family: "Archivo", sans-serif;
    margin: 18px 0 8px;
  }
  .proc-card p {
    font-size: 16.5px;
    color: var(--txt-lt-mut);
    line-height: 1.55;
  }
  .proc-coil {
    position: absolute;
    left: -80px;
    bottom: -40px;
    width: 600px;
    opacity: 0.12;
    z-index: 0;
  }
  .proc-coil ellipse {
    fill: none;
    stroke: var(--lime);
    stroke-width: 2;
  }
  .gal {
    background: var(--paper);
  }
  .gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
    margin-top: 48px;
    grid-auto-flow: dense;
  }
  .gal-item {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    background: var(--paper-2);
  }
  .gal-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    filter: grayscale(0.55) contrast(1.04);
    transition: 0.5s var(--ease);
  }
  .gal-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--green);
    opacity: 0;
    mix-blend-mode: multiply;
    transition: 0.35s;
  }
  .gal-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1.06);
  }
  .gal-item:hover::after {
    opacity: 0.12;
  }
  .gal-item.tall {
    grid-row: span 2;
  }
  .gal-item.wide {
    grid-column: span 2;
  }
  .cta {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cta-coil {
    position: absolute;
    right: -40px;
    top: -30px;
    width: 520px;
    opacity: 0.16;
    transform: rotate(8deg);
  }
  .cta-coil ellipse {
    fill: none;
    stroke: var(--green-bright);
    stroke-width: 2;
  }
  .cta-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .cta h2 {
    font-size: clamp(34px, 4.6vw, 60px);
    font-weight: 900;
    line-height: 1.02;
  }
  .cta p {
    font-size: 19px;
    color: var(--txt-lt-mut);
    margin-top: 22px;
    max-width: 480px;
  }
  .cta-actions {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
  }
  .form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 34px;
  }
  .form h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .field {
    margin-bottom: 16px;
  }
  .field label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--txt-lt-mut);
    margin-bottom: 7px;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    font-size: 17px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 15px;
    color: #fff;
    transition: 0.2s;
  }
  .field input::-moz-placeholder, .field textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  .field input::placeholder, .field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: 0;
    border-color: var(--lime);
    background: rgba(255, 255, 255, 0.09);
  }
  .field select option {
    color: #111;
  }
  .form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }
  .form .legal {
    font-size: 16px;
    color: var(--txt-lt-mut);
    margin-top: 14px;
    text-align: center;
  }
  .page-hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    padding: 150px 0 60px;
    display: flex;
    align-items: flex-end;
    min-height: 340px;
  }
  .page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .page-hero-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    filter: grayscale(1) contrast(1.05) brightness(0.5);
  }
  .page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(11, 31, 22, 0.55) 0%, rgba(11, 31, 22, 0.84) 100%);
  }
  .page-hero .wrap {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .page-hero h1 {
    font-size: clamp(32px, 4.6vw, 56px);
    font-weight: 900;
    margin: 16px 0 0;
    line-height: 1.06;
  }
  .page-hero h1 .accent {
    color: var(--lime);
  }
  .page-hero p.lead {
    font-size: clamp(18px, 2vw, 21px);
    color: var(--txt-lt);
    max-width: 640px;
    margin: 18px 0 0;
    line-height: 1.6;
  }
  .page-hero .hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 16px;
    font-family: "Archivo", sans-serif;
    font-weight: 600;
    color: var(--txt-lt-mut);
  }
  .breadcrumb a {
    color: var(--txt-lt-mut);
    text-decoration: none;
    transition: 0.2s;
  }
  .breadcrumb a:hover {
    color: var(--lime);
  }
  .breadcrumb .sep {
    display: inline-flex;
    opacity: 0.5;
  }
  .breadcrumb .sep svg {
    width: 13px;
    height: 13px;
  }
  .breadcrumb .current {
    color: #fff;
  }
  .prose {
    font-size: 18px;
    line-height: 1.75;
    color: #384640;
  }
  .prose > * + * {
    margin-top: 1.1em;
  }
  .prose h2 {
    font-family: "Archivo", sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--txt-dk);
    margin-top: 1.6em;
    line-height: 1.15;
  }
  .prose h3 {
    font-family: "Archivo", sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--txt-dk);
    margin-top: 1.4em;
  }
  .prose p {
    margin: 0;
  }
  .prose ul, .prose ol {
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
  }
  .prose ul li {
    position: relative;
    padding-left: 30px;
  }
  .prose ul li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 11px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
  }
  .prose ol {
    counter-reset: pl;
  }
  .prose ol li {
    position: relative;
    padding-left: 38px;
    counter-increment: pl;
  }
  .prose ol li::before {
    content: counter(pl);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 15px;
    display: grid;
    place-items: center;
  }
  .prose strong {
    color: var(--txt-dk);
    font-weight: 700;
  }
  .prose a {
    color: var(--green);
    text-decoration: underline;
  }
  .prose img {
    border-radius: var(--r);
    margin: 1.4em 0;
  }
  .item-body {
    background: var(--paper);
  }
  .item-body .wrap {
    max-width: 820px;
  }
  .item-eyebrow {
    margin-bottom: 18px;
  }
  .cta-strip {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cta-strip .cta-coil {
    position: absolute;
    right: -40px;
    top: -30px;
    width: 460px;
    opacity: 0.14;
    transform: rotate(8deg);
  }
  .cta-strip .cta-coil ellipse {
    fill: none;
    stroke: var(--green-bright);
    stroke-width: 2;
  }
  .cta-strip .inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .cta-strip h2 {
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 900;
    line-height: 1.05;
    max-width: 640px;
  }
  .cta-strip h2 .accent {
    color: var(--lime);
  }
  .cta-strip p {
    color: var(--txt-lt-mut);
    margin-top: 14px;
    max-width: 520px;
    font-size: 18px;
  }
  .cta-strip-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .list-section {
    background: var(--paper);
  }
  .list-section.dark {
    background: linear-gradient(180deg, var(--ink), var(--forest));
    color: #fff;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: start;
  }
  .contact-info {
    display: grid;
    gap: 22px;
  }
  .contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .contact-item .ic {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--green-bright), var(--forest-2));
    box-shadow: 0 10px 22px rgba(26, 127, 82, 0.3);
  }
  .contact-item .ic svg {
    width: 23px;
    height: 23px;
  }
  .contact-item h4 {
    font-family: "Archivo", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
  }
  .contact-item p, .contact-item a {
    font-size: 17px;
    color: var(--txt-mut);
    text-decoration: none;
    line-height: 1.5;
  }
  .contact-item a:hover {
    color: var(--green);
  }
  .form-light {
    background: #fff;
    border: 1px solid var(--line-dk);
    border-radius: var(--r-lg);
    padding: 34px;
    box-shadow: 0 24px 60px rgba(11, 31, 22, 0.08);
  }
  .form-light h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 22px;
  }
  .form-light .legal {
    font-size: 16px;
    color: var(--txt-mut);
    margin-top: 14px;
    text-align: center;
  }
  .form-light .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-light .field {
    margin-bottom: 16px;
  }
  .form-light .field label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--txt-mut);
    margin-bottom: 7px;
  }
  .form-light .field input, .form-light .field select, .form-light .field textarea {
    width: 100%;
    font-size: 17px;
    font-family: inherit;
    background: var(--paper);
    border: 1px solid var(--line-dk);
    border-radius: 12px;
    padding: 13px 15px;
    color: var(--txt-dk);
    transition: 0.2s;
  }
  .form-light .field input::-moz-placeholder, .form-light .field textarea::-moz-placeholder {
    color: var(--steel-2);
  }
  .form-light .field input::placeholder, .form-light .field textarea::placeholder {
    color: var(--steel-2);
  }
  .form-light .field input:focus, .form-light .field select:focus, .form-light .field textarea:focus {
    outline: 0;
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 127, 82, 0.12);
  }
  .form-light .field textarea {
    min-height: 130px;
    resize: vertical;
  }
  .file-drop {
    display: block;
    border: 1.5px dashed var(--steel-2);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
  }
  .file-drop p {
    font-weight: 600;
    color: var(--txt-dk);
    font-size: 16.5px;
  }
  .file-drop span {
    font-size: 16px;
    color: var(--txt-mut);
  }
  .file-drop:hover {
    border-color: var(--green);
    background: var(--paper);
  }
  .file-drop input {
    display: none;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .post-card {
    background: #fff;
    border: 1px solid var(--line-dk);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    text-decoration: none;
  }
  .post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(11, 31, 22, 0.14);
  }
  .post-card .ph {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--paper-2);
  }
  .post-card .ph img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    filter: grayscale(0.4) contrast(1.04);
    transition: 0.5s var(--ease);
  }
  .post-card:hover .ph img {
    transform: scale(1.06);
    filter: none;
  }
  .post-card .body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }
  .post-card .cat {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
  }
  .post-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--txt-dk);
    line-height: 1.2;
  }
  .post-card p {
    font-size: 16px;
    color: var(--txt-mut);
    line-height: 1.5;
  }
  .post-card .more {
    margin-top: auto;
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--green);
  }
  .post-article {
    max-width: 760px;
    margin: 0 auto;
  }
  .post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--txt-mut);
    margin-bottom: 8px;
  }
  .post-meta .cat {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
  }
  @media (max-width: 980px) {
    .nav-links, .nav-cta .btn {
      display: none;
    }
    .burger {
      display: flex;
    }
    header.nav-open {
      background: rgba(11, 31, 22, 0.97);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    header.nav-open .nav-links {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: rgba(11, 31, 22, 0.98);
      padding: 8px 28px 24px;
      border-top: 1px solid var(--line);
      box-shadow: 0 24px 44px rgba(0, 0, 0, 0.45);
    }
    header.nav-open .nav-links a {
      padding: 15px 0;
      font-size: 18px;
      border-bottom: 1px solid var(--line);
    }
    header.nav-open .nav-links a::after {
      display: none;
    }
    .sobre-grid, .cta-grid {
      grid-template-columns: 1fr;
      gap: 44px;
    }
    .stats .grid {
      grid-template-columns: 1fr 1fr;
    }
    .stat:nth-child(2) {
      border-right: 0;
    }
    .stat {
      border-bottom: 1px solid var(--line);
    }
    .seg-grid, .proc-grid {
      grid-template-columns: 1fr 1fr;
    }
    .gal-grid {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 180px;
    }
    .gal-item.wide {
      grid-column: auto;
    }
    .gal-item.tall {
      grid-row: auto;
    }
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .blog-grid {
      grid-template-columns: 1fr 1fr;
    }
    .cta-strip .inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
  }
  @media (max-width: 620px) {
    .wrap {
      padding: 0 20px;
    }
    body {
      font-size: 17px;
    }
    .tipos-grid {
      grid-template-columns: 1fr;
    }
    .seg-grid {
      grid-template-columns: 1fr;
    }
    .seg-card {
      min-height: 260px;
    }
    .seg-card p {
      max-height: 90px;
      opacity: 1;
      margin-top: 8px;
    }
    .seg-card:hover {
      transform: none;
    }
    .gal-grid {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 150px;
    }
    .sobre-badge {
      left: 0;
      bottom: -20px;
      padding: 18px 20px;
    }
    .hero h1 {
      font-size: clamp(32px, 8.6vw, 46px);
      line-height: 1.12;
    }
    .hero-scroll, .hero-controls .hero-arrow {
      display: none;
    }
    .page-hero {
      padding: 120px 0 44px;
      min-height: 280px;
    }
    .blog-grid {
      grid-template-columns: 1fr;
    }
    .form-row {
      grid-template-columns: 1fr;
    }
  }
}
@layer utilities {
  .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
  }
  .container-fluid {
    max-width: 100%;
  }
  .hidden {
    display: none !important;
  }
  .flex {
    display: flex !important;
  }
  .grid {
    display: grid !important;
  }
  .block {
    display: block !important;
  }
  .inline-block {
    display: inline-block !important;
  }
  .inline {
    display: inline !important;
  }
  .inline-flex {
    display: inline-flex !important;
  }
  .grid-2-columns {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .grid-3-columns {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .grid-4-columns {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .grid-5-columns {
    grid-template-columns: repeat(5, 1fr) !important;
  }
  .grid-6-columns {
    grid-template-columns: repeat(6, 1fr) !important;
  }
  .row {
    flex-direction: row !important;
  }
  .column {
    flex-direction: column !important;
  }
  .flex-wrap {
    flex-wrap: wrap !important;
  }
  .flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-1 {
    flex: 1 !important;
  }
  .flex-auto {
    flex: auto !important;
  }
  .flex-none {
    flex: none !important;
  }
  .flex-grow {
    flex-grow: 1 !important;
  }
  .flex-shrink {
    flex-shrink: 1 !important;
  }
  .items-center {
    align-items: center !important;
  }
  .items-start {
    align-items: flex-start !important;
  }
  .items-end {
    align-items: flex-end !important;
  }
  .justify-center {
    justify-content: center !important;
  }
  .justify-between {
    justify-content: space-between !important;
  }
  .justify-end {
    justify-content: flex-end !important;
  }
  .order-first {
    order: -1 !important;
  }
  .order-last {
    order: 999 !important;
  }
  .order-none {
    order: 0 !important;
  }
  .order-1 {
    order: 1 !important;
  }
  .order-2 {
    order: 2 !important;
  }
  .order-3 {
    order: 3 !important;
  }
  .order-4 {
    order: 4 !important;
  }
  .order-5 {
    order: 5 !important;
  }
  .order-6 {
    order: 6 !important;
  }
  .w-full {
    width: 100% !important;
  }
  .h-full {
    height: 100% !important;
  }
  .text-left {
    text-align: left !important;
  }
  .text-center {
    text-align: center !important;
  }
  .text-right {
    text-align: right !important;
  }
  .text-justify {
    text-align: justify !important;
  }
  .gap-xs {
    gap: 0.25rem !important;
  }
  .gap-sm {
    gap: 0.5rem !important;
  }
  .gap-md {
    gap: 1rem !important;
  }
  .gap-lg {
    gap: 1.5rem !important;
  }
  .gap-xl {
    gap: 2rem !important;
  }
  .gap-2xl {
    gap: 3rem !important;
  }
  .ratio-1x1 {
    aspect-ratio: 1/1 !important;
  }
  .ratio-16x9 {
    aspect-ratio: 16/9 !important;
  }
  .ratio-4x3 {
    aspect-ratio: 4/3 !important;
  }
  .ratio-3x2 {
    aspect-ratio: 3/2 !important;
  }
  .overflow-hidden {
    overflow: hidden !important;
  }
  .columns-1 {
    -moz-column-count: 1 !important;
         column-count: 1 !important;
  }
  .columns-2 {
    -moz-column-count: 2 !important;
         column-count: 2 !important;
  }
  .columns-3 {
    -moz-column-count: 3 !important;
         column-count: 3 !important;
  }
  .columns-4 {
    -moz-column-count: 4 !important;
         column-count: 4 !important;
  }
  .columns-5 {
    -moz-column-count: 5 !important;
         column-count: 5 !important;
  }
  .columns-6 {
    -moz-column-count: 6 !important;
         column-count: 6 !important;
  }
  .m-0 {
    margin: 0 !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .mt-0 {
    margin-top: 0 !important;
  }
  .ml-0 {
    margin-left: 0 !important;
  }
  .mr-0 {
    margin-right: 0 !important;
  }
  .mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-0 {
    padding: 0 !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pt-0 {
    padding-top: 0 !important;
  }
  .pl-0 {
    padding-left: 0 !important;
  }
  .pr-0 {
    padding-right: 0 !important;
  }
  .px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  ul.menu__horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  ul.menu__horizontal li {
    margin-right: 1rem;
  }
  ul.menu__horizontal li:last-child {
    margin-right: 0;
  }
  ul.menu__vertical {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  ul.menu__vertical li {
    margin-bottom: 1rem;
  }
  ul.menu__vertical li:last-child {
    margin-bottom: 0;
  }
  @media screen and (max-width: 768px) {
    .flex {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
/*# sourceMappingURL=index.css.map */
