.phone-frame {
    position: relative;
    width: 340px;
    background: #1a1a1a;
    border-radius: 44px;
    padding: 10px 14px 14px;
    box-shadow:
        0 0 0 2px #3a3a3a,
        0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Botões laterais */
.phone-frame::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 80px;
    width: 4px;
    height: 32px;
    background: #2a2a2a;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 44px 0 #2a2a2a;
}

.phone-frame::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 110px;
    width: 4px;
    height: 60px;
    background: #2a2a2a;
    border-radius: 0 3px 3px 0;
}

/* Ilha dinâmica */
.phone-frame__notch {
    width: 290px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 20px;
    margin: 0 auto 6px;
    position: relative;
    z-index: 2;
}

/* Tela */
.phone-frame__screen {
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 9 / 19.5;
}

.phone-frame__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}