/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    margin-top: 0;
}

p {
    margin-bottom: 1.2em;
    max-width: 100%;
    font-weight: 400;
    color: #444;
}

strong {
    font-weight: 600;
    color: #111;
}

em {
    font-style: italic;
}

/* Links */
a {
    color: #A80000;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

/* Container Base */
.main-content {
    width: 100%;
    min-height: 100vh;
    padding: 3rem 5%;
    background-color: #ffffff;
}

.article-container {
    max-width: 580px;
    margin: 0 auto;
}

/* Respiro Visual - Hierarquia de Quebras */
.micro-break {
    margin-bottom: 1em !important;
}

.standard-break {
    margin-bottom: 2em !important;
}

.macro-break {
    margin-bottom: 3.5em !important;
}

/* Visual Separators */
.visual-separator {
    text-align: center;
    margin: 4em 0;
    color: #ccc;
    font-size: 1rem;
    letter-spacing: 0.8em;
    opacity: 0.6;
}

/* Interview Blocks */
.question-block,
.answer-block {
    margin-bottom: 2em;
}

.question-block {
    position: relative;
    padding-left: 20px;
}

.question-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #0669de;
}

.answer-block {
    position: relative;
    padding-left: 20px;
}

.answer-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #A80000;
}

.interviewer,
.interviewee {
    display: inline-block;
    margin-bottom: 0.5em;
}

.interviewer strong {
    color: #0669de;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.interviewee strong {
    color: #A80000;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Quote Styles */
.quote-highlight {
    font-size: 1.1rem;
    font-weight: 500;
    color: #A80000;
    font-style: italic;
    padding: 0.5em 0;
    background-color: #fef5f5;
    padding: 1em;
    border-radius: 4px;
    margin: 1em 0;
}

blockquote.article-quote {
    margin: 3em 0;
    padding: 2em;
    background-color: #f8f8f8;
    border-left: 4px solid #A80000;
    position: relative;
}

blockquote.article-quote p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0.5em;
}

blockquote.article-quote cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1em;
}

/* WhatsApp Message Style */
.whatsapp-message {
    background-color: #DCF8C6;
    border-radius: 8px;
    padding: 1em 1.5em;
    margin: 1.5em 0;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.whatsapp-message p {
    margin-bottom: 0.5em;
    font-size: 0.95rem;
}

.whatsapp-message p:last-child {
    margin-bottom: 0;
}

/* Highlight Box */
.highlight-box {
    background-color: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 2.5em;
    margin: 4em 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    color: #A80000;
    margin-bottom: 0.2em;
}

.highlight-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.5em;
}

.highlight-subtext {
    font-size: 0.9rem;
    color: #666;
}

/* Result Highlight */
.result-highlight {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2em;
    margin: 3em 0;
    padding: 2em;
    background-color: #fafafa;
    border-radius: 8px;
}

.result-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #A80000;
    margin-bottom: 0.2em;
}

.result-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    margin-top: 4em;
    padding: 3em 0;
    text-align: center;
}

.cta-intro {
    font-size: 1.1rem;
    margin-bottom: 1em;
    color: #444;
}

.cta-text {
    margin-bottom: 2em;
}

.cta-button-container {
    margin: 3em 0;
}

.cta-button {
    display: inline-block;
    background-color: #A80000;
    color: white;
    padding: 0.8em 1.5em;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 12px rgba(168,0,0,0.2);
    }
}

.cta-button:hover {
    background-color: #8B0000;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    text-decoration: none;
    animation: none;
}

/* Garantir espaçamento adequado entre parágrafos */
p + p {
    margin-top: 1em;
}

/* Limitar largura de linha para melhor legibilidade */
p, li {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

/* Ajustar espaçamento de listas */
ul, ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

li {
    margin-bottom: 0.5em;
}

/* Warning Box - Aviso inicial */
.warning-box {
    background-color: #FFF5F5;
    border: 2px solid #A80000;
    border-radius: 8px;
    padding: 2em;
    margin: 2em 0;
}

.warning-box p {
    margin-bottom: 1em;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

.warning-box strong {
    color: #A80000;
    font-weight: 700;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* Article Section */
.article-section {
    margin-bottom: 2em;
}

/* Cost List */
.cost-list {
    background-color: #fafafa;
    padding: 1.5em;
    border-radius: 6px;
}

.cost-list li {
    position: relative;
    padding-left: 1em;
}

.cost-list li::before {
    content: "•";
    color: #A80000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Featured List */
.featured-list {
    background-color: #f8f8f8;
    padding: 2em;
    border-radius: 8px;
    margin: 3em 0;
    border-left: 4px solid #A80000;
}

.featured-list .list-intro {
    font-weight: 600;
    margin-bottom: 1em;
    color: #333;
}

.featured-list ul {
    margin: 1em 0;
}

.featured-list li {
    margin-bottom: 0.8em;
}

/* Simple List */
.simple-list {
    list-style: none;
    padding-left: 0;
    margin: 1em 0;
}

.simple-list li {
    background-color: #f5f5f5;
    padding: 0.8em 1.2em;
    margin-bottom: 0.5em;
    border-radius: 4px;
    font-weight: 500;
}

/* Gráfico de Rejeições */
.rejection-visual {
    background-color: #f8f8f8;
    padding: 2em;
    border-radius: 8px;
    margin: 3em 0;
}

.rejection-stats {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.stat-bar {
    display: flex;
    align-items: center;
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5em;
}

.stat-bar.rejected {
    background-color: #ffebee;
}

.stat-bar.maybe {
    background-color: #fff3e0;
}

.stat-bar.success {
    background-color: #e8f5e9;
}

.stat-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.stat-bar.rejected .stat-fill {
    background-color: #ef5350;
}

.stat-bar.maybe .stat-fill {
    background-color: #ffa726;
}

.stat-bar.success .stat-fill {
    background-color: #66bb6a;
}

.stat-label {
    position: relative;
    z-index: 1;
    padding: 0 1em;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* Failed Attempts Box */
.failed-attempts-box {
    background-color: #fafafa;
    border-left: 4px solid #e0e0e0;
    padding: 1.5em;
    margin: 2em 0;
}

.attempt-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    margin-bottom: 0.5em;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.attempt-strategy {
    font-weight: 600;
    color: #666;
}

.attempt-result {
    color: #A80000;
    font-style: italic;
}

/* Stat Comparison */
.stat-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #A80000;
    margin-bottom: 0.2em;
}

.stat-vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: #666;
}

/* Notification List */
.notification-list {
    background-color: #f5f5f5;
    padding: 1.5em;
    border-radius: 8px;
    margin: 1.5em 0;
}

.notification-list p {
    background-color: white;
    padding: 0.8em 1em;
    margin-bottom: 0.5em;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Dialogue Highlight */
.dialogue-highlight {
    margin: 2em 0;
}

.dialogue-lucas,
.dialogue-client {
    padding: 1.5em;
    margin: 1em 0;
    border-radius: 8px;
}

.dialogue-lucas {
    background-color: #e3f2fd;
    border-left: 4px solid #0669de;
}

.dialogue-client {
    background-color: #f5f5f5;
    border-left: 4px solid #666;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
    margin: 2em 0;
}

.benefit-card {
    background-color: #fafafa;
    padding: 2em;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5em;
    color: #333;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Personal Highlight */
.personal-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3em;
    background-color: #fafafa;
    padding: 3em;
    border-radius: 12px;
    flex-wrap: wrap;
}

.age-experience {
    text-align: center;
}

.big-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #A80000;
    line-height: 1;
}

.label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5em;
}

.highlight-message {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-top: 2em;
}

/* Final Question Box */
.final-question-box {
    background-color: #f8f8f8;
    padding: 3em;
    border-radius: 12px;
    margin: 3em 0;
}

@media (max-width: 768px) {
    .final-question-box {
        padding: 2em 1.5em;
        margin: 2em 0;
    }
}

.question-title {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2em;
    color: #333;
}

@media (max-width: 768px) {
    .question-title {
        font-size: 1.1rem;
        margin-bottom: 1.5em;
    }
}

.options-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
}

.option-old,
.option-new {
    background-color: white;
    padding: 2em;
    border-radius: 8px;
}

.option-old {
    border: 2px solid #e0e0e0;
}

.option-new {
    border: 2px solid #A80000;
    box-shadow: 0 4px 12px rgba(168,0,0,0.1);
}

.option-old h4,
.option-new h4 {
    font-size: 1.2rem;
    margin-bottom: 1em;
    color: #333;
}

.option-old ul,
.option-new ul {
    list-style: none;
    padding: 0;
}

.option-old li,
.option-new li {
    padding: 0.5em 0;
    padding-left: 2em;
    position: relative;
}

.option-old li::before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 0.5em;
    color: #e53935;
    font-weight: bold;
    font-size: 1.2em;
    font-family: Arial, sans-serif;
    display: inline-block;
    width: 1.5em;
}

.option-new li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.5em;
    color: #43a047;
    font-weight: bold;
    font-size: 1.2em;
    font-family: Arial, sans-serif;
    display: inline-block;
    width: 1.5em;
}

/* Comparison Table Styles */
.comparison-intro {
    text-align: center;
    margin-bottom: 3em;
}

.comparison-intro p {
    font-size: 1.1rem;
    max-width: 100%;
}

.comparison-table-container {
    margin: 3em 0;
    overflow: hidden;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin-bottom: 3em;
}

.comparison-column {
    background-color: #fafafa;
    border-radius: 12px;
    padding: 2em;
    position: relative;
    overflow: hidden;
}

.comparison-column.old-way {
    border: 2px solid #ffebee;
    background: linear-gradient(to bottom, #fff, #ffebee);
}

.comparison-column.new-way {
    border: 2px solid #e8f5e9;
    background: linear-gradient(to bottom, #fff, #e8f5e9);
    box-shadow: 0 4px 20px rgba(67, 160, 71, 0.1);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.3rem;
    margin-bottom: 1.5em;
    color: #333;
    flex-wrap: wrap;
}

.column-header .subtitle {
    display: block;
    width: 100%;
    font-size: 0.8rem;
    color: #666;
    font-weight: normal;
    margin-top: 0.5em;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75em;
    margin-bottom: 1.2em;
    padding: 0;
}

.comparison-list li svg {
    flex-shrink: 0;
    margin-top: 0.2em;
}

.comparison-list li span {
    line-height: 1.5;
    font-size: 0.95rem;
}

.old-way .comparison-list li span {
    color: #666;
}

.new-way .comparison-list li span {
    color: #333;
    font-weight: 500;
}

/* Mobile Comparison */
.comparison-mobile {
    display: none;
}

.mobile-card {
    background-color: #fafafa;
    border-radius: 12px;
    padding: 1.5em;
    margin-bottom: 1.5em;
}

.mobile-card.old-way {
    border: 2px solid #ffebee;
    background: linear-gradient(to bottom, #fff, #ffebee);
}

.mobile-card.new-way {
    border: 2px solid #e8f5e9;
    background: linear-gradient(to bottom, #fff, #e8f5e9);
}

.mobile-card-header {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.1rem;
    margin-bottom: 1em;
    color: #333;
}

.mobile-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-card li {
    padding: 0.6em 0;
    padding-left: 1.5em;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.old-way .mobile-card li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e53935;
    font-weight: bold;
}

.new-way .mobile-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #43a047;
    font-weight: bold;
}

.comparison-footer {
    text-align: center;
    margin-top: 3em;
}

.impact-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1em;
}

.revelation {
    font-size: 1.5rem;
    color: #A80000;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-table {
        display: none;
    }
    
    .comparison-mobile {
        display: block;
    }
    
    .comparison-intro {
        margin-bottom: 2em;
    }
    
    .revelation {
        font-size: 1.2rem;
    }
    
    .options-comparison {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    
    .option-old,
    .option-new {
        padding: 1.5em;
    }
    
    .option-old h4,
    .option-new h4 {
        font-size: 1.1rem;
    }
    
    .option-old li,
    .option-new li {
        font-size: 0.9rem;
        padding: 0.4em 0;
        padding-left: 1.8em;
        line-height: 1.4;
    }
    
    .option-old ul,
    .option-new ul {
        margin: 0;
    }
    
    .option-old li::before,
    .option-new li::before {
        top: 0.4em;
        font-size: 1em;
    }
}

/* Objections Section */
.objections-section {
    margin: 4em 0;
}

.objection-block {
    background-color: #fafafa;
    border-left: 4px solid #A80000;
    padding: 2em;
    margin-bottom: 2em;
    border-radius: 0 8px 8px 0;
    transition: transform 0.2s ease;
}

.objection-block:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.objection-title {
    display: flex;
    align-items: center;
    gap: 0.75em;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1em;
}

.icon-question {
    flex-shrink: 0;
}

.objection-answer {
    padding-left: 2em;
}

.objection-answer p {
    line-height: 1.6;
}

.objection-list {
    list-style: none;
    padding: 0;
    margin: 1em 0;
}

.objection-list li {
    padding: 0.5em 0;
    padding-left: 1.5em;
    position: relative;
}

.objection-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #A80000;
    font-weight: bold;
}

@media (max-width: 768px) {
    .objection-block {
        padding: 1.5em;
    }
    
    .objection-title {
        font-size: 1rem;
    }
    
    .objection-answer {
        padding-left: 0;
        margin-top: 1em;
    }
}

/* Article Image */
.article-image {
    margin: 2em 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsividade básica */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .main-content {
        padding: 1.5rem 5%;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
    
    .result-number {
        font-size: 2rem;
    }
    
    blockquote.article-quote {
        padding: 1.5em;
    }
    
    blockquote.article-quote p {
        font-size: 1.1rem;
    }
}