:root {
    --hs-bg: #00371f;
    --hs-dark: #003d23;
    --hs-deep: #002e1f;
    --hs-green: #087a33;
    --hs-lime: #9bcb3d;
    --hs-text: #053d27;
    --hs-muted: #52645a;
    --hs-soft: #f6f8f6;
    --hs-line: #e3e9e5;
    --hs-white: #ffffff;
    --hs-shadow: 0 18px 34px rgba(0, 39, 20, .12);
    --hs-transition-fast: 0.22s ease;
    --hs-transition-smooth: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --hs-transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.hs-body {
    min-height: 100vh;
    background: #fff;
    color: var(--hs-text);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--hs-transition-fast), transform var(--hs-transition-fast);
}

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

/* Animações globais */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes hsPulseRing {
    0% { box-shadow: 0 0 0 0 rgba(155, 203, 61, .42); }
    70% { box-shadow: 0 0 0 14px rgba(155, 203, 61, 0); }
    100% { box-shadow: 0 0 0 0 rgba(155, 203, 61, 0); }
}

@keyframes hsWhatsappPulse {
    0% { box-shadow: 0 18px 36px rgba(0, 0, 0, .24), 0 0 0 0 rgba(18, 162, 70, .55); }
    70% { box-shadow: 0 18px 36px rgba(0, 0, 0, .24), 0 0 0 18px rgba(18, 162, 70, 0); }
    100% { box-shadow: 0 18px 36px rgba(0, 0, 0, .24), 0 0 0 0 rgba(18, 162, 70, 0); }
}

@keyframes hsGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes hsTypeCaret {
    0%, 45% { opacity: 1; }
    46%, 100% { opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes hsSoftDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-10px, -8px, 0) scale(1.015); }
}

@keyframes hsCardRise {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hsIconBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-2deg); }
}

@keyframes hsImageFade {
    0%, 100% { opacity: .96; filter: saturate(.96) contrast(.98); }
    50% { opacity: 1; filter: saturate(1.08) contrast(1.03); }
}

@keyframes hsFloatPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.04); }
}

@keyframes hsLoaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes hsLoaderLogo {
    0%, 100% { transform: translateY(0) scale(1); opacity: .92; }
    50% { transform: translateY(-4px) scale(1.035); opacity: 1; }
}

@keyframes hsPreloaderOut {
    to { opacity: 0; visibility: hidden; }
}

@keyframes hsRevealUp {
    from { opacity: 0; transform: translateY(34px); filter: blur(8px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes hsRevealLeft {
    from { opacity: 0; transform: translateX(-34px); filter: blur(8px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes hsRevealRight {
    from { opacity: 0; transform: translateX(34px); filter: blur(8px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.hs-page-shell {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: var(--hs-white);
    border-radius: 0;
    box-shadow: none;
}

.hs-preloader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(155, 203, 61, .18), transparent 28%),
        linear-gradient(135deg, #00371f, #00512e 52%, #087a33);
    pointer-events: none;
    animation: hsPreloaderOut .45s ease 1.65s forwards;
}

.hs-loader-seen .hs-preloader,
.hs-preloader.is-hidden {
    display: none;
}

.hs-preloader-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 190px;
    height: 118px;
}

.hs-preloader-mark::before {
    position: absolute;
    width: 96px;
    height: 96px;
    border: 2px solid rgba(255, 255, 255, .18);
    border-top-color: var(--hs-lime);
    border-right-color: rgba(255, 255, 255, .55);
    border-radius: 50%;
    content: "";
    animation: hsLoaderSpin 1s linear infinite;
}

.hs-preloader-mark img {
    position: relative;
    width: 150px;
    max-height: 58px;
    object-fit: contain;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .96);
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .22);
    animation: hsLoaderLogo 1.35s ease-in-out infinite;
}

.hs-preloader-mark span {
    position: absolute;
    bottom: 0;
    width: 112px;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, .22);
    border-radius: 999px;
}

.hs-preloader-mark span::after {
    display: block;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--hs-lime), transparent);
    border-radius: inherit;
    content: "";
    animation: shimmer 1.15s linear infinite;
}

.hs-container {
    width: min(100% - 84px, 1060px);
    margin: 0 auto;
}

.hs-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    min-height: 86px;
    padding: 0 max(32px, calc((100vw - 1180px) / 2 + 48px));
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    transition: min-height .25s ease, box-shadow .25s ease;
}

.hs-header.scrolled {
    min-height: 74px;
    box-shadow: 0 14px 34px rgba(0, 50, 28, .11);
}

.hs-logo img {
    width: 240px;
    height: auto;
}

.hs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    color: #133d2d;
    font-size: 13px;
    font-weight: 600;
}

.hs-nav a {
    position: relative;
    padding: 12px 0;
    transition: color .2s ease;
}

.hs-nav a::after {
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 2px;
    background: var(--hs-lime);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.hs-nav a:hover,
.hs-nav a:focus-visible {
    color: var(--hs-green);
}

.hs-nav a:hover::after,
.hs-nav a:focus-visible::after {
    transform: scaleX(1);
}

.hs-phone,
.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.hs-phone {
    padding: 0 24px;
    color: #fff;
    background: var(--hs-green);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.hs-phone:hover,
.hs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 55, 28, .2);
}

.hs-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--hs-soft);
}

.hs-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--hs-dark);
}

.hs-main {
    background: #fff;
}

.hs-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    min-height: 490px;
    color: #fff;
    background: #022513;
    /*background:*/
    /*    linear-gradient(107deg, rgba(0, 50, 28, .99) 0%, rgba(0, 56, 31, .96) 45%, rgba(0, 58, 31, .38) 53%, rgba(0, 58, 31, .02) 76%),*/
    /*    radial-gradient(circle at 34% 42%, rgba(20, 125, 61, .24), transparent 34%),*/
    /*    var(--hs-dark);*/
}

.hs-hero-copy {
    z-index: 2;
    align-self: center;
    padding: 52px 20px 54px max(40px, calc((100vw - 1180px) / 2 + 64px));
}

.hs-hero h1 {
    max-width: 610px;
    margin: 0 0 22px;
    font-size: clamp(36px, 5.1vw, 56px);
    line-height: 1.08;
    font-weight: 800;
}

.hs-hero h1::first-letter {
    color: inherit;
}

.hs-hero h1 {
    text-wrap: balance;
}

.hs-hero h1 span {
    color: var(--hs-lime);
}

.hs-hero h1 + p {
    max-width: 485px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.65;
}

.hs-hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 640px;
    margin-bottom: 30px;
}

.hs-hero-benefits span {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 9px;
    align-items: center;
}

.hs-hero-benefits i {
    grid-row: span 2;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--hs-lime);
    border: 1px solid rgba(155, 203, 61, .58);
    border-radius: 8px;
    animation: hsPulseRing 2.4s ease-out infinite;
}

.hs-hero-benefits strong {
    position: relative;
    font-size: 12px;
}

.hs-hero-benefits strong::after {
    display: inline-block;
    width: 1px;
    height: 1em;
    margin-left: 4px;
    background: var(--hs-lime);
    content: "";
    vertical-align: -2px;
    animation: hsTypeCaret 1s steps(1, end) infinite;
}

.hs-hero-benefits small {
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
}

.hs-hero-media {
    position: absolute;
    inset: 0 0 0 auto;
    width: 52%;
    overflow: hidden;
}

.hs-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: saturate(.95) contrast(.98);
    animation: hsSoftDrift 9s ease-in-out infinite;
    transform-origin: center;
    transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s ease;
}

.hs-hero-media img.is-active {
    opacity: 1;
    animation: hsSoftDrift 9s ease-in-out infinite, hsImageFade 5.4s ease-in-out infinite;
}

.hs-btn {
    padding: 0 30px;
    font-size: 14px;
}

.hs-btn-lime {
    color: #fff;
    background: linear-gradient(135deg, #0c7c3f, #12a246, var(--hs-lime), #087a33);
    background-size: 240% 240%;
    animation: hsGradientFlow 5s ease infinite;
}

.hs-btn-dark {
    color: #fff;
    background: var(--hs-green);
}

.hs-section {
    padding: 72px max(32px, calc((100vw - 1180px) / 2 + 56px));
}

.hs-about {
    display: grid;
    grid-template-columns: .92fr 1fr;
    gap: 42px;
    align-items: center;
}

.hs-about-media img,
.hs-diff-media img {
    width: 100%;
    border-radius: 14px;
    box-shadow: var(--hs-shadow);
    animation: float 7s ease-in-out infinite;
}

.hs-eyebrow {
    margin: 0 0 15px;
    color: var(--hs-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hs-about h2,
.hs-section-intro h2,
.hs-diff-copy h2,
.hs-clients h2,
.hs-cta h2,
.hy-title {
    margin: 0;
    color: var(--hs-text);
    font-size: clamp(30px, 3.4vw, 43px);
    line-height: 1.14;
    font-weight: 800;
}

.hs-about-copy > p:not(.hs-eyebrow),
.hs-section-intro > p,
.hs-diff-copy > p,
.hs-cta p,
.hy-text {
    margin: 18px 0 0;
    color: var(--hs-muted);
    line-height: 1.72;
}

.hs-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.hs-metrics span {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: start;
    animation: hsFloatPulse 3.8s ease-in-out infinite;
}

.hs-metrics span:nth-child(2) { animation-delay: .18s; }
.hs-metrics span:nth-child(3) { animation-delay: .36s; }
.hs-metrics span:nth-child(4) { animation-delay: .54s; }

.hs-metrics i {
    grid-row: span 2;
    color: var(--hs-green);
    font-size: 22px;
}

.hs-metrics strong {
    color: var(--hs-green);
    font-size: 28px;
    line-height: 1;
}

.hs-metrics small {
    color: #233c31;
    font-size: 12px;
    line-height: 1.35;
}

.hs-services,
.hs-blog {
    display: grid;
    grid-template-columns: minmax(270px, .48fr) minmax(0, 1.52fr);
    gap: 34px;
    align-items: center;
    background: var(--hs-soft);
}

.hs-section-intro h2 {
    max-width: 420px;
    font-size: clamp(28px, 2.6vw, 38px);
}

.hs-section-intro > p {
    max-width: 440px;
    font-size: 13px;
}

.hs-section-intro .hs-btn {
    margin-top: 24px;
}

.hs-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(132px, 1fr));
    gap: 14px;
}

.hs-service-card,
.hs-post-card {
    min-height: 226px;
    padding: 25px 21px;
    background: #fff;
    border: 1px solid var(--hs-line);
    border-radius: 12px;
    box-shadow: 0 14px 26px rgba(9, 48, 30, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    animation: hsCardRise .72s ease both;
}

.hs-service-card:nth-child(2),
.hs-post-card:nth-child(2) { animation-delay: .08s; }

.hs-service-card:nth-child(3),
.hs-post-card:nth-child(3) { animation-delay: .16s; }

.hs-service-card:nth-child(4) { animation-delay: .24s; }

.hs-service-card:hover,
.hs-post-card:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 122, 51, .28);
    box-shadow: 0 22px 34px rgba(9, 48, 30, .14);
}

.hs-service-card > i {
    color: var(--hs-green);
    font-size: 32px;
    animation: hsIconBob 3.2s ease-in-out infinite;
}

.hs-service-card h3,
.hs-post-card h3 {
    margin: 22px 0 12px;
    color: var(--hs-text);
    font-size: 16px;
    line-height: 1.25;
}

.hs-service-card p,
.hs-post-card p {
    margin: 0;
    color: var(--hs-muted);
    font-size: 11.5px;
    line-height: 1.62;
}

.hs-service-card a,
.hs-post-card a,
.hy-read {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    color: var(--hs-green);
    font-size: 12px;
    font-weight: 800;
}

.hs-service-card a span,
.hs-post-card a span {
    transition: transform .2s ease;
}

.hs-service-card a:hover span,
.hs-post-card a:hover span {
    transform: translateX(4px);
}

.hs-differentials {
    display: grid;
    grid-template-columns: .68fr 1.32fr;
    gap: 54px;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 17% 34%, rgba(18, 130, 62, .34), transparent 32%),
        linear-gradient(135deg, #00331f 0%, #004327 100%);
}

.hs-diff-copy h2,
.hs-cta h2 {
    color: #fff;
}

.hs-diff-copy .hs-eyebrow,
.hs-cta .hs-eyebrow {
    color: #d9f3aa;
}

.hs-diff-copy p,
.hs-cta p {
    color: rgba(255, 255, 255, .86);
}

.hs-diff-copy ul {
    display: grid;
    gap: 17px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.hs-diff-copy li {
    position: relative;
    padding-left: 38px;
    font-weight: 500;
}

.hs-diff-copy li::before {
    position: absolute;
    left: 0;
    top: -2px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: var(--hs-dark);
    background: var(--hs-lime);
    border-radius: 50%;
    content: "✓";
    font-weight: 800;
}

.hs-clients {
    display: grid;
    grid-template-columns: minmax(250px, .34fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 52px;
}

.hs-clients h2 {
    max-width: 400px;
    font-size: clamp(28px, 2.7vw, 36px);
}

.hs-client-controls {
    justify-self: end;
    display: flex;
    gap: 13px;
}

.hs-client-controls button {
    width: 38px;
    height: 38px;
    border: 1px solid #0b4d32;
    border-radius: 50%;
    color: var(--hs-text);
    background: #fff;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.hs-client-controls button:hover {
    color: #fff;
    background: var(--hs-green);
    transform: translateY(-2px);
}

.hs-client-window {
    overflow: hidden;
    width: 100%;
}

.hs-client-track {
    display: flex;
    gap: 30px;
    align-items: center;
    transition: transform .32s ease;
}

.hs-client-track.is-marquee {
    width: max-content;
    animation: hsClientMarquee 28s linear infinite;
}

.hs-client-window:hover .hs-client-track.is-marquee {
    animation-play-state: paused;
}

@keyframes hsClientMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.hs-client-logo {
    flex: 0 0 132px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #0d5637;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    border-radius: 10px;
    transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}

.hs-client-page-track {
    gap: 22px;
}

.hs-client-logo:hover {
    transform: translateY(-5px) scale(1.04);
    filter: saturate(1.08);
    box-shadow: 0 14px 24px rgba(9, 48, 30, .1);
}

.hs-client-logo img {
    width: min(112px, 82%);
    height: 68px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

.hs-client-logo b {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin: 0 auto;
    border-radius: 9px;
    color: #fff;
    font-size: 13px;
}

.hs-client-blue b { background: #276bd8; }
.hs-client-gold b { background: #f3b411; }
.hs-client-mint b { background: #70b7a4; }
.hs-client-navy b { background: #395eac; }
.hs-client-green b { background: #2f9b50; }

.hs-client-page-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 20px;
}

.hs-client-page-logo {
    flex: 0 0 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 128px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--hs-line);
    border-radius: 12px;
    box-shadow: 0 14px 26px rgba(9, 48, 30, .07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.hs-client-page-logo:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 22px 34px rgba(9, 48, 30, .15);
}

.hs-client-page-logo img {
    width: min(128px, 82%);
    height: 76px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

.hs-blog {
    align-items: start;
}

.hs-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.hs-post-card {
    overflow: hidden;
    min-height: 0;
    padding: 0;
}

.hs-post-card img {
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
}

.hs-post-card div {
    padding: 18px 20px 22px;
}

.hs-post-card span {
    color: #47665a;
    font-size: 11px;
    font-weight: 600;
}

.hs-post-card h3 {
    margin-top: 13px;
}

.hs-cta {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 46px;
    align-items: center;
    padding: 72px max(32px, calc((100vw - 1180px) / 2 + 70px));
    background:
        linear-gradient(90deg, rgba(0, 60, 35, .96), rgba(8, 122, 51, .96)),
        var(--hs-green);
}

.hs-contact-card {
    display: grid;
    gap: 12px;
    padding: 30px 34px;
    background: rgba(255, 255, 255, .94);
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(0, 32, 16, .24);
}

.hs-cta .hs-contact-card {
    gap: 22px;
}

.hs-contact-card-head {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 14px;
    align-items: center;
    margin-bottom: 8px;
}

.hs-contact-card-head i {
    grid-row: span 2;
    color: var(--hs-green);
    font-size: 38px;
    animation: hsIconBob 3s ease-in-out infinite;
}

.hs-contact-card-head span {
    color: #44564e;
    font-size: 13px;
}

.hs-contact-card-head strong {
    color: var(--hs-text);
    font-size: 24px;
}

.hs-contact-card input,
.hs-contact-card textarea,
.hy-form input,
.hy-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--hs-line);
    border-radius: 8px;
    color: var(--hs-text);
    font: inherit;
    outline: none;
}

.hs-contact-card textarea,
.hy-form textarea {
    min-height: 78px;
    padding-top: 12px;
    resize: vertical;
}

.hs-contact-card input:focus,
.hs-contact-card textarea:focus,
.hy-form input:focus,
.hy-form textarea:focus {
    border-color: var(--hs-green);
    box-shadow: 0 0 0 3px rgba(8, 122, 51, .1);
}

.hy-contact-info {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.hy-contact-line {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    color: var(--hs-text);
}

.hy-contact-line i {
    margin-top: 4px;
    color: var(--hs-green);
    text-align: center;
}

.hy-contact-line strong {
    display: block;
    line-height: 1.45;
}

.hs-contact-card .hs-btn {
    width: 100%;
    margin-top: 4px;
}

.hs-footer {
    color: rgba(255, 255, 255, .86);
    background:
        radial-gradient(circle at 10% 20%, rgba(19, 134, 63, .26), transparent 28%),
        linear-gradient(135deg, #00331f 0%, #002719 100%);
}

.hs-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .72fr .9fr 1.25fr;
    gap: 54px;
    padding-top: 58px;
    padding-bottom: 42px;
}

.hs-footer-brand img {
    width: 80px;
}

.hs-footer-brand p {
    max-width: 255px;
    margin: 28px 0 23px;
    line-height: 1.68;
}

.hs-socials {
    display: flex;
    gap: 11px;
}

.hs-socials a {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    transition: background .2s ease, transform .2s ease;
}

.hs-socials a:hover {
    color: var(--hs-dark);
    background: var(--hs-lime);
    transform: translateY(-2px);
}

.hs-footer-col {
    display: grid;
    align-content: start;
    gap: 10px;
}

.hs-footer-col h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 16px;
}

.hs-footer-col a,
.hs-footer-col span {
    color: rgba(255, 255, 255, .86);
    line-height: 1.45;
    transition: color .2s ease;
}

.hs-footer-col a:hover {
    color: var(--hs-lime);
}

.hs-contact-list a,
.hs-contact-list span {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 8px;
}

.hs-contact-list i {
    color: var(--hs-lime);
}

.hs-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    font-size: 12px;
}

.hs-footer-bottom span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hs-footer-bottom img {
    width: 76px;
}

.hs-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: #fff;
    background: linear-gradient(135deg, #12a246, #25d366, #9bcb3d);
    background-size: 180% 180%;
    border-radius: 50%;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .24);
    font-size: 26px;
    animation: hsGradientFlow 5s ease infinite, hsWhatsappPulse 2.1s ease-out infinite;
}

.hs-reveal-ready .hs-reveal:not(.show),
.hs-reveal-ready .hy-reveal:not(.show) {
    opacity: 0;
    transform: translateY(26px);
    animation: none;
}

.hs-hero .hs-reveal,
.hs-hero .hy-reveal {
    opacity: 1;
    transform: translateY(0);
}

.hs-reveal,
.hy-reveal {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp .72s ease both;
    transition: opacity .62s ease, transform .62s ease;
}

.hs-reveal.show,
.hy-reveal.show {
    opacity: 1;
    transform: translateY(0);
    animation: hsRevealUp .78s cubic-bezier(.2, .74, .22, 1) both;
}

.hs-about-media.show,
.hs-diff-copy.show,
.hy-detail-media.show {
    animation-name: hsRevealLeft;
}

.hs-about-copy.show,
.hs-diff-media.show,
.hy-detail-content.show {
    animation-name: hsRevealRight;
}

.hs-service-grid.show .hs-service-card,
.hs-post-grid.show .hs-post-card,
.hy-news-grid.show .hy-news-card {
    animation: hsCardRise .72s ease both;
}

.hs-service-grid.show .hs-service-card:nth-child(2),
.hs-post-grid.show .hs-post-card:nth-child(2),
.hy-news-grid.show .hy-news-card:nth-child(2) { animation-delay: .08s; }

.hs-service-grid.show .hs-service-card:nth-child(3),
.hs-post-grid.show .hs-post-card:nth-child(3),
.hy-news-grid.show .hy-news-card:nth-child(3) { animation-delay: .16s; }

.hs-service-grid.show .hs-service-card:nth-child(4) { animation-delay: .24s; }

.hs-reveal:nth-child(2),
.hy-reveal:nth-child(2) {
    animation-delay: .08s;
}

.hs-reveal:nth-child(3),
.hy-reveal:nth-child(3) {
    animation-delay: .16s;
}

.hy-page-hero,
.hy-section {
    padding: 74px max(32px, calc((100vw - 1180px) / 2 + 56px));
}

.hy-page-hero {
    background: var(--hs-soft);
}

.hy-container {
    width: min(100%, 1040px);
    margin: 0 auto;
}

.hy-detail-grid,
.hy-contact-grid,
.hy-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.hy-detail-media img,
.hy-news-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--hs-shadow);
}

.hy-rich-text {
    color: var(--hs-muted);
    line-height: 1.75;
}

.hy-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hy-news-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--hs-line);
    border-radius: 12px;
    box-shadow: 0 14px 26px rgba(9, 48, 30, .07);
}

.hy-news-card img {
    aspect-ratio: 1.55;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.hy-news-body {
    padding: 20px;
}

.hy-news-body h3 {
    margin: 8px 0;
    color: var(--hs-text);
}

.hy-date {
    color: var(--hs-green);
    font-size: 12px;
    font-weight: 700;
}

.hy-form {
    display: grid;
    gap: 12px;
    padding: 28px;
    background: var(--hs-soft);
    border-radius: 12px;
}

@media (max-width: 1060px) {
    .hs-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
        padding: 0 28px;
    }

    .hs-menu-toggle {
        display: block;
    }

    .hs-nav {
        position: absolute;
        left: 24px;
        right: 24px;
        top: calc(100% - 6px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 20px;
        background: #fff;
        border: 1px solid var(--hs-line);
        border-radius: 12px;
        box-shadow: var(--hs-shadow);
    }

    .hs-nav.open {
        display: flex;
    }

    .hs-phone {
        display: none;
    }

    .hs-hero {
        grid-template-columns: 1fr;
    }

    .hs-hero-copy {
        padding: 54px 42px;
    }

    .hs-hero-media {
        position: relative;
        width: 100%;
        min-height: 320px;
    }

    .hs-differentials,
    .hs-cta,
    .hs-about,
    .hs-footer-grid {
        grid-template-columns: 1fr;
    }

    .hy-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hs-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hs-clients {
        grid-template-columns: minmax(220px, .35fr) minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .hs-page-shell {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .hs-header {
        min-height: 72px;
        padding: 0 18px;
    }

    .hs-logo img {
        width: 120px;
    }

    .hs-hero-copy,
    .hs-section,
    .hs-cta,
    .hy-page-hero,
    .hy-section {
        padding: 42px 22px;
    }

    .hs-hero h1 {
        font-size: 36px;
    }

    .hs-hero-benefits,
    .hs-service-grid,
    .hs-post-grid,
    .hs-metrics,
    .hs-services,
    .hs-blog,
    .hs-clients,
    .hy-detail-grid,
    .hy-contact-grid,
    .hy-news-grid {
        grid-template-columns: 1fr;
    }

    .hs-contact-card {
        padding: 24px 20px;
    }

    .hs-client-track {
        gap: 18px;
    }

    .hs-client-logo {
        flex-basis: 138px;
    }

    .hs-client-controls {
        grid-column: auto;
        justify-self: start;
    }

    .hs-client-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hs-container {
        width: min(100% - 40px, 1060px);
    }

    .hs-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
