* {
    box-sizing: border-box;
}

:root {
    --font-brand: "Futura Bk BT", "Futura Md BT", Futura, "Trebuchet MS", Arial, sans-serif;
    --header-h: 120px;
    --radius-lg: 34px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --shadow-soft: 0 24px 80px rgba(0, 0, 0, .20);
    --shadow-card: 0 18px 44px rgba(0, 0, 0, .12);
    --line-light: rgba(255, 255, 255, .22);
    --line-dark: rgba(0, 102, 51, .16);
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    font-family: var(--font-brand);
    background: var(--k-green-dark);
    color: var(--k-white);
    overflow-x: hidden;
}

body::selection {
    background: var(--k-lime);
    color: var(--k-green-dark);
}

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

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

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

.page-backdrop {
    position: fixed;
    inset: 0;
    z-index: -3;
    background-image: linear-gradient(180deg, rgba(7, 26, 13, .18), rgba(7, 26, 13, .94)), var(--page-bg);
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.page-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(215, 239, 114, .14), transparent 26rem),
        radial-gradient(circle at 16% 82%, rgba(102, 51, 0, .30), transparent 30rem),
        linear-gradient(90deg, rgba(5, 15, 8, .68), rgba(5, 15, 8, .18) 48%, rgba(5, 15, 8, .74));
}

.site-header {
    position: fixed;
    /* top: 28px;
    left: 50%; */
    z-index: 20;
    width: 100%;
    min-height: var(--header-h);
    display: grid;
    grid-template-columns: 230px 1fr 190px;
    align-items: center;
    gap: 24px;
    padding: 18px 120px;
    /* border: 1px solid rgba(255, 255, 255, .18); */
    /* border-radius: 999px; */
    color: var(--k-green-dark);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(3px);
    /* transform: translateX(-50%); */
}

.site-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.site-logo img {
    width: 198px;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--k-white);
    font-size: 14px;
    line-height: 1;
    transition: .22s ease;
}

.site-nav a i {
    font-size: 12px;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: var(--k-green-dark);
    color: var(--k-white);
}

.header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 17px;
    border-radius: 999px;
    background: var(--k-green);
    color: var(--k-white);
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    transition: .22s ease;
}

.header-contact:hover {
    background: var(--k-brown);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--k-green-dark);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--k-white);
    transition: .2s ease;
}

.menu-toggle span + span {
    margin-top: 6px;
}

.menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.site-main {
    width: min(1180px, calc(100% - 40px));
    min-height: calc(100vh - 110px);
    margin: 0 auto;
    padding-top: 148px;
}

.hero {
    min-height: calc(100vh - 176px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: end;
    gap: 40px;
    padding: 84px 0 68px;
}

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

.hero-split {
    align-items: center;
}

.hero-content {
    max-width: 820px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--k-lime);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
}

.eyebrow.dark {
    border-color: var(--line-dark);
    background: rgba(0, 102, 51, .06);
    color: var(--k-green);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 960px;
    margin-bottom: 24px;
    color: var(--k-white);
    font-size: clamp(48px, 8vw, 104px);
    line-height: .92;
    letter-spacing: -.075em;
    font-weight: 700;
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.35;
}

.hero-text {
    max-width: 680px;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 16px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition: .22s ease;
}

.button-primary {
    background: var(--k-lime);
    color: var(--k-green-dark);
}

.button-primary:hover {
    background: var(--k-white);
    transform: translateY(-2px);
}

.button-light {
    border-color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .08);
    color: var(--k-white);
}

.button-light:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
}

.hero-panel,
.statement-card {
    align-self: end;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius-lg);
    background: rgba(248, 243, 222, .90);
    color: var(--k-green-dark);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.hero-panel span,
.statement-card span {
    color: var(--k-green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-panel strong,
.statement-card strong {
    margin: 14px 0 14px;
    font-size: 42px;
    line-height: .95;
    letter-spacing: -.055em;
}

.hero-panel p,
.statement-card p {
    margin-bottom: 0;
    color: rgba(7, 26, 13, .68);
    line-height: 1.5;
}

.content-band {
    margin: 0 0 54px;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: var(--radius-lg);
    background: rgba(248, 243, 222, .94);
    color: var(--k-green-dark);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.compact-band {
    margin-top: -20px;
}

.band-title {
    display: flex;
    align-items: flex-start;
    margin-bottom: 34px;
    align-content: center;
    justify-items: center;
    flex-direction: column;
}

.band-title h2 {
    max-width: 600px;
    margin: 0;
    font-size: clamp(30px, 4vw, 58px);
    line-height: .98;
    letter-spacing: -.06em;
}

.service-grid,
.card-page-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mini-card {
    display: block;
    min-height: 210px;
    padding: 26px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: #fffaf0;
    transition: .22s ease;
}

.mini-card:nth-child(even) {
    background: rgba(215, 239, 114, .28);
}

.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.mini-card-link {
    cursor: pointer;
}

.mini-card-link:hover h3 {
    color: var(--k-green);
}

.mini-card i,
.feature-row i,
.profile-body > i {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 50%;
    background: var(--k-green);
    color: var(--k-cream);
}

.mini-card h3,
.feature-row h3,
.profile-body h2 {
    margin-bottom: 10px;
    font-size: 22px;
    letter-spacing: -.035em;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-row {
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: #fffaf0;
}

.page-intro {
    padding: 96px 0 46px;
}

.page-intro h1 {
    margin-bottom: 26px;
}

.page-intro p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, .78);
    font-size: 20px;
    line-height: 1.5;
}

.card-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 62px;
}

.profile-card {
    overflow: hidden;
    min-height: 560px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius-lg);
    background: rgba(248, 243, 222, .94);
    color: var(--k-green-dark);
    box-shadow: var(--shadow-soft);
}

.profile-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.profile-body {
    padding: 28px;
}

.profile-body > span {
    display: block;
    margin-bottom: 10px;
    color: var(--k-green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.profile-body > i {
    margin-top: -56px;
    border: 6px solid rgba(248, 243, 222, .94);
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 22px;
}

.profile-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--k-green);
    color: var(--k-white);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: .2s ease;
}

.profile-contact:hover {
    background: var(--k-brown);
    transform: translateY(-2px);
}

.profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 102, 51, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .52);
    color: var(--k-green-dark);
    font-size: 12px;
    font-weight: 800;
    transition: .2s ease;
}

.profile-links a:hover {
    border-color: var(--k-green);
    background: var(--k-lime);
    transform: translateY(-2px);
}

.profile-links i {
    color: var(--k-green);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    justify-content: flex-start;
}

.filter-bar button {
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--k-white);
    cursor: pointer;
    transition: .22s ease;
}

.filter-bar button:hover,
.filter-bar button.is-active {
    border-color: var(--k-lime);
    background: var(--k-lime);
    color: var(--k-green-dark);
}

.portfolio-sections {
    display: grid;
    gap: 26px;
    padding-bottom: 62px;
}

.portfolio-section {
    display: grid;
    gap: 22px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: var(--radius-lg);
    background: rgba(248, 243, 222, .94);
    color: var(--k-green-dark);
    box-shadow: var(--shadow-soft);
}

.portfolio-section.is-hidden {
    display: none;
}

.section-heading {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
}

.section-heading span {
    color: var(--k-green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(30px, 4vw, 54px);
    line-height: .94;
    letter-spacing: -.055em;
    color: var(--k-green-dark)
}

.section-heading p {
    color: var(--k-green);
    font-size: 13px;
    font-weight: 900;
}

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

.portfolio-card {
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: #fffaf0;
    transition: .22s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.portfolio-card button {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.portfolio-card img {
    width: 100%;
    aspect-ratio: 1.25 / .88;
    object-fit: cover;
}

.portfolio-card div {
    padding: 22px;
}

.portfolio-card span {
    display: block;
    margin-bottom: 9px;
    color: var(--k-green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portfolio-card h3 {
    margin-bottom: 8px;
    font-size: 23px;
    letter-spacing: -.035em;
}

.portfolio-card p {
    margin-bottom: 0;
    color: rgba(7, 26, 13, .66);
    line-height: 1.58;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    place-items: center;
    padding: 30px;
    background: rgba(3, 9, 5, .84);
    backdrop-filter: blur(18px);
}

.lightbox.is-open {
    display: grid;
}

.lightbox button {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--k-lime);
    color: var(--k-green-dark);
    cursor: pointer;
    transition: .2s ease;
}

.lightbox button:hover {
    background: var(--k-white);
    transform: translateY(-2px);
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-nav:hover {
    transform: translateY(calc(-50% - 2px));
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav.is-hidden {
    display: none;
}

.lightbox-figure {
    margin: 0;
    text-align: center;
}

.lightbox img {
    max-width: min(1050px, 82vw);
    max-height: 76vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.lightbox figcaption {
    max-width: 900px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, .86);
    text-align: center;
}

.contact-layout {
    min-height: calc(100vh - 200px);
    display: grid;
    grid-template-columns: 1fr 470px;
    gap: 36px;
    align-items: center;
    padding: 70px 0 62px;
}

.contact-copy h1 {
    max-width: 720px;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 640px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .78);
    font-size: 20px;
    line-height: 1.56;
}

.contact-cards {
    display: grid;
    max-width: 660px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-cards a,
.contact-cards div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .85);
}

.contact-cards i {
    display: grid;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--k-lime);
    color: var(--k-green-dark);
}

.contact-cards span {
    line-height: 1.35;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: var(--radius-lg);
    background: rgba(248, 243, 222, .96);
    color: var(--k-green-dark);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.contact-form h2,
.contact-form .full,
.contact-form .form-status,
.contact-form button {
    grid-column: 1 / -1;
}

.contact-form h2 {
    margin-bottom: 8px;
    font-size: 34px;
    letter-spacing: -.045em;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    color: rgba(7, 26, 13, .72);
    font-size: 13px;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 102, 51, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .70);
    color: var(--k-green-dark);
    outline: none;
    transition: .2s ease;
}

.contact-form input,
.contact-form select {
    height: 52px;
    padding: 0 16px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 128px;
    padding: 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--k-green);
    box-shadow: 0 0 0 4px rgba(0, 102, 51, .10);
}

.contact-form button {
    width: 100%;
    border: 0;
}

.hidden-field {
    position: absolute;
    left: -10000px;
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
}

.form-status {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-weight: 800;
}

.form-status.success {
    background: rgba(0, 102, 51, .12);
    color: var(--k-green);
}

.form-status.error {
    background: rgba(102, 51, 0, .12);
    color: var(--k-brown);
}

.site-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 120px;
    color: var(--k-green-dark);
    backdrop-filter: blur(3px);
}

.site-footer img {
    width: 154px;
    max-height: 42px;
    object-fit: contain;
    object-position: left center;
}

.site-footer p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--k-green-dark);
    color: var(--k-white);
    transition: .22s ease;
}

.footer-links a:hover {
    background: var(--k-green);
    transform: translateY(-2px);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal .8s cubic-bezier(.16, 1, .3, 1) forwards;
}

.delay-1 {
    animation-delay: .10s;
}

.delay-2 {
    animation-delay: .20s;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1060px) {
    .site-header {
        grid-template-columns: 1fr auto auto;
    }

    .site-nav {
        position: fixed;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 28px;
        background: rgba(248, 243, 222, .98);
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        justify-content: center;
        padding: 16px;
    }

    .menu-toggle {
        display: grid;
    }

    .hero,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .statement-card {
        min-height: 260px;
        align-self: stretch;
    }

    .service-grid,
    .feature-list,
    .card-page-grid,
    .portfolio-grid,
    .contact-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading,
    .band-title {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 760px) {
    :root {
        --header-h: 76px;
    }

    .site-header {
        top: 14px;
        width: calc(100% - 24px);
        grid-template-columns: 1fr auto;
        gap: 10px;
        min-height: 76px;
        padding: 14px;
        border-radius: 28px;
    }

    .site-logo img {
        width: 170px;
    }

    .header-contact {
        display: none;
    }

    .site-main {
        width: calc(100% - 24px);
        padding-top: 110px;
    }

    .hero {
        min-height: auto;
        padding: 52px 0 36px;
    }

    h1 {
        font-size: clamp(42px, 15vw, 72px);
    }

    .hero-panel strong,
    .statement-card strong {
        font-size: 34px;
    }

    .content-band,
    .portfolio-section,
    .contact-form {
        padding: 24px;
        border-radius: 26px;
    }

    .service-grid,
    .feature-list,
    .card-page-grid,
    .portfolio-grid,
    .contact-cards,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .page-intro {
        padding-top: 50px;
    }

    .portfolio-section {
        margin-bottom: 0;
    }

    .site-footer {
        width: calc(100% - 24px);
        align-items: flex-start;
        flex-direction: column;
        border-radius: 28px;
    }
}

@media (max-width: 680px) {
    .lightbox {
        padding: 76px 18px 24px;
    }

    .lightbox-close {
        top: 18px;
        right: 18px;
    }

    .lightbox-prev {
        left: 14px;
    }

    .lightbox-next {
        right: 14px;
    }

    .lightbox button {
        width: 44px;
        height: 44px;
    }

    .lightbox img {
        max-width: 78vw;
    }
}


/* Ajustes de alinhamento e responsividade mobile */
.profile-links a {
    min-height: 48px;
    padding: 0 18px;
    line-height: 1;
    white-space: nowrap;
}

.profile-links a i,
.profile-contact i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 1;
}

.profile-links a span {
    display: inline-flex;
    align-items: center;
    margin: 0;
    color: inherit;
    line-height: 1;
    letter-spacing: .06em;
}

@media (max-width: 1060px) {
    :root {
        --header-h: 88px;
    }

    .site-header {
        top: 16px;
        left: 16px;
        right: 16px;
        width: auto;
        min-height: var(--header-h);
        grid-template-columns: minmax(0, 1fr) auto auto;
        padding: 12px 14px;
        border: 1px solid rgba(255, 255, 255, .42);
        border-radius: 30px;
        background: rgba(248, 243, 222, .94);
        color: var(--k-green-dark);
    }

    .site-logo img {
        width: 176px;
        max-height: 50px;
    }

    .site-nav {
        top: calc(var(--header-h) + 28px);
        left: 16px;
        right: 16px;
        padding: 10px;
        border: 1px solid rgba(0, 102, 51, .12);
        border-radius: 28px;
        background: rgba(248, 243, 222, .98);
        box-shadow: var(--shadow-soft);
    }

    .site-nav a {
        justify-content: flex-start;
        min-height: 52px;
        padding: 15px 16px;
        color: var(--k-green-dark);
        font-size: 15px;
    }

    .site-nav a i {
        display: inline-grid;
        width: 28px;
        height: 28px;
        place-items: center;
        border-radius: 50%;
        background: rgba(0, 102, 51, .10);
        color: var(--k-green);
        font-size: 12px;
    }

    .site-nav a:hover,
    .site-nav a.is-active {
        background: var(--k-green);
        color: var(--k-white);
    }

    .site-nav a:hover i,
    .site-nav a.is-active i {
        background: rgba(255, 255, 255, .18);
        color: var(--k-white);
    }

    .header-contact {
        min-height: 52px;
        padding: 0 16px;
    }

    .menu-toggle {
        width: 52px;
        height: 52px;
        background: var(--k-green);
    }

    .site-main {
        padding-top: 132px;
    }
}

@media (max-width: 760px) {
    :root {
        --header-h: 74px;
        --radius-lg: 26px;
        --radius-md: 20px;
        --radius-sm: 14px;
    }

    html {
        scroll-padding-top: 96px;
    }

    body {
        background: var(--k-green-dark);
    }

    .page-backdrop {
        background-position: center top;
    }

    .page-backdrop::after {
        background:
            radial-gradient(circle at 74% 10%, rgba(215, 239, 114, .16), transparent 16rem),
            linear-gradient(180deg, rgba(5, 15, 8, .40), rgba(5, 15, 8, .78) 48%, rgba(5, 15, 8, .94));
    }

    .site-header {
        top: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        min-height: var(--header-h);
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        padding: 10px;
        border-radius: 24px;
        background: rgba(248, 243, 222, .96);
    }

    .site-logo img {
        width: 146px;
        max-height: 44px;
    }

    .site-nav {
        top: 94px;
        left: 10px;
        right: 10px;
        max-height: calc(100vh - 112px);
        overflow: auto;
        padding: 8px;
        border-radius: 22px;
    }

    .site-nav a {
        min-height: 50px;
        padding: 13px 14px;
        border-radius: 18px;
    }

    .menu-toggle {
        width: 50px;
        height: 50px;
    }

    .site-main {
        width: calc(100% - 24px);
        min-height: auto;
        padding-top: 104px;
    }

    .hero {
        min-height: auto;
        padding: 38px 0 28px;
        gap: 24px;
    }

    .hero-content {
        max-width: 100%;
    }

    .eyebrow {
        gap: 8px;
        margin-bottom: 16px;
        padding: 8px 11px;
        font-size: 12px;
    }

    h1 {
        margin-bottom: 18px;
        font-size: clamp(40px, 13vw, 66px);
        line-height: .96;
        letter-spacing: -.055em;
    }

    .hero-lead,
    .page-intro p:not(.eyebrow),
    .contact-copy > p:not(.eyebrow) {
        margin-bottom: 24px;
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .button {
        width: 100%;
        min-height: 52px;
        padding: 14px 18px;
        font-size: 14px;
    }

    .content-band,
    .portfolio-section,
    .contact-form,
    .hero-panel,
    .statement-card,
    .profile-card {
        border-radius: var(--radius-lg);
    }

    .content-band,
    .portfolio-section,
    .contact-form {
        padding: 20px;
    }

    .compact-band {
        margin-top: 0;
    }

    .band-title {
        margin-bottom: 22px;
    }

    .band-title h2,
    .section-heading h2,
    .contact-form h2 {
        font-size: clamp(28px, 8vw, 42px);
        line-height: 1;
        letter-spacing: -.045em;
    }

    .service-grid,
    .feature-list,
    .card-page-grid,
    .portfolio-grid,
    .contact-cards,
    .contact-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mini-card,
    .feature-row {
        min-height: auto;
        padding: 20px;
    }

    .mini-card i,
    .feature-row i,
    .profile-body > i {
        width: 42px;
        height: 42px;
        margin-bottom: 16px;
    }

    .mini-card h3,
    .feature-row h3,
    .profile-body h2 {
        font-size: 21px;
    }

    .page-intro {
        padding: 34px 0 26px;
    }

    .card-page-grid {
        padding-bottom: 36px;
    }

    .profile-card {
        min-height: auto;
    }

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

    .profile-body {
        padding: 22px;
    }

    .profile-body > span {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .profile-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        margin-top: 18px;
    }

    .profile-contact,
    .profile-links a {
        width: 100%;
        min-height: 50px;
        justify-content: center;
        padding: 0 18px;
    }

    .profile-links {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .filter-bar {
        gap: 8px;
        margin-top: 22px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }

    .filter-bar button {
        flex: 0 0 auto;
        min-height: 44px;
        padding: 11px 15px;
        white-space: nowrap;
    }

    .portfolio-sections {
        gap: 18px;
        padding-bottom: 36px;
    }

    .portfolio-card div {
        padding: 18px;
    }

    .portfolio-card h3 {
        font-size: 21px;
    }

    .contact-layout {
        min-height: auto;
        gap: 24px;
        padding: 34px 0 36px;
    }

    .contact-cards a,
    .contact-cards div {
        min-height: 66px;
        padding: 14px;
        border-radius: 18px;
    }

    .contact-form {
        gap: 12px;
    }

    .contact-form input,
    .contact-form select {
        height: 50px;
        padding: 0 14px;
    }

    .contact-form textarea {
        min-height: 112px;
        padding: 14px;
    }

    .site-footer {
        width: calc(100% - 24px);
        margin: 0 auto 14px;
        padding: 20px;
        align-items: stretch;
        flex-direction: column;
        border: 1px solid rgba(255, 255, 255, .30);
        border-radius: 24px;
        background: rgba(248, 243, 222, .94);
        color: var(--k-green-dark);
    }

    .site-footer p {
        color: rgba(7, 26, 13, .68);
        line-height: 1.35;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .footer-links a {
        width: 100%;
        height: 46px;
        border-radius: 16px;
        background: var(--k-green);
    }
}

@media (max-width: 420px) {
    .site-logo img {
        width: 128px;
    }

    h1 {
        font-size: clamp(36px, 14vw, 54px);
    }

    .content-band,
    .portfolio-section,
    .contact-form,
    .profile-body {
        padding: 18px;
    }

    .mini-card,
    .feature-row {
        padding: 18px;
    }

    .contact-cards span {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 680px) {
    .lightbox {
        padding: 74px 14px 94px;
    }

    .lightbox img {
        max-width: 100%;
        max-height: 62vh;
    }

    .lightbox figcaption {
        max-width: 100%;
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.45;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
    }

    .lightbox-nav {
        top: auto;
        bottom: 22px;
        transform: none;
    }

    .lightbox-nav:hover {
        transform: translateY(-2px);
    }

    .lightbox-prev {
        left: calc(50% - 58px);
    }

    .lightbox-next {
        right: calc(50% - 58px);
    }

    .lightbox button {
        width: 48px;
        height: 48px;
    }
}

/* Ajustes finais: mobile sem card no header/footer, menu corrigido e equipe alinhada */
.menu-toggle {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border: 0;
    box-shadow: none;
    color: var(--k-white);
}

.menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%) translateY(-5px);
    transform-origin: center;
}

.menu-toggle span + span {
    margin: 0;
    transform: translate(-50%, -50%) translateY(5px);
}

.menu-toggle.is-open span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.profile-role-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: -56px 0 18px;
}

.profile-role-line i {
    display: inline-grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    margin: 0;
    border: 6px solid rgba(248, 243, 222, .94);
    border-radius: 50%;
    background: var(--k-green);
    color: var(--k-cream);
}

.profile-role-line span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin: 0;
    color: var(--k-green);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.profile-body > .profile-role-line + h2 {
    clear: both;
}

.profile-links a {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.profile-links a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 16px;
    line-height: 1;
}

.profile-links a span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

@media (max-width: 1060px) {
    .site-header {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        min-height: var(--header-h);
        padding: 14px 20px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--k-white);
        box-shadow: none;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .site-logo img {
        filter: drop-shadow(0 2px 16px rgba(0, 0, 0, .28));
    }

    .menu-toggle {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: var(--k-green);
        color: var(--k-white);
        box-shadow: 0 16px 38px rgba(0, 0, 0, .20);
    }

    .site-nav {
        top: var(--header-h);
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - var(--header-h));
        overflow: auto;
        padding: 12px 20px 18px;
        border: 0;
        border-radius: 0;
        background: rgba(7, 26, 13, .72);
        color: var(--k-white);
        box-shadow: none;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .site-nav a {
        color: var(--k-white);
    }

    .site-nav a i {
        background: rgba(255, 255, 255, .12);
        color: var(--k-lime);
    }

    .header-contact {
        background: rgba(0, 102, 51, .82);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .site-main {
        padding-top: calc(var(--header-h) + 36px);
    }

    .site-footer {
        width: 100%;
        margin: 0;
        padding: 28px 20px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--k-white);
        box-shadow: none;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .site-footer p {
        color: rgba(255, 255, 255, .72);
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        min-height: var(--header-h);
        padding: 10px 16px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .site-logo img {
        width: 148px;
        max-height: 46px;
    }

    .menu-toggle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--k-green);
        color: var(--k-white);
    }

    .menu-toggle span {
        width: 21px;
        height: 2px;
    }

    .site-nav {
        top: var(--header-h);
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - var(--header-h));
        padding: 10px 16px 18px;
        border: 0;
        border-radius: 0;
        background: rgba(7, 26, 13, .78);
        box-shadow: none;
    }

    .site-nav a {
        min-height: 52px;
        padding: 14px 12px;
        border-radius: 16px;
    }

    .site-main {
        padding-top: calc(var(--header-h) + 28px);
    }

    .profile-role-line {
        gap: 10px;
        margin: -48px 0 16px;
    }

    .profile-role-line i {
        width: 44px;
        height: 44px;
        border-width: 5px;
    }

    .profile-role-line span {
        min-height: 32px;
        font-size: 12px;
    }

    .profile-links a {
        display: inline-flex;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .site-footer {
        width: 100%;
        margin: 0;
        padding: 28px 16px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--k-white);
        box-shadow: none;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .site-footer p {
        color: rgba(255, 255, 255, .72);
    }

    .footer-links a {
        background: rgba(0, 102, 51, .88);
    }
}

@media (max-width: 420px) {
    .site-logo img {
        width: 134px;
    }

    .site-header {
        padding-inline: 12px;
    }

    .site-nav {
        padding-inline: 12px;
    }
}

/* Produtos */
.products-intro .filter-bar,
.product-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.product-filter-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border: 1px solid rgba(0, 102, 51, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: var(--k-green-dark);
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.product-filter-bar a:hover,
.product-filter-bar a.is-active {
    background: var(--k-green);
    color: var(--k-white);
    transform: translateY(-1px);
}

.products-page,
.products-list-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 80px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .86);
    padding: clamp(24px, 4vw, 46px);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.product-heading {
    margin-bottom: 26px;
}

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

.product-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: 240px 1fr;
    min-height: 430px;
    border: 1px solid rgba(0, 102, 51, .12);
    border-radius: 28px;
    background: var(--k-white);
    color: var(--k-green-dark);
    text-decoration: none;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 51, .36);
    box-shadow: var(--shadow-card);
}

.product-card-image {
    overflow: hidden;
    background: rgba(0, 102, 51, .06);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.04);
}

.product-card-body {
    padding: 22px;
}

.product-card-body span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--k-green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-card-body h3 {
    margin: 0 0 10px;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.06;
}

.product-card-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: rgba(7, 26, 13, .68);
    line-height: 1.55;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.products-more-row {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.products-empty-state {
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 260px;
    padding: 28px;
    border: 1px dashed rgba(0, 102, 51, .24);
    border-radius: 28px;
    background: rgba(248, 243, 222, .45);
    color: var(--k-green-dark);
    text-align: center;
}

.products-empty-state.small {
    min-height: 180px;
}

.products-empty-state i {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--k-green);
    color: var(--k-white);
}

.products-empty-state h2,
.products-empty-state p {
    margin: 0;
}

.product-list-table {
    display: grid;
    gap: 10px;
}

.product-list-row {
    display: grid;
    grid-template-columns: 150px minmax(160px, .7fr) 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 8px 18px;
    border: 1px solid rgba(0, 102, 51, .10);
    border-radius: 20px;
    background: rgba(255, 255, 255, .76);
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.product-list-row:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 102, 51, .30);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
}

.product-list-id {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0, 102, 51, .10);
    color: var(--k-green);
    font-size: 12px;
    font-weight: 900;
    word-break: break-word;
}

.product-list-row strong {
    color: var(--k-green-dark);
    line-height: 1.25;
}

.product-list-row p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: rgba(7, 26, 13, .68);
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-list-whatsapp {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 102, 51, .10);
    color: var(--k-green);
    font-size: 18px;
}

.product-list-row:hover .product-list-whatsapp {
    background: var(--k-green);
    color: var(--k-white);
}

.compact-actions {
    justify-content: center;
}

@media (max-width: 960px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-list-row {
        grid-template-columns: 130px 1fr auto;
    }

    .product-list-row p {
        grid-column: 1 / -1;
    }

    .product-list-whatsapp {
        grid-column: 3;
        grid-row: 1 / 3;
    }
}

@media (max-width: 760px) {
    .products-page,
    .products-list-page {
        width: min(100% - 24px, 520px);
        padding: 18px;
        border-radius: 24px;
    }

    .product-filter-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .product-filter-bar a {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        grid-template-rows: 220px auto;
        min-height: auto;
        border-radius: 22px;
    }

    .product-card-body {
        padding: 18px;
    }

    .product-list-row {
        grid-template-columns: 1fr auto;
        gap: 8px 12px;
        padding: 14px;
    }

    .product-list-row strong,
    .product-list-row p {
        grid-column: 1 / -1;
    }

    .product-list-whatsapp {
        grid-column: 2;
        grid-row: 1;
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}

.product-list-tools {
    display: flex;
    justify-content: flex-end;
    margin: -8px 0 22px;
}

.product-search-field {
    width: min(100%, 460px);
    display: grid;
    gap: 8px;
}

.product-search-field span {
    color: var(--k-green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-search-field input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(0, 102, 51, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    color: var(--k-green-dark);
    outline: 0;
    padding: 14px 18px;
    font: inherit;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

.product-search-field input:focus {
    border-color: rgba(0, 102, 51, .42);
    box-shadow: 0 0 0 4px rgba(0, 102, 51, .10), 0 10px 28px rgba(0, 0, 0, .06);
}

.product-list-no-results {
    margin-top: 16px;
}

@media (max-width: 760px) {
    .product-list-tools {
        justify-content: stretch;
    }

    .product-search-field {
        width: 100%;
    }
}
