@font-face {
    font-family: "ObjectSans";
    src:
        url("fonts/ObjectSans-Regular.woff2") format("woff2"),
        url("fonts/ObjectSans-Regular.woff") format("woff"),
        url("fonts/ObjectSans-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "ObjectSans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
}


.container {
    display: flex;
    height: 100vh;
}

/* Menu lateral */
.menu {
    width: 20vw;
    max-width: 200px;
    background-color: #52703E;
    color: #fff;
    font-size: 14px;
}

.menu ul {
    list-style: none;
}

.menu li {
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #333;
}

.menu li:hover {
    background-color: #36581f;
}

/* Área de conteúdo */
.content {
    width: 80vw;
    min-width: 300px;
    height: 100vh;
    padding: 40px;
    overflow: auto;
}

.content-item {
    display: none;
    height: 100%;
}

.content-item.active {
    display: block;
}

.content-item iframe {
    width: 100%;
    height: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 14px;
    display: block;
    box-sizing: border-box;
    background: #fff;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.10),
        0 2px 10px rgba(0, 0, 0, 0.06);
}


p {
    flex: 1;
    padding-top: 20px;
}
