body {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.bg-container {
    max-width: 1024px;
    width: 1024px;
    height: 1100px;
    background: var(--surface-primary);
}

.container-home {
    display: flex;
    flex-direction: column;
    max-width: 1024px;
    width: 100%;
    height: 100vh;
    justify-content: space-between;
    align-items: center;
    background: var(--color-rosa-60, #DE313D);
    overflow: hidden;

}

.content-home {
    display: flex;
    padding: 96px 48px;
    flex-direction: column;
    align-items: center;
    gap: 96px;
    align-self: stretch;
}

.title-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.container-button {
    position: relative;
    display: flex;
    align-self: stretch;
    padding: 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: auto;

    overflow: hidden;
}

.button-cta {
    display: flex;
    align-self: stretch;
    padding: 24px;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    background: var(--color-rosa-60);
    border-radius: 16px;
    border: none;

    cursor: pointer;
}

.button-cta:active {
    border-radius: 16px;
    background: var(--color-rosa-80, #9A111A);
}

.button-cta:disabled {
    background-color: #D6D6D6;
}

.button-cta:disabled h2 {
    background-color: #707070
}

.button-cta-invert {
    display: flex;
    align-self: stretch;
    padding: 24px;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    background: var(--surface-secondary);
    border-radius: 16px;
    border: none;

    cursor: pointer;
    gap: 16px;
}

.button-cta-invert h4 {
    color: var(--color-rosa-60);
}

.button-cta-invert:active {
    background: var(--surface-primary);
}


select {
    display: flex;
    width: 100%;
    padding: 24px;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(/images/chevron-down.svg) white no-repeat calc(100% - 10px) !important;


    background: var(--surface-secondary);
    border-radius: 16px;
    border: none;

    color: var(--color-rosa-60);
    font-family: "Work Sans", "Sans Serif";
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}

select:focus {
    border-color: var(--color-rosa-60) !important;
}

option {
    color: var(--color-rosa-60, #DE313D);
    font-family: "Work Sans", "Sans Serif";
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

.heart-left {
    position: absolute;
    top: 536px;
    left: -137px;
    /* Remove overflow: hidden from here */
}

.heart-right {
    position: absolute;
    top: 80px;
    right: -100px;
    /* Using 'right' helps keep it stuck to the right edge */
    left: auto;
    /* Overrides your previous left setting */
}

.container-survey {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    background: var(--surface-primary);
}

.content-survey {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.email {
    height: 100vh;
    justify-content: space-between;
    gap: 96px;
}

.content-survey h2 {
    color: var(--color-rosa-60, #DE313D);
    text-align: center;
}

.header-survey {
    display: flex;
    flex-direction: row;
    padding: 48px 24px;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.header-survey h2 {
    color: var(--color-rosa-60, #DE313D);
    text-align: center;
}

.choice-container {
    display: flex;
    padding: 0 48px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
}

.choice-container h4 {
    color: var(--color-rosa-60, #DE313D);
}

.content-survey h3 {
    text-align: center;
}

.text-desconto {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.dropdown-content {
    display: flex;
    align-self: stretch;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.multiple-choice-content {
    display: flex;
    align-self: stretch;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.choice-group {
    display: flex;
    align-self: stretch;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.choice-group h5 {
    color: var(--color-rosa-60);
    font-weight: 500;
}

.button-choice {
    display: flex;
    align-self: stretch;
    width: 100%;
    padding: 24px;
    justify-content: center;
    align-items: center;

    background: var(--surface-secondary);
    border-radius: 16px;
    border: none;

    cursor: pointer;
}


.button-choice.selected {
    background-color: var(--color-rosa-60);
}

.button-choice.selected h5 {
    color: var(--text-invert);
}

.container-button svg {
    position: absolute;
    left: -100px;
    bottom: -70px;
}

.header-survey h5 {
    color: var(--text-default);
    text-align: center;
}

.email-push-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px;
    gap: 48px;
}

.email-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 16px;
}

.email-content h4 {
    color: var(--color-rosa-60);
}

input[type=email] {
    display: flex;
    padding: 24px;
    align-items: center;
    align-self: stretch;

    box-sizing: border-box;

    border: none;
    border-radius: 16px;
    background: var(--surface-secondary);


    font-family: "Work Sans", "Sans Serif";
    font-size: 20px;
    line-height: 24px;
    color: var(--color-rosa-60);
    font-weight: 500;

}

.image-container {
    display: flex;
    width: 100%;
    padding: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 96px;
}

.image-container h3 {
    text-align: center;
}

.image-content {
    display: flex;
    width: 100%;
    height: fit-content;
    justify-content: center;
    align-items: flex-start;
    gap: 92px;
    align-content: space-between;
}

.image-e-heart {
    position: relative;
    width: 300px;
    height: 300px;
}

.profile-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.border-box {
    outline-offset: 5px;
}

.logo-img,
.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heart-bottom-right {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: fit-content;
}

.heart-top-left {
    position: absolute;
    top: -20px;
    left: -20px;
    width: fit-content;
}