/* Reset basico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    background-color: #f0f8ff;
    /* Azul bebÃª bem clarinho, leve e retro */
    color: #333;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    border: 4px solid #99ccff;
    /* Borda fofa ao redor do conteÃºdo */
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3 {
    font-family: 'Georgia', serif;
    color: #336699;
    /* Azul geek bonito */
    margin-bottom: 15px;
}

h1 {
    font-size: 2.8rem;
    text-align: center;
    border-bottom: 4px dotted #ff99cc;
    /* Linha pontilhada rosa cute */
    padding-bottom: 15px;
    text-shadow: 2px 2px #ccf0ff;
}

h2 {
    font-size: 2.2rem;
    margin-top: 40px;
    border-left: 8px solid #99ccff;
    padding-left: 15px;
}

h3 {
    font-size: 1.8rem;
    color: #ff3366;
}

p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-align: justify;
}

a {
    color: #ff3366;
    text-decoration: underline dotted;
}

a:hover {
    color: #336699;
    background-color: #ffccff;
}

hr {
    border: none;
    border-top: 3px dashed #99ccff;
    margin: 40px 0;
}

ul,
ol {
    margin-left: 30px;
    margin-bottom: 25px;
}

li {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

/* Blocos de cÃ³digo - mais cute e legÃ­vel */
.pre-container {
    position: relative;
    background-color: #e6f2ff;
    /* Fundo azul pastel leve */
    border: 3px solid #99ccff;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    overflow: auto;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

pre {
    background: transparent;
    /* Remove fundo escuro */
    color: #333;
    font-size: 1.1rem;
    white-space: pre-wrap;
}

code {
    font-family: 'VT323', monospace;
    /* Ou 'Courier New' se nÃ£o tiver Google Fonts */
    color: #d6336c;
    /* Rosa pra keywords */
    background-color: #ffecff;
    padding: 2px 6px;
    border-radius: 5px;
}

/* BotÃ£o copy mais retro e fofo */
.copy-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    background-color: #ff99cc;
    /* Rosa cute */
    color: white;
    border: 2px solid #ff3366;
    border-radius: 15px;
    padding: 8px 15px;
    font-family: 'Press Start 2P', cursive;
    /* Fonte pixelada pequena */
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background-color: #ff3366;
    transform: scale(1.1);
    box-shadow: 3px 3px #ccf0ff;
}

/* SeÃ§Ãµes importantes - caixa nostÃ¡lgica */
.importante {
    background-color: #fff0f8;
    /* Rosa bebÃª leve */
    border: 4px dashed #ff99cc;
    border-radius: 20px;
    padding: 25px;
    margin: 40px 0;
    box-shadow: 5px 5px 15px rgba(255, 153, 204, 0.2);
}

.importante h3 {
    font-size: 1.8rem;
    color: #ff3366;
    text-align: center;
    margin-bottom: 15px;
}

.importante p,
.importante code {
    font-size: 1.2rem;
}

/* Header opcional */
header {
    text-align: center;
    margin-bottom: 50px;
}