@import url('https://fonts.googleapis.com/css2?family=Turret+Road:wght@200;300;400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Iceland&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFF8DC;
    background-image: url('img/fundo.jpg');
    background-repeat: repeat;
    background-position: center center;
    background-attachment: fixed;
    font-family: 'Roboto Mono', monospace;
    color: #333300;
    padding: 90px;
}

.header {
    background-color: #CC9933;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

.header h1 {
    font-family: 'Turret Road', sans-serif;
    font-size: 40px;
    color: #FFF8DC;
    margin-bottom: 10px;
}

.header h2 {
    font-family: 'Iceland', sans-serif;
    font-size: 30px;
    color: #FFF8DC;
}

.summary,
.preamble,
.explanation,
.participation,
.benefits,
.requirements {
    background-color: #FFF0B3;
    border: 2px solid #CC9933;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

h3 {
    text-align: center;
    margin-bottom: 15px;
}

p {
    margin-bottom: 10px;
}

.sidebar {
    background-color: #FFE699;
    padding: 15px;
    border: 2px solid #CC9933;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar h3 {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin-bottom: 8px;
}

.sidebar a,
.footer a,
a {
    text-decoration: none;
    color: #663300;
    font-weight: bold;
}

.sidebar a:hover,
a:hover,
.footer a:hover {
    color: #FFCC33;
    text-decoration: underline;
}

.footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 15px;
    background-color: #CC9933;
    color: #FFF8DC;
    border-radius: 8px;
    margin-top: 30px;
}

.footer a {
    color: #FFF8DC;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: background-color 0.3s, border 0.3s;
}

.footer a:hover {
    background-color: #996633;
    border: 1px solid #FFF8DC;
}

#extraDiv1, #extraDiv2, #extraDiv3,
#extraDiv4, #extraDiv5, #extraDiv6 {
    width: 20px;
    height: 20px;
    background-color: #FFCC33;
    position: fixed;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    animation: pulse 2s infinite ease-in-out;
}

#extraDiv1 { top: 10px; left: 10px; }
#extraDiv2 { top: 10px; right: 10px; }
#extraDiv3 { bottom: 10px; left: 10px; }
#extraDiv4 { bottom: 10px; right: 10px; }
#extraDiv5 { top: 50%; left: 10px; transform: translateY(-50%); }
#extraDiv6 { top: 50%; right: 10px; transform: translateY(-50%); }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

#extraDiv1:hover, #extraDiv2:hover, #extraDiv3:hover,
#extraDiv4:hover, #extraDiv5:hover, #extraDiv6:hover {
    background-color: #996633;
}
