:root {
    --green: #009c3b;
    --green-dark: #00662a;
    --gold: #e6c200;
    --gold-bright: #ffdf00;
    --bg: #f5f5f5;
    --bg-card: #ffffff;
    --bg-input: #f1f5f7;
    --bg-elevated: #f0f4f6;
    --text: #1a1a2e;
    --text-soft: #2d2d40;
    --text-muted: #6b7280;
    --text-dim: #9ca3af;
    --border: #e5e7eb;
    --border-active: rgba(0,156,59,0.3);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-xl: 20px;
    --transition: 220ms ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: #f5f5f5;
    color: var(--text);
    min-height: 100vh;
    display: block;
    padding: 14px;
    overflow-x: hidden;
}

.app {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.screen {
    display: none;
    animation: screenIn 0.5s ease;
}

.screen.active {
    display: block;
}

@keyframes screenIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== HEADER COM IMAGEM ==================== */
.header-image {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    line-height: 0;
}

.header-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==================== IMAGE BANNER ==================== */
.image-banner {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: #fff;
    line-height: 0;
}

.image-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==================== CARD ==================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,156,59,0.15), rgba(230,194,0,0.12), rgba(0,156,59,0.15), transparent);
}

/* ==================== HERO ==================== */
.headline {
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.headline .gold {
    color: #b8860b;
}

.desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
}

.desc strong {
    color: var(--text-soft);
    font-weight: 700;
}

/* ==================== FEATURE CARDS COM ÍCONES PREMIUM ==================== */
.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: #d1d5db;
    transform: translateX(2px);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box.green {
    background: linear-gradient(135deg, rgba(0,156,59,0.12), rgba(0,156,59,0.04));
    border: 1px solid rgba(0,156,59,0.2);
    color: #009c3b;
}

.feature-icon-box.gold {
    background: linear-gradient(135deg, rgba(230,194,0,0.12), rgba(230,194,0,0.04));
    border: 1px solid rgba(230,194,0,0.2);
    color: #c89d00;
}

.feature-icon-box.blue {
    background: linear-gradient(135deg, rgba(0,39,118,0.1), rgba(0,39,118,0.03));
    border: 1px solid rgba(0,39,118,0.18);
    color: #002776;
}

.feature-icon-box svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-soft);
}

.feature-text span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==================== SEÇÃO DE PREÇO COM 2 CARDS ==================== */
.price-section {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: stretch;
}

.price-image-card {
    flex: 0 0 120px;
    max-height: 160px;
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    line-height: 0;
}

.price-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.price-image-mobile {
    display: none;
}

.price-image-desktop {
    display: block;
}

.price-info-card {
    flex: 1;
    background: #fafdf9;
    border: 1px solid rgba(0,156,59,0.15);
    border-radius: var(--radius);
    padding: 16px 14px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.12);
    color: #dc2626;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    align-self: flex-start;
}

.price-comparison {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.price-old-block {
    display: flex;
    flex-direction: column;
}

.price-old-label {
    font-size: 9px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2px;
}

.price-old-value {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 600;
}

.price-new-block {
    display: flex;
    align-items: flex-end;
}

.price-new-value {
    font-size: 30px;
    font-weight: 900;
    color: #b8860b;
    letter-spacing: -1.5px;
    line-height: 1;
}

.price-discount-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 8px;
    margin-left: auto;
}

.discount-value {
    font-size: 14px;
    font-weight: 800;
    color: #dc2626;
    letter-spacing: -0.3px;
}

.discount-label {
    font-size: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.price-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 10px 0;
}

.price-benefits {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.benefit-icon {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
    font-size: 11px;
    color: var(--text-dim);
}

.trust-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==================== DEPOIMENTOS ==================== */
.testimonials-section {
    margin-top: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    box-shadow: var(--shadow-card);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,156,59,0.15), rgba(230,194,0,0.12), rgba(0,156,59,0.15), transparent);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 22px;
}

.testimonials-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.3px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.testimonials-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    line-height: 0;
}

.testimonial-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-1px);
}

.testimonial-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ==================== FORM ==================== */
.form-header {
    text-align: center;
    margin-bottom: 22px;
}

.form-header h2 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
}

.form-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 7px;
}

.form-input {
    width: 100%;
    padding: 15px 18px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 15px;
    font-family: var(--font);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--border-active);
    box-shadow: 0 0 0 4px rgba(0,156,59,0.04);
}

.form-input::placeholder {
    color: var(--text-dim);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.04);
}

.form-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.form-error.show {
    display: block;
}

.form-hint {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 5px;
}

.form-footer-text {
    text-align: center;
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 12px;
}

/* ==================== QUIZ ==================== */
.quiz-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.quiz-step-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.quiz-step-num {
    color: #b8860b;
}

.progress-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 10px;
    margin-bottom: 22px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), #b8860b);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.quiz-question {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-bottom: 18px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.quiz-option {
    width: 100%;
    padding: 16px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-soft);
    font-size: 14px;
    font-family: var(--font);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}

.quiz-option:hover {
    background: #e8ecef;
    border-color: #d1d5db;
}

.quiz-option:active {
    transform: scale(0.985);
}

.quiz-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition);
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
}

.quiz-option:hover .quiz-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== CALCULATING ==================== */
.calc-wrapper {
    text-align: center;
    padding: 28px 0;
}

.calc-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid #e5e7eb;
    border-top-color: #b8860b;
    border-right-color: var(--green);
    animation: spin 0.9s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.calc-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.calc-text {
    font-size: 14px;
    color: var(--text-muted);
    min-height: 44px;
    line-height: 1.5;
}

.calc-cursor {
    display: inline-block;
    width: 2px;
    height: 15px;
    background: var(--green);
    vertical-align: middle;
    margin-left: 3px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ==================== CHECKOUT PREMIUM ==================== */
.checkout-container {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 24px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.checkout-top {
    background: #fafdf9;
    padding: 14px 24px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.checkout-lock {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.checkout-lock-icon {
    width: 16px;
    height: 16px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #fff;
}

.checkout-body {
    padding: 24px;
}

.checkout-product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: #f9fafb;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.checkout-product-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: #e5e7eb;
    overflow: hidden;
}

.checkout-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.checkout-product-info {
    flex: 1;
    padding: 12px 12px 12px 4px;
}

.checkout-product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
    line-height: 1.2;
}

.checkout-product-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.checkout-product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.checkout-pix-section {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
}

.checkout-pix-header {
    background: #fafdf9;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
}

.checkout-pix-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-pix-icon-box {
    width: 28px;
    height: 28px;
    background: rgba(0,156,59,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.checkout-pix-badge {
    font-size: 10px;
    font-weight: 700;
    background: rgba(0,156,59,0.06);
    color: var(--green);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(0,156,59,0.12);
    letter-spacing: 0.3px;
}

.checkout-pix-body {
    padding: 24px;
    text-align: center;
}

.qr-wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 16px;
    display: inline-block;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    line-height: 0;
}

.qr-wrapper img {
    display: block;
    width: 170px;
    height: 170px;
}

.qr-loading-text {
    color: var(--text-muted);
    font-size: 13px;
    padding: 30px;
    font-weight: 500;
}

.pix-copy-area {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 14px;
    text-align: left;
}

.pix-copy-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pix-copy-text {
    font-size: 11px;
    color: var(--text-soft);
    word-break: break-all;
    font-family: 'Courier New', monospace;
    line-height: 1.5;
    display: none;
    letter-spacing: 0.2px;
}

.btn-copy-pix {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--green);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-copy-pix:hover {
    background: #008033;
    transform: translateY(-1px);
}

.btn-copy-pix.copied {
    background: #059669;
}

.copy-feedback {
    font-size: 12px;
    color: var(--green);
    margin-top: 8px;
    display: none;
    font-weight: 600;
    text-align: center;
}

.checkout-footer-info {
    text-align: center;
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    background: #fafdf9;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,156,59,0.1);
}

.checkout-footer-info strong {
    color: var(--text-soft);
}

.checkout-bottom-bar {
    background: #fafdf9;
    padding: 12px 24px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 10px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    letter-spacing: 0.5px;
}

.checkout-bottom-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==================== POP-UP PREMIUM ==================== */
.purchase-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a1a2e;
    color: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    max-width: 90vw;
    border: 1px solid rgba(255,255,255,0.1);
}

.purchase-popup.show {
    transform: translateX(-50%) translateY(0);
}

.purchase-popup-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.purchase-popup-text {
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255,255,255,0.9);
}

.purchase-popup-text strong {
    color: #fff;
    font-weight: 600;
}

.purchase-popup-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    line-height: 1;
    font-family: var(--font);
    min-width: 16px;
    text-align: center;
    transition: color 0.2s;
}

.purchase-popup-close:hover {
    color: #fff;
}

/* ==================== BUTTONS ==================== */
.btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: -0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), #008033);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,156,59,0.2);
}

.btn-primary:hover {
    box-shadow: 0 6px 26px rgba(0,156,59,0.3);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ==================== FOOTER ==================== */
.footer {
    text-align: center;
    margin-top: 16px;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.3px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 420px) {
    .card {
        padding: 22px 16px;
    }
    .headline {
        font-size: 19px;
    }
    .quiz-question {
        font-size: 17px;
    }
    .qr-wrapper img {
        width: 150px;
        height: 150px;
    }
    .feature-icon-box {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
    }
    .checkout-body {
        padding: 18px;
    }
    .checkout-product-image {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
    .testimonials-section {
        padding: 22px 14px;
    }
    .testimonials-title {
        font-size: 16px;
    }
    
    .price-section {
        flex-direction: column;
        gap: 12px;
    }
    .price-image-desktop {
        display: none;
    }
    .price-image-mobile {
        display: block;
        width: 100%;
        border-radius: var(--radius);
        line-height: 0;
    }
    .price-image-mobile img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
    .price-image-card {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        max-height: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }
    .price-info-card {
        padding: 20px 16px;
    }
    .price-badge {
        align-self: center;
        text-align: center;
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 14px;
    }
    .price-comparison {
        justify-content: center;
        gap: 16px;
        flex-wrap: nowrap;
    }
    .price-old-block {
        align-items: center;
    }
    .price-old-label {
        font-size: 11px;
    }
    .price-old-value {
        font-size: 18px;
    }
    .price-new-value {
        font-size: 42px;
    }
    .price-discount-block {
        padding: 10px 14px;
    }
    .discount-value {
        font-size: 18px;
    }
    .discount-label {
        font-size: 10px;
    }
    .price-benefits {
        align-items: center;
        gap: 10px;
    }
    .benefit-item {
        font-size: 13px;
        gap: 8px;
    }
    .benefit-icon {
        font-size: 14px;
    }
}
