#hero-wrapper {
    background: url(../img/landing/hero.png) no-repeat center center/cover;
    height: 100%;
    min-height: 85vh;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 60px;
    align-items: end;
    padding: 5rem;
    padding-bottom: 0;
}

#hero-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    margin-bottom: 3vw !important;
    margin: 0 auto;
}

#hero-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50vw;
    max-width: fit-content;
}

.callback-card {
    background: rgba(var(--primary));
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.callback-card img {
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    height: 100%;
    width: 100%;
    position: relative;
    right: 0;
    margin-left: auto;
    display: flex;
    object-fit: cover;
}

.callback-card-left {
    padding-left: 10rem;
    padding-right: 2rem;
}

.callback-chat {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    scrollbar-width: none;
}


.callback-card-right {
    display: flex;
    width: 75%;
    height: 20rem;
    background: rgba(var(--dead-white));
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    padding: 2rem;
    border-top: 1px solid rgba(var(--gray), .2);
    border-right: 1px solid rgba(var(--gray), .2);
    border-bottom: 1px solid rgba(var(--gray), .2);
    align-items: center;

}

.ai-message .message-box {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    font-size: .9rem;
    background: rgba(var(--gray));
    color: rgba(var(--dead-white));
    font-weight: 400;
    margin-bottom: 1rem;
    width: fit-content;
    max-width: 70%;
}


.user-message .message-box {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    font-size: .9rem;
    background: white;
    color: rgba(var(--gray));
    font-weight: 500;
    margin-bottom: 1rem;
    width: fit-content;
    max-width: 90%;
}

.user-message {
    width: 100%;
    display: flex;
    justify-content: end;
}

.ai-message {
    display: flex;
}

.ai-message img {
    margin-right: .5rem;
}

.user-message img {
    margin-left: .5rem;
    border: 2px solid rgba(var(--gray), .2);
}

.message img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
}

.callback-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--dead-white), .2);
    position: absolute;
    border-radius: 10px;
    font-size: 2.5rem;
    color: rgba(var(--dead-white));
    left: 2.5rem;
}

.callback-icon::before,
.callback-icon::after {
    content: "";
    position: absolute;
    width: 2px;
    /* Espessura da linha */
    background: rgba(var(--dead-white), 0.2);
    /* Cor da linha */
    left: 50%;
    transform: translateX(-50%);
}

.callback-icon::before {
    top: -150%;
    height: 150%;
    /* Linha do topo até o ícone */
}

.callback-icon::after {
    bottom: -150%;
    height: 150%;
    /* Linha do ícone até o fim */
}

footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, .2);
}

#callback {
    margin-bottom: 3rem;
}

footer img {
    width: 6rem;
    margin-bottom: 2rem;
}

footer p {
    color: rgba(var(--gray), .6);
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
}

footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: .5rem;
}

footer ul li a {
    text-decoration: none;
    color: rgba(var(--gray));
    font-weight: 700;
    transition: .2s ease-in-out;
    text-transform: uppercase;
    font-size: .85rem;
}

.footer-box {
    width: 100%;
    padding: 2rem;
    border-radius: 30px;
    background: rgba(var(--dead-white));
}

.footer-box h2 {
    font-weight: 600;
    font-size: 1.75rem;
    color: rgba(var(--gray));
}

.feature-card-bottom {
    background: rgba(var(--dead-white));
    min-height: 17rem;
    padding: 2rem;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
}

.feature-card-bottom .ai-message .message-box {
    background: rgba(var(--primary)) !important;
}

.hero-chat {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50vw;
    /* max-width: fit-content; */
    background-color: rgba(var(--dead-white));
    border-top-right-radius: 60px;
    border-top-left-radius: 50px;
    height: 20rem;
    padding: 3rem;
    height: 18rem;
}