@charset "UTF-8";
@font-face {
    font-family: 'idroid';
    src: url('../Arquivos/fontes/idroid.otf') format('opentype');
    font-weight: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #063d1e;
}

header {
    background: linear-gradient(to bottom, #2fa866, #063d1e);
    color: white;
    text-align: center;
    padding: 30px 10px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    margin-bottom: 20px;
}

header nav {
    text-align: center;
}

header a {
    text-align: left;
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

header a:hover {
    text-decoration: underline;
}

main {
    background-color: white;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 30px;
}

main h1 {
    font-family: 'idroid', sans-serif;
    color: #1a5c37;
    margin-bottom: 15px;
}

main h2 {
    font-family: 'idroid', sans-serif;
    color: #1a5c37;
    background: linear-gradient(to right, #c5ebd6, transparent);
    padding-left: 10px;
    margin: 20px 0 10px;
    border-radius: 10px;
}

main p {
    margin: 15px 0;
    line-height: 1.6;
    text-align: justify;
}

main a {
    color: #1a5c37;
    font-weight: bold;
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}

main img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
}
main p {
    text-indent: 20px;
}
.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 20px auto;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

#extra {
    background-color: #c5ebd6;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

#extra h3 {
    background-color: #2fa866;
    color: white;
    padding: 10px;
    margin: -15px -15px 10px -15px;
    border-radius: 10px 10px 0 0;
}

ul {
    list-style: none;
    columns: 2;
}

ul li::before {
    content: "✔ ";
    color: #2fa866;
}

footer {
    background-color: #042412;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    font-size: 14px;
}
main a {
    background-color: #c2ffd4;
    border-radius: 5px;
    color: rgb(8, 187, 32);
}
main a:after {
    content: "🔗";
}
footer a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}