/* ═══════════════════════════════════════════
   Obrigado — Confirmação de cadastro
   ═══════════════════════════════════════════ */

.obrigado-conteudo {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d1d20;
    overflow: hidden;
    text-align: center;
}

.obrigado-conteudo__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 160px 160px;
    pointer-events: none;
}

.obrigado-conteudo__container {
    position: relative;
    z-index: 1;
    max-width: 480px;
    padding: 80px 40px;
}

.obrigado-conteudo__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 28px;
    border-radius: 999px;
    background: rgba(0,128,255,.15);
    color: #0080ff;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.obrigado-conteudo__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.obrigado-conteudo__description {
    margin: 0 0 32px;
    color: rgba(255,255,255,.5);
    font-size: 16px;
    line-height: 1.6;
}

.obrigado-conteudo__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 28px;
    border-radius: 8px;
    background: #0080ff;
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s;
}

.obrigado-conteudo__btn:hover {
    background: #006ad4;
    color: #fff !important;
}

@media (max-width: 768px) {
    .obrigado-conteudo__container {
        padding: 60px 24px;
    }
}
