* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.smartphone-container {
    position: relative;
    width: 100%;
    height: 100%; /* Para que a altura seja automática */
    aspect-ratio: 737 / 1600; /* Define a proporção da moldura do smartphone */
    max-width: 100vw;
    max-height: 100vh;
}

.smartphone-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.smartphone-iframe {
    position: absolute;
    top: 6%;
    left: 5%;
    bottom: 6%;
    border: none;
    right: 5%;
    width: calc(100% - 10%);
    height: calc(100% - 12%);
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.smartphone-iframe::-webkit-scrollbar {
    display: none; /* Esconde a barra de scroll no Chrome, Safari e outros */
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}