        :root {
            --green-deep: #0f3d2e;
            --green-mid: #a9d039;
            --green-accent: #a9d039;
            --green-light: #e8f5ef;
            --cream: #fafaf7;
            --warm-white: #ffffff;
            --text-dark: #a9d039;
            --text-mid: #3d5c4a;
            --text-light: #7a9989;
            --border: #d4e8dc;
            --gold: #c8a96e;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Rubik', sans-serif;
            background-color: var(--cream);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* ---- LAYOUT ---- */
        .section-wrapper {
            max-width: 1360px;
            margin: 0 auto;
            padding: 80px 48px;
            display: grid;
            grid-template-columns: 1fr 480px;
            gap: 64px;
            align-items: start;
        }

        /* ---- COLUNA ESQUERDA ---- */
        .col-left {}

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 28px;
        }

        .eyebrow-line {
            width: 32px;
            height: 2px;
            background: var(--green-accent);
        }

        .eyebrow span {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--green-accent);
        }

        .main-title {
            font-family: 'Rubik', serif;
            font-size: 56px;
            font-weight: 400;
            line-height: 1.08;
            letter-spacing: -0.5px;
            color: var(--green-deep);
            margin-bottom: 16px;
        }

        .main-title em {
            font-style: italic;
            color: var(--green-accent);
        }

        .subtitle {
            font-size: 16px;
            color: var(--text-mid);
            font-weight: 300;
            line-height: 1.65;
            max-width: 480px;
            margin-bottom: 52px;
        }

        /* ---- CARDS ---- */
        .cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .card {
            background: var(--warm-white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px 26px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: box-shadow 0.25s ease, transform 0.25s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 3px;
            background: var(--card-color, var(--green-accent));
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .card:hover {
            box-shadow: 0 8px 32px rgba(15, 61, 46, 0.08);
            transform: translateY(-2px);
        }

        .card:hover::before { opacity: 1; }

        .card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            background: var(--card-bg, var(--green-light));
            flex-shrink: 0;
        }

        .card-tag {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--card-color, var(--green-accent));
        }

        .card h3 {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.35;
            color: var(--green-deep);
        }

        .card p {
            font-size: 13.5px;
            color: var(--text-light);
            line-height: 1.6;
            font-weight: 300;
        }

        .card-footer {
            margin-top: auto;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .card-price small {
            display: block;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-light);
            margin-bottom: 2px;
        }

        .card-price strong {
            font-size: 17px;
            font-weight: 600;
            color: var(--green-deep);
        }

        .card-arrow {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 14px;
            transition: all 0.2s;
            cursor: pointer;
        }

        .card:hover .card-arrow {
            background: var(--green-deep);
            border-color: var(--green-deep);
            color: white;
        }

        /* ---- COLUNA DIREITA ---- */
        .col-right {
            position: sticky;
            top: 40px;
        }

        .visual-block {
            position: relative;
        }

        .image-main {
            width: 100%;
            aspect-ratio: 3/4;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
        }

        .image-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .image-main::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(15,61,46,0.55) 100%);
        }

        .image-overlay-text {
            position: absolute;
            bottom: 28px;
            left: 28px;
            right: 28px;
            z-index: 2;
            color: white;
        }

        .image-overlay-text p {
            font-size: 13px;
            opacity: 0.7;
            margin-bottom: 6px;
            font-weight: 300;
        }

        .image-overlay-text strong {
            font-family: 'Rubik', serif;
            font-size: 22px;
            line-height: 1.2;
            font-weight: 400;
        }

        .floating-stat {
            position: absolute;
            background: white;
            border-radius: 14px;
            padding: 14px 18px;
            box-shadow: 0 8px 24px rgba(15,61,46,0.12);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .stat-top {
            top: 24px;
            right: -24px;
        }

        .stat-bottom {
            bottom: 80px;
            left: -24px;
        }

        .stat-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .stat-text small {
            display: block;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-light);
        }

        .stat-text strong {
            font-size: 15px;
            font-weight: 600;
            color: var(--green-deep);
        }

        .trust-bar {
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: var(--green-deep);
            border-radius: 14px;
            color: white;
        }

        .trust-bar svg { flex-shrink: 0; }

        .trust-bar p {
            font-size: 13px;
            font-weight: 300;
            opacity: 0.85;
            line-height: 1.4;
        }

        .trust-bar p strong { font-weight: 600; opacity: 1; }

        /* ---- RESPONSIVE ---- */
        @media (max-width: 1100px) {
            .section-wrapper { grid-template-columns: 1fr; }
            .col-right { position: relative; top: 0; }
            .image-main { aspect-ratio: 16/9; }
            .stat-top { right: 16px; }
            .stat-bottom { left: 16px; }
        }

        @media (max-width: 640px) {
            .section-wrapper { padding: 48px 24px; }
            .main-title { font-size: 38px; }
            .cards-grid { grid-template-columns: 1fr; }
        }

        /* ---- ANIMATIONS ---- */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .col-left > * { animation: fadeUp 0.6s ease both; }
        .eyebrow { animation-delay: 0.05s; }
        .main-title { animation-delay: 0.1s; }
        .subtitle { animation-delay: 0.15s; }
        .cards-grid { animation-delay: 0.2s; }
        .col-right { animation: fadeUp 0.7s 0.3s ease both; }
