body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    background-color: #f0f0f0;
    user-select: none; /* Evita seleção de texto/imagens */
}

.container {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 600px;
}

.img-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: ew-resize; /* Indica que é possível arrastar horizontalmente */
}

.img-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-container .overlay {
    clip-path: inset(0 50% 0 0);
}

.divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
    background-color: #000;
    cursor: ew-resize;
    z-index: 10;
}

.body{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.header {
    display: flex;
    padding: 30px;
    justify-content: flex-start;
    width: 100%;
}
.header img{
    padding: 0px 20px;
}

.footer{
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 20px;
    justify-content: center;
}
.footer a{
    margin: 10px 30px;
}
.btn1{
    font-family: Lato, sans-serif;
    text-decoration: none;
    outline: none;
    padding: 10px 20px;
    color: #f07d02;
    border: 1px solid #f07d02;
    background: transparent;
    transition: all 0.4s ease;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 210px;
    text-align: center;
}

.btn1:hover {
    color: #fff;
    background: #f07d02;
}

.btn2{
    font-family: Lato, sans-serif;
    text-decoration: none;
    outline: none;
    padding: 10px 20px;
    color: #f07d02;
    border: 1px solid #f07d02;
    background: transparent;
    transition: all 0.4s ease;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 210px;
    text-align: center;
}

.btn2:hover {
    color: #fff;
    background: #f07d02;
}

.iframe-pdf{
    position: relative;
    border: none;
}
.back-btn-container{
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    justify-content: center;
}
.back-btn{
    max-width: 80px;
}