/* =====================================================================
           SMART BACK
        ===================================================================== */
        .smart-back {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-corpo);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--cinza);
            text-decoration: none;
            padding: 10px 18px;
            border: 1px solid var(--borda-forte);
            background: transparent;
            transition: var(--fast);
            align-self: flex-start;
        }

        .smart-back svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5px;
        }

        .smart-back:hover {
            color: var(--verde-medio);
            border-color: var(--verde-medio);
            gap: 14px;
        }

        /* =====================================================================
           PAGE WRAP
        ===================================================================== */
        .page-wrap {
            padding: 120px 80px 120px;
        }

        /* =====================================================================
           PAGE HEADER (eyebrow + title + desc)
        ===================================================================== */
        .page-header {
            margin: 56px 0 72px;
        }

        .ph-eyebrow {
            font-family: var(--font-corpo);
            font-size: 9px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--cinza);
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .ph-eyebrow::before {
            content: '';
            display: block;
            width: 24px;
            height: 1px;
            background: var(--cinza);
        }

        .ph-h1 {
            font-family: var(--font-titulo);
            font-weight: 600;
            font-size: clamp(36px, 4.5vw, 68px);
            color: var(--verde-medio);
            letter-spacing: -1px;
            line-height: 1.05;
            margin-bottom: 24px;
        }

        .ph-h1 em {
            font-style: italic;
            font-weight: 400;
            color: var(--cinza);
        }

        .ph-desc {
            font-family: var(--font-corpo);
            font-size: 16px;
            letter-spacing: 0.3px;
            color: var(--cinza);
            line-height: 1.9;
            max-width: 600px;
        }

        /* =====================================================================
           CONTEÚDO
        ===================================================================== */
        .guarantee-content {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        /* policy block */
        .policy-block {
            width: 100%;
            background: var(--off-white);
            border-left: 3px solid var(--verde-medio);
            padding: 48px 56px;
        }

        .policy-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
        }

        .policy-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--borda-forte);
            flex-shrink: 0;
            background: var(--branco);
        }

        .policy-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--verde-medio);
            fill: none;
            stroke-width: 1.5px;
        }

        .policy-title {
            font-family: var(--font-corpo);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--verde-medio);
            display: block;
        }

        .policy-block p {
            font-family: var(--font-corpo);
            font-size: 15px;
            line-height: 1.95;
            color: var(--cinza);
            letter-spacing: 0.3px;
            margin-bottom: 16px;
        }

        .policy-block p:last-child {
            margin-bottom: 0;
        }

        /* download banner */
        .download-banner {
            width: 100%;
            background: var(--verde);
            padding: 48px 56px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            transition: var(--smooth);
            position: relative;
            overflow: hidden;
        }

        .download-banner::before {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.05);
            pointer-events: none;
            transition: var(--smooth);
        }

        .download-banner:hover::before {
            transform: scale(1.2);
        }

        .download-banner:hover {
            background: var(--verde-medio);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .dl-text-box {
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
            z-index: 1;
        }

        .dl-eyebrow {
            font-family: var(--font-corpo);
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
        }

        .dl-main-text {
            font-family: var(--font-titulo);
            font-weight: 600;
            font-size: clamp(16px, 1.6vw, 22px);
            letter-spacing: -0.3px;
            color: var(--branco);
            line-height: 1.2;
        }

        .dl-sub-text {
            font-family: var(--font-corpo);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.35);
        }

        .dl-icon-box {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 50%;
            color: var(--branco);
            transition: var(--smooth);
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .download-banner:hover .dl-icon-box {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.6);
            transform: rotate(-10deg) scale(1.1);
        }

        .dl-icon-box svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5px;
        }

        /* guarantee note */
        .guarantee-note {
            background: var(--off-white);
            border: 1px solid var(--borda);
            padding: 32px 40px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .note-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--borda-forte);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .note-icon svg {
            width: 14px;
            height: 14px;
            stroke: var(--cinza);
            fill: none;
            stroke-width: 1.5px;
        }

        .note-text {
            font-family: var(--font-corpo);
            font-size: 12px;
            letter-spacing: 0.4px;
            color: var(--cinza);
            line-height: 1.85;
        }

        .note-text a {
            color: var(--verde-medio);
            text-decoration: none;
            border-bottom: 1px solid var(--borda-forte);
            transition: var(--fast);
        }

        .note-text a:hover {
            border-bottom-color: var(--verde-medio);
        }

        /* scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.9s ease, transform 0.9s var(--ease);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .d1 { transition-delay: 0.1s; }
        .d2 { transition-delay: 0.2s; }
        .d3 { transition-delay: 0.3s; }
        .d4 { transition-delay: 0.4s; }

        /* =====================================================================
           RESPONSIVIDADE
        ===================================================================== */
        @media (max-width: 1024px) {
            .page-wrap { padding: 100px 48px 96px; }
        }

        @media (max-width: 768px) {
            .page-wrap { padding: 94px 24px 72px; }
            .policy-block { padding: 36px 28px; }
            .download-banner { padding: 36px 28px; flex-direction: column; align-items: flex-start; gap: 28px; }
            .guarantee-note { padding: 24px 24px; }
            .smart-back span { display: none; }
        }