/* ========================
   FINAL
   ======================== */
.final {
    position: relative;
    width: 100%;
    min-height: var(--section-min-height);
    overflow: hidden;
}

.final-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

.final-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.final-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

/* Bloco esquerdo */
.final-left-block {
    position: absolute;
    top: 170px;
    left: 0;
    display: flex;
    width: 300px;
    height: 200px;
    padding: 0 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #CE252F;
    flex-shrink: 0;
}

.final-left-block img {
    width: 200px;
    height: 122px;
}

/* Ícones decorativos */
.final-icons {
    align-self: flex-end;
}

.final-icons img {
    height: 32px;
    width: auto;
}

/* Wrapper direito */
.final-right-wrapper {
    position: absolute;
    right: 300px;
    top: 175px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

/* Boxes empilhados */
.final-right-block {
    width: 380px;
    display: flex;
    flex-direction: column;
}

.final-box-text {
    background: #CE252F;
    padding: 16px 20px;
    color: #fff;
    font-family: var(--font-family);
    font-size: var(--text-size);
    line-height: 1.5;
}

.final-box-text strong {
    font-weight: 700;
}

.final-box-dark {
    background: rgba(100, 10, 10, 0.6);
    padding: 25px 20px;
    color: #fff;
    font-family: var(--font-family);
    font-size: var(--text-size);
    line-height: 1.5;
}

.final-box-dark strong {
    font-weight: 700;
}

.final-box-logo {
    background: #CE252F;
    padding: 30px 20px;
    text-align: center;
}

.final-box-logo img {
    max-width: 200px;
    height: auto;
}

/* CTA */
.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 250px;
    padding: 8px 14px;
    background: #CE252F;
    color: #fff;
    font-family: var(--font-family);
    font-size: var(--text-size);
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 400ms;
    line-height: 1.3;
    align-self: flex-start;
}
