﻿/* Centralização vertical da modal */
.modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* fundo escuro */
    z-index: 999;
}

.modal-content {
    margin: 10px auto;
    /* centraliza horizontalmente com espaçamento */
    width: 90%;
    max-width: 600px;
    /* limite de largura */
    height: auto;
    max-height: 130vh;
    /* limite de altura baseado na viewport */
    padding: 20px;
    box-sizing: border-box;
    background: white;
    border-radius: 8px;
}

.icoCart {
    font-size: 40px;
    color: chocolate;
    cursor: pointer;
}

.icoCart:hover {
    border: 0px solid;
    transform: scale(1.2);
}

.display-topright {
    position: absolute;
    right: 0;
    top: 0
}