/* ================================
   DESIGN SYSTEM - PÁGINA DE AGRADECIMENTO
   Estilo: Moderno, Clean & Premium
   ================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    /* Cores Principais */
    --primary: #1a8754;
    --primary-dark: #156b44;
    --primary-light: #22a366;
    --primary-soft: #e8f5ef;

    /* Cores de Sucesso */
    --success: #27ae60;
    --success-light: #d4edda;
    --success-dark: #1e7e34;

    /* Cores de Destaque */
    --accent: #6c5ce7;
    --accent-light: #a29bfe;
    --accent-soft: #f0efff;

    /* Neutros */
    --text: #2c3e50;
    --text-light: #7f8c8d;
    --text-muted: #95a5a6;
    --white: #FFFFFF;
    --background: #f8faf9;
    --background-alt: #f0f7f4;
    --divider: #e1e8ed;
    --card-shadow: rgba(26, 135, 84, 0.12);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito', 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--white) 30%);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   SEÇÃO: AGRADECIMENTO PRINCIPAL
   ================================ */

.section-thankyou {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--success-light) 0%, var(--white) 100%);
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--success) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.35);
    animation: pulse-success 2s ease-in-out infinite;
}

.checkmark {
    font-size: 60px;
    color: var(--white);
    font-weight: 900;
}

@keyframes pulse-success {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(39, 174, 96, 0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(39, 174, 96, 0.45);
    }
}

.thankyou-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(26, 135, 84, 0.1);
}

.thankyou-subtitle {
    font-size: 22px;
    color: var(--text);
    line-height: 1.6;
    font-weight: 500;
}

.thankyou-subtitle strong {
    color: var(--success);
    font-weight: 700;
}

/* ================================
   SEÇÃO: INFORMAÇÕES DE ACESSO
   ================================ */

.section-access {
    padding: 40px 0;
    background: var(--white);
}

.access-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 8px 30px var(--card-shadow);
    border: 1px solid var(--divider);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px var(--card-shadow);
}

.access-card.highlight {
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--white) 100%);
    border: 2px solid var(--accent);
}

.access-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.access-card h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.access-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.access-card p strong {
    color: var(--primary);
}

.access-tip {
    font-size: 16px !important;
    color: var(--text-muted) !important;
    font-style: italic;
    background: var(--background);
    padding: 12px 18px;
    border-radius: 10px;
    display: inline-block;
}

.access-tip strong {
    color: var(--text) !important;
}

.access-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.35);
    transition: all 0.3s ease;
}

.access-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.45);
    background: linear-gradient(135deg, #5f4dd0 0%, var(--accent) 100%);
}

/* ================================
   SEÇÃO: PRÓXIMOS PASSOS
   ================================ */

.section-steps {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--background-alt) 100%);
}

.steps-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: var(--text);
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 6px 25px var(--card-shadow);
    border: 1px solid var(--divider);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateX(5px);
}

.step-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(26, 135, 84, 0.3);
}

.step-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.step-card p {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.step-card p strong {
    color: var(--primary);
}

/* ================================
   SEÇÃO: SUPORTE
   ================================ */

.section-support {
    padding: 50px 0;
    background: var(--white);
}

.support-card {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--accent-soft) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--divider);
}

.support-card h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.support-card p {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.support-email {
    font-size: 20px !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    margin-top: 20px !important;
    padding: 15px 30px;
    background: var(--white);
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 5px 15px var(--card-shadow);
}

/* ================================
   SEÇÃO: FOOTER
   ================================ */

.section-footer {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
}

.section-footer p {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.footer-small {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 10px !important;
    font-weight: 400 !important;
}

/* ================================
   RESPONSIVIDADE
   ================================ */

@media (max-width: 768px) {
    .section-thankyou {
        padding: 40px 0 30px;
    }

    .success-icon {
        width: 100px;
        height: 100px;
    }

    .checkmark {
        font-size: 48px;
    }

    .thankyou-title {
        font-size: 28px;
        padding: 0 10px;
    }

    .thankyou-subtitle {
        font-size: 18px;
        padding: 0 10px;
    }

    .access-card {
        padding: 28px 22px;
    }

    .access-card h2 {
        font-size: 22px;
    }

    .access-card p {
        font-size: 16px;
    }

    .access-button {
        padding: 15px 35px;
        font-size: 16px;
        width: 100%;
    }

    .steps-title {
        font-size: 24px;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .step-card h3 {
        font-size: 18px;
    }

    .step-card p {
        font-size: 15px;
    }

    .support-card {
        padding: 30px 20px;
    }

    .support-card h2 {
        font-size: 22px;
    }

    .support-card p {
        font-size: 16px;
    }

    .support-email {
        font-size: 17px !important;
        padding: 12px 20px;
    }

    .section-footer p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .success-icon {
        width: 90px;
        height: 90px;
    }

    .checkmark {
        font-size: 42px;
    }

    .thankyou-title {
        font-size: 24px;
    }

    .thankyou-subtitle {
        font-size: 16px;
    }

    .access-icon {
        font-size: 40px;
    }

    .access-card h2 {
        font-size: 20px;
    }

    .access-card p {
        font-size: 15px;
    }

    .access-tip {
        font-size: 14px !important;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .section-footer {
        padding: 30px 0;
    }
}

/* ================================
   ANIMAÇÕES EXTRAS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.access-card,
.step-card,
.support-card {
    animation: fadeInUp 0.6s ease-out;
}

.access-card:nth-child(1) {
    animation-delay: 0.1s;
}

.access-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.3s;
}