/* Funil de upsell pós-compra — mobile-first. Reaproveita a linguagem visual
   do projeto (Poppins, header amarelo, card branco centralizado). */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    color: #1a1a1a;
}

.header {
    background: #ffe600;
    padding: 18px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 217, 0, 0.25);
}

.brand {
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 16px;
    color: #1a1a1a;
}

.container {
    background: #fff;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
}

.content {
    padding: 28px 22px 34px;
}

.content.center {
    text-align: center;
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: #22c55e;
    text-align: center;
    margin-bottom: 14px;
}

.title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 14px;
}

.title span {
    color: #2563eb;
}

.subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 24px;
}

.features-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px 20px;
    margin-bottom: 22px;
}

.features-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #e8edf3;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.feature-text {
    font-size: 14.5px;
    font-weight: 500;
    color: #374151;
    line-height: 1.45;
}

.features-foot {
    margin-top: 14px;
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
}

/* Disclaimer de compliance — sempre visível, nunca escondido. */
.disclaimer {
    background: #fff8e1;
    border: 1px solid #f5d76e;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #6b5800;
    text-align: center;
    margin-bottom: 24px;
}

.cta-accept {
    display: block;
    width: 100%;
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 17px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.cta-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
}

.cta-note {
    font-size: 12.5px;
    color: #6b7280;
    text-align: center;
    margin: 12px 6px 0;
    line-height: 1.5;
}

.cta-decline {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    text-decoration: underline;
    cursor: pointer;
}

.cta-decline:hover {
    color: #374151;
}

.check-icon {
    width: 76px;
    height: 76px;
    margin: 4px auto 22px;
    border-radius: 50%;
    background: #e8f7ee;
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    background: #fafafa;
    text-align: center;
    padding: 26px 20px;
    border-top: 1px solid #eee;
    max-width: 440px;
    margin: 0 auto;
}

.footer-disclaimer {
    font-size: 11.5px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 12px;
    color: #9ca3af;
}
