/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #2c2c2c;
    background-color: #faf8f5;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* Header */
.header {
    padding: 30px 0;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    border-bottom: 1px solid #f0eae1;
}

.logo {
    max-width: 220px;
    height: auto;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px 0;
    background: radial-gradient(circle at top, #fff5f5 0%, #faf8f5 100%);
}

.subtitle {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b85a5a;
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.description {
    font-size: 18px;
    color: #555555;
    max-width: 680px;
    margin: 0 auto 30px auto;
}

/* Hero Price Box */
.hero-price-tag {
    margin-bottom: 25px;
}

.old-price {
    font-size: 14px;
    color: #888888;
    text-decoration: line-through;
}

.current-price {
    font-size: 46px;
    font-weight: 700;
    color: #b85a5a;
    line-height: 1;
    margin: 4px 0;
}

.payment-methods {
    font-size: 14px;
    color: #444444;
    font-weight: 500;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #111111;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #b85a5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 90, 90, 0.2);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #b85a5a;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(184, 90, 90, 0.15);
}

.secondary-button:hover {
    background-color: #9c4646;
    transform: translateY(-1px);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #888888;
}

/* Seção Vantagens */
.advantages {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0eae1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-item {
    text-align: left;
    padding: 20px;
}

.adv-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 14.5px;
    color: #666666;
}

/* Como Funciona */
.how-it-works {
    padding: 80px 0;
    background-color: #faf8f5;
    border-top: 1px solid #f0eae1;
    border-bottom: 1px solid #f0eae1;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.step-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 6px;
    border: 1px solid #f0eae1;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #b85a5a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 20px auto;
}

/* Simulation Section (Chat) */
.simulation-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.chat-container {
    max-width: 600px;
    margin: 0 auto 40px auto;
    background-color: #efeae2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e0dad0;
}

.chat-header {
    background-color: #075e54;
    color: #ffffff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background-color: #128c7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.chat-status strong {
    display: block;
    font-size: 15px;
}

.chat-status span {
    font-size: 12px;
    opacity: 0.8;
}

.chat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 480px;
    overflow-y: auto;
}

.message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14.5px;
    text-align: left;
    line-height: 1.4;
    word-wrap: break-word;
}

.message.incoming {
    background-color: #ffffff;
    align-self: flex-start;
    color: #111111;
    border-top-left-radius: 0;
}

.message.outgoing {
    background-color: #d9fdd3;
    align-self: flex-end;
    color: #111111;
    border-top-right-radius: 0;
}

/* PDF Box */
.pdf-result-box {
    background-color: #faf8f5;
    border: 1px solid #f0eae1;
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.pdf-result-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 12px;
}

.pdf-result-box p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 24px;
}

/* Seção Garantia */
.warranty-section {
    padding: 60px 0;
    background-color: #faf8f5;
    border-top: 1px solid #f0eae1;
}

.warranty-box {
    background-color: #ffffff;
    border: 1px solid #f0eae1;
    border-radius: 8px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.warranty-badge {
    background-color: #b85a5a;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.2;
    min-width: 140px;
}

.warranty-badge span {
    display: block;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 5px;
}

.warranty-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.warranty-text p {
    font-size: 15px;
    color: #555555;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0eae1;
}

.faq-item {
    max-width: 650px;
    margin: 0 auto 30px auto;
    text-align: left;
    border-bottom: 1px solid #f0eae1;
    padding-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* Footer & Rodapé Técnico */
.footer {
    background-color: #111111;
    color: #ffffff;
    padding: 80px 0 40px 0;
}

.footer h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer p {
    color: #999999;
    margin-bottom: 35px;
}

.footer .cta-button {
    background-color: #ffffff;
    color: #111111;
}

.footer .cta-button:hover {
    background-color: #b85a5a;
    color: #ffffff;
}

.footer-links {
    margin-top: 60px;
    border-top: 1px solid #222222;
    padding-top: 30px;
    font-size: 14px;
    color: #777777;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #b85a5a;
}

.legal-pages {
    margin-top: 10px;
}

.divider {
    margin: 0 10px;
    color: #333333;
}

.copyright {
    margin-top: 30px !important;
    font-size: 12px !important;
    color: #444444 !important;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    .description { font-size: 16px; }
    .cta-button, .secondary-button {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
    }
    .advantage-item { text-align: center; padding: 10px 0; }
    .warranty-box { flex-direction: column; text-align: center; padding: 30px 20px; }
    .warranty-badge { width: 100%; }
    .message { max-width: 90%; }
}