/* Importação de Fontes para o visual sofisticado e aconchegante */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Nunito+Sans:wght@400;600;700&display=swap');

/* Reset Básico e Otimizações */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: #444;
    background-color: #f0f4f8; /* Fundo cinza suave */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* --- ELEMENTOS GERAIS --- */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

p, ul, li {
    font-family: 'Nunito Sans', sans-serif;
}

a {
    color: #E6007A;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #CC006B;
}

.pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(0, 0, 0, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(0, 0, 0, 0.4); }
}

/* --- HEADER DE AGRADECIMENTO --- */
.thankyou-header {
    background: linear-gradient(135deg, #1A237E, #3F51B5); /* Gradiente de azul escuro a roxo */
    color: #fff;
    text-align: center;
    padding: 4rem 0;
    border-bottom-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
    position: relative;
    overflow: hidden;
}

.site-logo {
    max-width: 200px;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #4CAF50; /* Verde de sucesso */
    margin-bottom: 1rem;
}

.hero-content h1 .fas {
    margin-right: 0.5rem;
}

.hero-content p.lead {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem; /* Adiciona espaçamento antes do novo botão */
}

/* NOVO BOTÃO: CTA DE ATALHO */
.btn-special {
    display: inline-block;
    background-color: #FFD700; /* Dourado de destaque */
    color: #1A237E; /* Texto em azul escuro para alto contraste */
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: 1rem; /* Espaçamento com o texto de cima */
}

.btn-special:hover {
    background-color: #E6C200; /* Dourado um pouco mais escuro no hover */
    transform: translateY(-0.2rem);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
}
.btn-special .fas {
    margin-right: 0.8rem;
}

/* --- SEÇÃO UPSELL --- */
.upsell-section {
    padding: 5rem 0;
}

.upsell-content {
    text-align: center;
}

.headline-wrapper {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.headline-wrapper h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #E6007A;
    margin-bottom: 1rem;
}

.headline-wrapper h2 .fas {
    margin-right: 0.5rem;
}

.headline-wrapper p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #666;
    line-height: 1.5;
}

.upsell-offer-box {
    background-color: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap; /* Permite que os elementos se empilhem em telas menores */
}

.image-placeholder {
    flex: 1 1 300px; /* Adapta-se melhor a telas menores */
    min-width: 250px;
    height: auto;
    background-color: #f5f5f5;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #bbb;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
}

.text-content {
    flex: 1 1 400px; /* Adapta-se melhor a telas menores */
    text-align: left;
}

.text-content h3 {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.text-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: #E6007A;
    margin-bottom: 1rem;
}

.text-content h2 .fas {
    margin-right: 0.5rem;
}

.text-content p.highlight {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.text-content li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.text-content li .fas {
    color: #4CAF50;
}

.discount-info {
    text-align: center;
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E6007A;
    display: block;
    line-height: 1;
    margin-top: 0.5rem;
}

.limited-time {
    font-size: 1rem;
    color: #FF7B00;
    font-weight: 600;
    margin-top: 0.5rem;
}

.btn-upsell {
    display: inline-block;
    background-color: #E6007A;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(230, 0, 122, 0.3);
    transition: all 0.3s ease;
}

.btn-upsell:hover {
    background-color: #CC006B;
    transform: translateY(-0.2rem);
    box-shadow: 0 15px 30px rgba(230, 0, 122, 0.4);
}

.btn-upsell .fas {
    margin-right: 0.8rem;
}

/* --- RODAPÉ --- */
.thankyou-footer {
    background-color: #212121;
    color: #A0A0A0;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.thankyou-footer a {
    color: #B0B0B0;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .thankyou-header {
        padding: 3rem 1rem;
        border-bottom-left-radius: 3rem;
        border-bottom-right-radius: 3rem;
    }
    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .hero-content p.lead {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
    .upsell-section {
        padding: 3rem 0;
    }
    .upsell-offer-box {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    .text-content {
        text-align: center;
    }
    .text-content ul {
        text-align: left;
    }
    .btn-upsell {
        width: 100%;
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        padding: 1rem 2rem;
    }
}