.elementor-208 .elementor-element.elementor-element-58f2a7c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-31f25de *//* =========================
   THANK YOU PAGE
========================= */

.thankyou-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* pegamos arriba */
    min-height: auto; /* quitamos altura forzada */
    padding: 5vh 20px 40px; /* solo 5% arriba */
    background: #f8f9fb;
}

.thankyou-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 18px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.check-icon {
    width: 70px;
    height: 70px;
    background: #0d6efd; /* Azul marca */
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.thankyou-card h1 {
    font-size: 26px;
    margin-bottom: 15px;
}

.thankyou-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

.thankyou-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #0d6efd;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    background: #0b5ed7;
}

.btn-secondary {
    background: #eee;
    color: #333;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-secondary:hover {
    background: #ddd;
}

/* Mobile */
@media (max-width: 480px) {
    .thankyou-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }
}/* End custom CSS */