/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --bg-color: #ffffff;
    --primary-red: #c4170c;
    --accent-red: #ff3c32;
    --primary-green: #28a745;
    --accent-green: #218838;
    --text-primary: #1f1f1f;
    --text-secondary: #5f6368;
    --font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-family);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 0 0 120px 0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* TOPO - REDLINE COM URGENCIA */
.urgency-bar {
    width: 100%;
    background: linear-gradient(90deg, #c4170c, #ff3c32);
    color: white;
    padding: 14px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(196, 23, 12, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.blink-dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* CONTAINER PRINCIPAL */
.main-container {
    width: 100%;
    max-width: 520px;
    padding: 0 16px;
}

/* HEADLINE */
.headline-section {
    padding: 24px 0 16px 0;
    text-align: left;
}

.headline-text {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--primary-red);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.headline-sub {
    font-size: 17px;
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1.4;
}

/* SOCIAL PROOF TOP */
.social-proof-top {
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    border: 2px solid #ffe4e4;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.social-proof-number {
    font-size: 16px;
    font-weight: 900;
    color: var(--primary-red);
}

.social-proof-text {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

/* IMAGEM */
.card-image {
    width: 100%;
    border-radius: 16px;
    display: block;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* PARAGRAFO PADRAO */
.paragraph {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #000000;
    font-weight: 500;
}

.highlight-red {
    color: var(--primary-red);
    font-weight: 900;
}

.highlight-bold {
    font-weight: 900;
}

/* TITULO DE SECAO */
.section-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-red);
    margin: 28px 0 16px 0;
    line-height: 1.3;
    text-align: center;
}

/* LISTA DE BENEFICIOS */
.benefits-list {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
}

.benefits-list li {
    font-size: 17px;
    margin-bottom: 14px;
    padding: 16px 14px;
    background: linear-gradient(135deg, #f0fff4, #ffffff);
    border-left: 5px solid var(--primary-green);
    border-radius: 12px;
    font-weight: 600;
}

/* CAIXA DE RESULTADOS (URGENCIA) */
.results-box {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    margin: 24px 0;
    box-shadow: 0 6px 20px rgba(196, 23, 12, 0.35);
}

.results-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.results-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
}

/* SEÇÃO DE DOENÇAS - TABELA */
.diseases-section {
    background-color: #fff5f5;
    border-radius: 16px;
    padding: 20px 14px;
    margin: 0 0 20px 0;
}

.diseases-intro {
    text-align: center;
    margin-bottom: 18px;
}

.diseases-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
}

.diseases-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.diseases-table th {
    padding: 12px 10px;
    text-align: left;
    font-size: 15px;
    font-weight: 900;
    color: white;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
}

.diseases-table td {
    padding: 12px 10px;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 1px solid #ffd4d4;
    line-height: 1.6;
}

.diseases-table tr:nth-child(even) {
    background-color: #fff9f9;
}

.disease-name {
    font-weight: 800;
}

.diseases-footer {
    margin-top: 18px;
    text-align: center;
    font-weight: 700;
}

/* CTA BUTTON */
.cta-container {
    margin: 28px 0;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(180deg, #28a745 0%, #218838 100%);
    color: white;
    border: none;
    padding: 20px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-cta 2s infinite;
    transition: transform 0.2s;
}

.btn-primary:hover, .btn-primary:active {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.7);
    animation-play-state: paused;
}

@keyframes pulse-cta {
    0% { transform: scale(1); box-shadow: 0 8px 30px rgba(40,167,69,0.5); }
    50% { transform: scale(1.03); box-shadow: 0 12px 40px rgba(40,167,69,0.7); }
    100% { transform: scale(1); box-shadow: 0 8px 30px rgba(40,167,69,0.5); }
}

/* INFO BOX */
.info-box {
    text-align: center;
    padding: 22px 18px;
    background-color: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 20px;
}

.info-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.info-text {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.6;
}

/* COMENTARIOS */
.comments-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.comments-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
    border-bottom: 3px solid var(--primary-red);
    display: inline-block;
    padding-bottom: 6px;
}

.comment-card {
    background-color: #fafafa;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
}

.comment-card.reply {
    background-color: #f0f7ff;
    margin-left: 24px;
    margin-top: -10px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 16px;
    font-weight: 900;
    color: #3b5998;
}

.comment-text {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 500;
}

.comment-meta {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
    font-weight: 700;
}

/* CTA FLUTUANTE - MOBILE */
.cta-float {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #28a745, #2fa859);
    color: white;
    padding: 18px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    z-index: 999;
    box-shadow: 0 -8px 30px rgba(40,167,69,0.5);
    cursor: pointer;
    letter-spacing: 0.3px;
    border-top: 3px solid rgba(255,255,255,0.4);
}

/* FOOTER */
.footer {
    margin-top: 30px;
    width: 100%;
    padding: 0 16px 40px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.trust-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.footer-legal-container {
    max-width: 520px;
    margin: 0 auto;
    padding: 24px 18px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 18px;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-disclaimer, .footer-important {
    font-size: 11px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: left;
}

.footer-important {
    padding: 14px;
    background-color: #fffaf5;
    border-radius: 10px;
    border: 1px solid #ffe4cc;
}

.footer-copyright {
    font-size: 12px;
    color: #777;
    font-weight: 700;
    text-align: center;
}

/* MODAIS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    padding: 0 16px;
}

.modal-content {
    background-color: white;
    width: 100%;
    max-width: 440px;
    padding: 36px 24px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.modal-title {
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.3;
}

.modal-text {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: left;
}

.btn-modal-continue {
    width: 100%;
    background: linear-gradient(180deg, #28a745 0%, #218838 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(40,167,69,0.5);
}

.modal-support {
    background-color: white;
    width: 100%;
    max-width: 520px;
    padding: 28px 16px 24px;
    border-radius: 24px 24px 0 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
    animation: slideUp 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.support-title {
    font-family: var(--font-family);
    font-size: 20px;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-weight: 900;
}

.support-subtitle {
    font-size: 17px;
    color: #3c4043;
    margin-bottom: 24px;
    font-weight: 600;
}

.price-btn {
    width: 100%;
    padding: 16px 14px;
    border: 3px solid var(--primary-green);
    border-radius: 16px;
    background: linear-gradient(135deg, #e8fff0, #ffffff);
    font-size: 16px;
    font-weight: 900;
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.btn-contribute {
    width: 100%;
    background: linear-gradient(180deg, #28a745 0%, #218838 100%);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(40,167,69,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.support-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.already-contributes {
    color: #1a73e8;
    font-size: 15px;
    text-decoration: none;
    font-weight: 800;
}
