html {
	background: radial-gradient(farthest-corner at right top,#bcb4e2, #f7bed0);
	height: 100%;
    min-height: 100vh;
    margin: 0em;
    padding: 2em;
	font-family: Georgia, 'Times New Roman', Times, serif;
}
.app-titulo {
    width: 100%;
    text-align: center;
    margin-bottom: 2em;
}

.app-titulo h1 {
    font-size: 4em;
    color: #703053;
    font-family: 'Georgia', serif;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px #f7bed0;
    margin: 0;
}
.conteudo {
	padding: 10vh 1em 0;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
	gap: 20px;
}

.principal h1  {
    color: #FFFFFF;
    font-size: 2em;
    margin: 0 0 0.5em;
}

.principal h2, .doisDias h2, .tresDias h2, .quatroDias h2, .cincoDias h2, .seisDias h2, .seteDias h2 {
    color: #FFFFFF;
    font-size: 1.5em;
    margin: 0 0 0.5em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
}

.principal p {
    color: #FFFFFF;
    font-size: 1.2em;
    margin: 0 0 1em;
}

.exercicio:after {
    margin-left: 67px;
    margin-top: -30px;
    background: #cca16a;
    width:26px;
    height:26px;
    border: 3px solid #491033;
    border-radius: 3px;
    transform: rotate(45deg);
}
.adicionar {
    width: 50%;
    flex: 1 1 300px;    
    max-width: 350px;
}
.adicionar input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin: 0.5em 0 1em;
    padding: 1em 0.5em;
    border-radius: 10px;
    border: 2px solid #3d1e3c;
    font-size: 1em;
}
.adicionar label {
    display: block;
}
.cadastrar {
    background-color: #3d1e3c;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 1em;
    padding: 0.5em 1em;
}
.lista {
    margin: 0;
    padding: 0;
    flex: 2 1 400px;          /* Lista ocupa mais espaço */
    max-width: 500px;
    min-width: 200px;
}
.item {
    list-style: none;
    padding: 0.6em 2em;
    background: #FFFFFF;
    border-radius: 1px;
    margin: 0 0 1em;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    word-break: break-word;
    align-items: center;
    gap: 1em;
    font-size: 20px;
}
.item strong {
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b16e93;
    font-weight: 400;
    padding: 0.5em 1em; /* Ajusta o tamanho conforme o conteúdo */
    min-width: 10px;    /* garante tamanho mínimo */
}
.exercicio {
    flex: 0 0 200px;
    max-width: 200px;
    border-radius: 10px;
    background-color: #ccc;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    max-width: 300px;
}

.exercicio button {
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 0.5em;
    cursor: pointer;
    font-size: 14px;
    position: absolute;
    bottom: 20px;
    border-radius: 5px;
    font-size: 1em;
    padding: 0.5em 1em;
}

.item button {
    margin-left: auto;
    background: #b16e93;
    color: #FFFFFF;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-size: 1em;
    padding: 0.5em 0.5em;
    }

.principal, .doisDias, .tresDias, .quatroDias, .cincoDias, .seisDias, .seteDias {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    flex-grow: 1;
	flex-basis: auto;
	min-width: 300px;
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
	padding: 5vh 2em 2em;
	box-sizing: border-box;
	background: #703053;
	border-radius: 10px;
	gap: 2em;
    overflow: auto;
}

    /* para dispositivos moveis */
    @media (max-width: 900px) {
.principal {
    flex-direction: column;
    align-items: stretch;
    }
.exercicio, .adicionar, .lista {
    max-width: 100%;
    width: 100%;
    }
}
