@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --nav-bg: rgba(255, 255, 255, 0.78);
    --nav-bg-solid: #ffffff;
    --nav-text: #102014;
    --nav-text-soft: #5f6d61;
    --nav-border: rgba(16, 32, 20, 0.08);
    --nav-primary: #a47b67;
    --nav-primary-dark: #8f6754;
    --nav-shadow: 0 12px 40px rgba(16, 32, 20, 0.08);
    --nav-radius: 18px;
    --nav-container: 1600px;
    --primary: #A47B67;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
    color: #fff;
}


#smooth-scroll-container {
    width: 100%;
    overflow-x: hidden;
}

body {
    color: #020c00;
    background-color: rgb(246, 255, 246);
    font-family: "Montserrat", sans-serif;
    padding-top: 102px;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 14px 0;
    transition: all 0.25s ease;
}

.site-header.scrolled {
    padding: 10px 0;
}

.nav-container {
    width: min(var(--nav-container), calc(100% - 24px));
    margin: 0 auto;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 18px;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--nav-border);
    border-radius: 999px;
    box-shadow: var(--nav-shadow);
}

.site-header.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.92);
}

.brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-text strong {
    color: var(--nav-text);
    font-size: 0.98rem;
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap;
}

.brand-text span {
    color: var(--nav-text-soft);
    font-size: 0.73rem;
    line-height: 1.2;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex: 1;
    min-width: 0;
}

.desktop-nav a {
    position: relative;
    color: var(--nav-text-soft);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--nav-primary);
    transition: width 0.25s ease;
}

.desktop-nav a:hover {
    color: var(--nav-text);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--nav-primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 10px 24px rgba(164, 123, 103, 0.25);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--nav-primary-dark);
    transform: translateY(-1px);
}

.menu-toggle,
.menu-close {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle {
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(16, 32, 20, 0.05);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--nav-text);
    border-radius: 999px;
    transition: all 0.25s ease;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 16, 10, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 1001;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(380px, 100%);
    height: 100dvh;
    background: var(--nav-bg-solid);
    box-shadow: -18px 0 50px rgba(16, 32, 20, 0.15);
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1002;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
}

.brand-mobile {
    flex: 1;
}

.menu-close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 2rem;
    line-height: 1;
    color: var(--nav-text);
    transition: background 0.2s ease;
}

.menu-close:hover {
    background: rgba(16, 32, 20, 0.05);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    color: var(--nav-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 12px;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.mobile-nav a:hover {
    background: rgba(164, 123, 103, 0.08);
    color: var(--nav-primary);
}

.mobile-cta {
    margin-top: 22px;
    width: 100%;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {

    .desktop-nav,
    .desktop-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-container {
        min-height: 70px;
        border-radius: 22px;
    }

    .brand-text span {
        display: none;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 10px 0;
    }

    .nav-container {
        width: calc(100% - 16px);
        padding: 0 14px;
        min-height: 64px;
        gap: 10px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 0.88rem;
        max-width: 170px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-menu {
        padding: 18px 16px;
    }
}

/* HERO */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 30px 0 110px;
    background:
        linear-gradient(180deg, #f8fbf6 0%, #eef5ea 100%);
}

.hero-container {
    width: min(1600px, calc(100% - 24px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
    min-height: calc(100vh - 120px);
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    line-height: 0.98;
    font-weight: 700;
    color: #102014;
    max-width: 760px;
    margin-bottom: 22px;
}

.hero-content h1 span {
    color: #a47b67;
}

.hero-description {
    max-width: 640px;
    font-size: 1.06rem;
    line-height: 1.85;
    color: #5d695f;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-btn {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.hero-btn-primary {
    background: #a47b67;
    color: #fff;
    box-shadow: 0 14px 30px rgba(164, 123, 103, 0.22);
}

.hero-btn-primary:hover {
    background: #8f6754;
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: #102014;
    border: 1px solid rgba(16, 32, 20, 0.08);
}

.hero-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(164, 123, 103, 0.28);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 760px;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 12px 35px rgba(16, 32, 20, 0.06);
    border-radius: 20px;
    padding: 20px 18px;
}

.hero-highlight strong {
    display: block;
    font-size: 1.1rem;
    color: #102014;
    margin-bottom: 6px;
}

.hero-highlight span {
    display: block;
    color: #667267;
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 20px 55px rgba(16, 32, 20, 0.10);
    border-radius: 28px;
    padding: 18px;
    position: relative;
}


.hero-video-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
}

.hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-shape-1 {
    width: 320px;
    height: 320px;
    background: rgba(164, 123, 103, 0.14);
    top: 40px;
    left: -80px;
}

.hero-bg-shape-2 {
    width: 260px;
    height: 260px;
    background: rgba(126, 165, 108, 0.14);
    right: -60px;
    bottom: 40px;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 20px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-description {
        max-width: 720px;
    }

    .hero-highlights {
        max-width: 100%;
    }

    .hero-media {
        width: 100%;
    }

    .hero-video-card {
        max-width: 700px;
    }

    .hero-video-wrapper {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 34px 0 70px;
    }

    .hero-container {
        width: calc(100% - 20px);
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .hero-highlight {
        text-align: left;
    }

    .hero-video-card {
        padding: 14px;
        border-radius: 22px;
    }

    .hero-video-wrapper {
        border-radius: 18px;
    }
}

/* ABOUT */
.about-project-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #eef5ea 0%, #f8fbf6 100%);
}

.about-project-container {
    width: min(1600px, calc(100% - 24px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.about-project-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-project-image-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 20px 55px rgba(16, 32, 20, 0.08);
}

.about-project-image {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    display: block;
}

.about-project-floating-card {
    position: absolute;
    right: -18px;
    bottom: 28px;
    max-width: 240px;
    padding: 18px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 18px 40px rgba(16, 32, 20, 0.10);
}

.about-project-floating-card strong {
    display: block;
    font-size: 1rem;
    color: #102014;
    margin-bottom: 6px;
}

.about-project-floating-card span {
    display: block;
    color: #667267;
    font-size: 0.9rem;
    line-height: 1.55;
}

.about-project-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-project-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(164, 123, 103, 0.12);
    color: #a47b67;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(164, 123, 103, 0.18);
}

.about-project-content h2 {
    font-size: clamp(2rem, 4vw, 3.9rem);
    line-height: 1.08;
    font-weight: 700;
    color: #102014;
    margin-bottom: 22px;
    max-width: 760px;
}

.about-project-content h2 span {
    color: #a47b67;
}

.about-project-description {
    font-size: 1.03rem;
    line-height: 1.85;
    color: #5d695f;
    margin-bottom: 16px;
    max-width: 700px;
}

.about-project-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    margin-top: 18px;
}

.about-project-feature {
    padding: 18px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 12px 35px rgba(16, 32, 20, 0.05);
}

.about-project-feature strong {
    display: block;
    color: #102014;
    font-size: 1rem;
    margin-bottom: 6px;
}

.about-project-feature span {
    display: block;
    color: #667267;
    font-size: 0.95rem;
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .about-project-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-project-content {
        align-items: center;
        text-align: center;
    }

    .about-project-image-card {
        max-width: 620px;
    }

    .about-project-floating-card {
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 768px) {
    .about-project-section {
        padding: 80px 0;
    }

    .about-project-container {
        width: calc(100% - 20px);
    }

    .about-project-content h2 {
        font-size: 2.3rem;
    }

    .about-project-description {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .about-project-image-card {
        padding: 14px;
        border-radius: 22px;
    }

    .about-project-image {
        border-radius: 18px;
    }

    .about-project-floating-card {
        position: static;
        max-width: 100%;
        margin-top: 14px;
    }

    .about-project-feature {
        text-align: left;
    }
}

/* ARVORE DA VIDA */
.tree-life-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #f8fbf6 0%, #eef5ea 100%);
}

.tree-life-container {
    width: min(1600px, calc(100% - 24px));
    margin: 0 auto;
}

.tree-life-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.tree-life-media {
    display: flex;
    justify-content: center;
    align-items: center;
}


.tree-life-image {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.tree-life-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tree-life-content h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.04;
    font-weight: 700;
    color: #102014;
    margin-bottom: 18px;
    max-width: 760px;
}

.tree-life-content h2 span {
    color: #a47b67;
}

.tree-life-description {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #5d695f;
    margin-bottom: 24px;
    max-width: 760px;
}

.tree-life-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
}

.tree-life-point {
    padding: 18px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 12px 35px rgba(16, 32, 20, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tree-life-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(16, 32, 20, 0.08);
    border-color: rgba(164, 123, 103, 0.22);
}

.tree-life-point strong {
    display: block;
    color: #102014;
    font-size: 1rem;
    margin-bottom: 6px;
}

.tree-life-point span {
    display: block;
    color: #667267;
    font-size: 0.95rem;
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .tree-life-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tree-life-content {
        align-items: center;
        text-align: center;
    }

    .tree-life-points {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tree-life-section {
        padding: 80px 0;
    }

    .tree-life-container {
        width: calc(100% - 20px);
    }

    .tree-life-content h2 {
        font-size: 2.4rem;
    }

    .tree-life-description {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .tree-life-points {
        grid-template-columns: 1fr;
    }

    .tree-life-image-card {
        padding: 14px;
        border-radius: 22px;
    }

    .tree-life-image {
        border-radius: 18px;
    }
}

/* VIDEOS */
.videos-showcase-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #eef5ea 0%, #f8fbf6 100%);
}

.videos-showcase-container {
    width: min(1600px, calc(100% - 24px));
    margin: 0 auto;
}

.videos-showcase-heading {
    max-width: 860px;
    margin: 0 auto 36px;
    text-align: center;
}

.videos-showcase-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(164, 123, 103, 0.12);
    color: #a47b67;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(164, 123, 103, 0.18);
}

.videos-showcase-heading h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.04;
    font-weight: 700;
    color: #102014;
    margin-bottom: 18px;
}

.videos-showcase-heading h2 span {
    color: #a47b67;
}

.videos-showcase-heading p {
    font-size: 1.03rem;
    line-height: 1.85;
    color: #5d695f;
    max-width: 760px;
    margin: 0 auto;
}

.videos-shorts-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.short-video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-width: 400px;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 20px 55px rgba(16, 32, 20, 0.08);
    padding: 10px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.short-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(16, 32, 20, 0.12);
    border-color: rgba(164, 123, 103, 0.22);
}

.short-video-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 18px;
    background: #000;
}

.videos-showcase-footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.videos-showcase-button {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.25s ease;
    background: #a47b67;
    color: #fff;
    box-shadow: 0 14px 30px rgba(164, 123, 103, 0.22);
}

.videos-showcase-button:hover {
    background: #8f6754;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .videos-shorts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .videos-shorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .videos-showcase-section {
        padding: 80px 0;
    }

    .videos-showcase-container {
        width: calc(100% - 20px);
    }

    .videos-showcase-heading p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .short-video-card {
        border-radius: 20px;
        padding: 8px;
    }

    .short-video-card iframe {
        border-radius: 14px;
    }
}

@media (max-width: 560px) {
    .videos-shorts-grid {
        grid-template-columns: 1fr;
    }
}

/* IMPACT */
.impact-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #f8fbf6 0%, #eef5ea 100%);
}

.impact-container {
    width: min(1600px, calc(100% - 24px));
    margin: 0 auto;
}

.impact-grid-v2 {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.impact-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(164, 123, 103, 0.12);
    color: #a47b67;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(164, 123, 103, 0.18);
}

.impact-copy h2 {
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.02;
    font-weight: 700;
    color: #102014;
    margin-bottom: 22px;
    max-width: 760px;
}

.impact-copy h2 span {
    color: #a47b67;
}

.impact-description {
    font-size: 1.03rem;
    line-height: 1.85;
    color: #5d695f;
    margin-bottom: 28px;
    max-width: 700px;
}

.impact-cta {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.25s ease;
    background: #a47b67;
    color: #fff;
    box-shadow: 0 14px 30px rgba(164, 123, 103, 0.22);
}

.impact-cta:hover {
    background: #8f6754;
    transform: translateY(-2px);
}

.impact-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.impact-panel {
    min-height: 170px;
    padding: 24px 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 2px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 20px 55px rgba(16, 32, 20, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.impact-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(16, 32, 20, 0.12);
    border-color: rgba(164, 123, 103, 0.22);
}

.impact-panel strong {
    display: block;
    font-size: 1.18rem;
    line-height: 1.2;
    color: #102014;
    margin-bottom: 10px;
}

.impact-panel p {
    color: #667267;
    font-size: 0.96rem;
    line-height: 1.7;
}

.impact-panel-main {
    grid-column: 1 / -1;
    min-height: 285px;
    text-decoration: none;
    background:
        radial-gradient(circle at top right, rgba(164, 123, 103, 0.15), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(164, 123, 103, 0.10));
    position: relative;
    overflow: hidden;
    animation: impactFloat 5s ease-in-out infinite;
}

.impact-panel-main:hover {
    transform: translateY(-8px);
}

.impact-panel-main::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(164, 123, 103, 0.08);
    filter: blur(10px);
}

.impact-panel-main-glow {
    position: absolute;
    top: -30px;
    right: 50px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: rgba(164, 123, 103, 0.10);
    filter: blur(28px);
    animation: glowPulse 4s ease-in-out infinite;
}

.impact-panel-main-top,
.impact-panel-main-bottom {
    position: relative;
    z-index: 2;
}

.impact-panel-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(164, 123, 103, 0.12);
    color: #a47b67;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.impact-panel-main strong {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    color: #b18369;
    margin-bottom: 10px;
}

.impact-panel-main p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #102014;
    margin: 0;
}

.impact-panel-main-bottom {
    margin-top: auto;
    max-width: 440px;
}

.impact-panel-main-bottom span {
    display: block;
    color: #5d695f;
    font-size: 0.98rem;
    line-height: 1.7;
}

.impact-panel-wide {
    grid-column: 1 / -1;
    min-height: 150px;
    background: rgba(255, 255, 255, 0.9);
}

.impact-panel-wide strong {
    color: #a47b67;
}

.impact-panel-icon {
    position: relative;
    padding-top: 22px;
}

.impact-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(164, 123, 103, 0.12);
    color: #a47b67;
    margin-bottom: 16px;
    transition: transform 0.28s ease, background 0.28s ease;
}

.impact-icon svg {
    width: 22px;
    height: 22px;
}

.impact-panel:hover .impact-icon {
    transform: scale(1.08);
    background: rgba(164, 123, 103, 0.18);
}

.impact-panel-wide {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: start;
    gap: 16px;
}

.impact-panel-wide .impact-icon {
    margin-bottom: 0;
}

@keyframes impactFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.08);
    }
}

@media (max-width: 1024px) {
    .impact-grid-v2 {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .impact-copy {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 80px 0;
    }

    .impact-container {
        width: calc(100% - 20px);
    }

    .impact-board {
        grid-template-columns: 1fr;
    }

    .impact-panel-main,
    .impact-panel-wide {
        grid-column: auto;
    }

    .impact-copy h2 {
        font-size: 2.5rem;
    }

    .impact-description {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .impact-cta {
        width: 100%;
    }

    .impact-panel-main {
        min-height: 240px;
        animation: none;
    }

    .impact-panel-main strong {
        font-size: 3.2rem;
    }

    .impact-panel-wide {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* PODCAST */
.podcast-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #f8fbf6 0%, #eef5ea 100%);
}

.podcast-container {
    width: min(1600px, calc(100% - 24px));
    margin: 0 auto;
}

.podcast-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 42px;
    align-items: center;
}

.podcast-player-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 20px 55px rgba(16, 32, 20, 0.08);
    border-radius: 28px;
    padding: 20px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.podcast-player-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(16, 32, 20, 0.12);
    border-color: rgba(164, 123, 103, 0.22);
}

.podcast-player-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 14px;
}

.podcast-player-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(164, 123, 103, 0.12);
    color: #a47b67;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.podcast-embed-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
}

.podcast-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.podcast-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(164, 123, 103, 0.12);
    color: #a47b67;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(164, 123, 103, 0.18);
}

.podcast-copy h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.04;
    font-weight: 700;
    color: #102014;
    margin-bottom: 18px;
    max-width: 680px;
}

.podcast-copy h2 span {
    color: #a47b67;
}

.podcast-description {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #5d695f;
    margin-bottom: 24px;
    max-width: 620px;
}

.podcast-mini-infos {
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: 620px;
    margin-bottom: 26px;
}

.podcast-mini-info {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 12px 35px rgba(16, 32, 20, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.podcast-mini-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(16, 32, 20, 0.08);
    border-color: rgba(164, 123, 103, 0.22);
}

.podcast-mini-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(164, 123, 103, 0.12);
    color: #a47b67;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-mini-icon svg {
    width: 24px;
    height: 24px;
}

.podcast-mini-info strong {
    display: block;
    color: #102014;
    font-size: 1rem;
    margin-bottom: 6px;
}

.podcast-mini-info span {
    display: block;
    color: #667267;
    font-size: 0.95rem;
    line-height: 1.65;
}

.podcast-button {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.25s ease;
    background: #a47b67;
    color: #fff;
    box-shadow: 0 14px 30px rgba(164, 123, 103, 0.22);
}

.podcast-button:hover {
    background: #8f6754;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .podcast-copy {
        align-items: center;
        text-align: center;
    }

    .podcast-description,
    .podcast-mini-infos {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .podcast-section {
        padding: 80px 0;
    }

    .podcast-container {
        width: calc(100% - 20px);
    }

    .podcast-copy h2 {
        font-size: 2.4rem;
    }

    .podcast-description {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .podcast-button {
        width: 100%;
    }

    .podcast-player-card {
        padding: 14px;
        border-radius: 22px;
    }

    .podcast-embed-wrapper {
        border-radius: 18px;
    }

    .podcast-mini-info {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* WORKS */
.works-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #eef5ea 0%, #f8fbf6 100%);
}

.works-container {
    width: min(1600px, calc(100% - 24px));
    margin: 0 auto;
}

.works-heading {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.works-heading h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.04;
    font-weight: 700;
    color: #102014;
    margin-bottom: 18px;
}

.works-heading h2 span {
    color: #a47b67;
}

.works-heading p {
    font-size: 1.03rem;
    line-height: 1.85;
    color: #5d695f;
    max-width: 760px;
    margin: 0 auto;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.work-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 20px 55px rgba(16, 32, 20, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(16, 32, 20, 0.12);
    border-color: rgba(164, 123, 103, 0.22);
}

.work-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 6;
    overflow: hidden;
    background: #f3f3f3;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.work-card:hover .work-card-image img {
    transform: scale(1.04);
}

.work-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px 20px;
    flex: 1;
}

.work-card-content h3 {
    font-size: 1.05rem;
    line-height: 1.25;
    color: #102014;
    margin-bottom: 8px;
}

.work-subtitle {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #667267;
    margin-bottom: 16px;
}

.work-card-link {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.25s ease;
    background: rgba(164, 123, 103, 0.12);
    color: #a47b67;
    border: 1px solid rgba(164, 123, 103, 0.18);
    margin-bottom: 10px;
}

.work-card-link:hover {
    background: #a47b67;
    color: #fff;
    transform: translateY(-2px);
}

.work-card-tip {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #8a948b;
}

.works-featured-article {
    margin-top: 56px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 20px 55px rgba(16, 32, 20, 0.08);
    border-radius: 28px;
    padding: 24px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.works-featured-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(16, 32, 20, 0.12);
    border-color: rgba(164, 123, 103, 0.22);
}

.works-featured-article-content {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
    align-items: center;
}

.works-featured-article-image {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #f3f3f3;
    box-shadow: 0 12px 30px rgba(16, 32, 20, 0.08);
}

.works-featured-article-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.works-featured-article-text h3 {
    font-size: 1rem;
    color: #a47b67;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.works-featured-article-text h4 {
    font-size: 1.8rem;
    line-height: 1.15;
    color: #102014;
    margin-bottom: 12px;
}

.works-featured-article-text p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #667267;
    max-width: 760px;
    margin-bottom: 18px;
}

.works-featured-article-button {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.25s ease;
    background: #a47b67;
    color: #fff;
    box-shadow: 0 14px 30px rgba(164, 123, 103, 0.22);
    white-space: nowrap;
}

.works-featured-article-button:hover {
    background: #8f6754;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .works-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .works-featured-article-content {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 1024px) {
    .works-grid {
        grid-template-columns: 1fr 1fr;
    }

    .works-featured-article-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .works-section {
        padding: 80px 0;
    }

    .works-container {
        width: calc(100% - 20px);
    }

    .works-heading p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .works-featured-article {
        margin-top: 42px;
        padding: 18px;
        border-radius: 22px;
    }

    .works-featured-article-text h4 {
        font-size: 1.45rem;
    }

    .works-featured-article-button {
        width: 100%;
    }
}

/* EM BRVE */
.coming-soon-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #eef5ea 0%, #f8fbf6 100%);
}

.coming-soon-container {
    width: min(1600px, calc(100% - 24px));
    margin: 0 auto;
}

.coming-soon-heading {
    max-width: 860px;
    margin: 0 auto 40px;
    text-align: center;
}

.coming-soon-heading h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.04;
    font-weight: 700;
    color: #102014;
    margin-bottom: 18px;
}

.coming-soon-heading h2 span {
    color: #a47b67;
}

.coming-soon-heading p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #5d695f;
    max-width: 760px;
    margin: 0 auto;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.coming-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 20px 55px rgba(16, 32, 20, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.coming-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(16, 32, 20, 0.12);
    border-color: rgba(164, 123, 103, 0.22);
}

.coming-card-image {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    background: #f3f3f3;
    overflow: hidden;
}

.coming-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coming-card-content {
    padding: 18px 18px 20px;
    text-align: center;
}

.coming-card-content h3 {
    font-size: 1.08rem;
    line-height: 1.2;
    color: #102014;
    margin-bottom: 8px;
}

.coming-card-content p {
    font-size: 0.94rem;
    line-height: 1.65;
    color: #667267;
}

@media (max-width: 1200px) {
    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .coming-soon-section {
        padding: 80px 0;
    }

    .coming-soon-container {
        width: calc(100% - 20px);
    }

    .coming-soon-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-heading p {
        font-size: 0.98rem;
        line-height: 1.75;
    }
}

.coming-benefits-btn {
    margin-top: 12px;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(164, 123, 103, 0.22);
    background: rgba(164, 123, 103, 0.10);
    color: #a47b67;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.coming-benefits-btn:hover {
    background: #a47b67;
    color: #fff;
    transform: translateY(-2px);
}

.benefits-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.benefits-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.benefits-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
}

.benefits-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: min(92vw, 980px);
    max-height: 90vh;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
    animation: benefitsModalIn 0.25s ease;
}

.benefits-modal-content img {
    width: 100%;
    max-height: calc(90vh - 28px);
    object-fit: contain;
    display: block;
    border-radius: 18px;
}

.benefits-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #102014;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, background 0.2s ease;
}

.benefits-modal-close:hover {
    transform: scale(1.06);
    background: #a47b67;
}

@keyframes benefitsModalIn {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 10px)) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

body.modal-open {
    overflow: hidden;
}

/* CONTACT */
.contact-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #f8fbf6 0%, #eef5ea 100%);
}

.contact-container {
    width: min(1600px, calc(100% - 24px));
    margin: 0 auto;
}

.contact-card {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 32, 20, 0.08);
    box-shadow: 0 20px 55px rgba(16, 32, 20, 0.08);
    border-radius: 32px;
    padding: 36px;
}

.contact-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
}

.contact-heading h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.04;
    font-weight: 700;
    color: #102014;
    margin-bottom: 16px;
}

.contact-heading p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #5d695f;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.94rem;
    font-weight: 700;
    color: #102014;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(16, 32, 20, 0.10);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 0.96rem;
    color: #102014;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7a867d;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(164, 123, 103, 0.45);
    box-shadow: 0 0 0 4px rgba(164, 123, 103, 0.10);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.container-contact-submit {
    display: flex;
    justify-content: center;
}

.contact-submit-button {
    min-height: 54px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    background: #a47b67;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 14px 30px rgba(164, 123, 103, 0.22);
}

.contact-submit-button:hover {
    background: #8f6754;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-container {
        width: calc(100% - 20px);
    }

    .contact-card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-heading p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .contact-submit-button {
        width: 100%;
    }
}

/* QRCODES */
.qr-section {
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: 110px;
    padding-inline: 20px;

}

.qr-title {
    font: 600 1.125rem/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin: 0 0 12px;
}

.qr-grid {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
}

.qr {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
}

.qr-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: auto;
}

@media (max-width: 380px) {
    .qr-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 10px;
    }
}

@media (min-width: 1200px) {
    .qr-grid {
        grid-template-columns: repeat(9, 1fr);
    }

}


/* FOOTER */
.site-footer {
    padding: 28px 0 22px;
    background: var(--nav-bg);
    border-top: 1px solid rgba(16, 32, 20, 0.06);
}

.site-footer-container {
    width: min(1600px, calc(100% - 24px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.site-footer-main p {
    font-size: 0.92rem;
    color: #5d695f;
    line-height: 1.6;
}

.site-footer-dev {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}


.site-footer-dev p {
    font-size: 0.72rem;
    color: #8e988f;
}

.site-footer-dev a {
    font-size: 0.72rem;
    color: #8e988f;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
    opacity: 0.9;
    font-weight: 700;
}

.site-footer-dev a:hover {
    color: #a47b67;
    opacity: 1;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 24px 0 18px;
    }

    .site-footer-container {
        width: calc(100% - 20px);
    }

    .site-footer-main p {
        font-size: 0.86rem;
    }

    .site-footer-dev a {
        font-size: 0.68rem;
    }
}