#obrigado {
    padding: 88px 0 100px;
    background: #f6f6f6;
}

.obrigado-box {
    padding: 44px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(23, 23, 23, 0.08);
    text-align: center;
}

.obrigado-texto {
    color: #3c3c3b;
    font-size: 18px;
    line-height: 1.8;
}

.obrigado-texto p:last-child {
    margin-bottom: 0;
}

.obrigado-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 24px;
    border-radius: 5px;
    background: #e7454a;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: 300ms ease-in-out;
}

.obrigado-btn::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 300ms ease-in-out;
}

.obrigado-btn:hover {
    background: #a63137;
    color: #fff;
    transform: translateY(-2px);
}

.obrigado-btn:hover::after {
    transform: translateX(4px) rotate(45deg);
}

@media (max-width: 767px) {
    .obrigado-texto {
        font-size: 16px;
    }

    #obrigado {
        padding: 60px 0 70px;
    }

    .obrigado-box {
        padding: 32px 24px;
    }

    .obrigado-btn {
        width: 100%;
    }
}
