@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap');

/* Variáveis */
:root {
    --primary-color: #ff00ff;
    --secondary-color: #eeff00;
    --text-color: #5eff00;
    --background-color: #00fcc5;
    --button-hover: #ff0000;
    --font-body: "Comic Relief", serif;
    --font-titulo: "Comic Relief", serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

/* Corpo da página */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

h3 {
    margin-top: 25px;
}

p {
    margin-top: 20px;
}

img {
    max-width: 90%;
}
/* Cabeçalho */
header {
    background: var(--primary-color);
    color: rgb(255, 0, 0);
    text-align: center;
    padding: 20px;
}

header h1 {
    font-family: var(--font-titulo);
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    padding: 10px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: rgb(255, 0, 0);
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Seções principais */
.conteudo {
    background: rgb(255, 0, 0);
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Listas */
ul {
    list-style-type: square;
    margin: 10px 0;
    padding-left: 20px;
}

/* Botões */
.cta-button {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 10px;
    background: var(--secondary-color);
    color: var(--text-color);
    text-align: center;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button:hover {
    background: var(--button-hover);
    color: rgb(255, 0, 0);
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-image:"/tmp/guest-heyn3m/Downloads/images (2).jpeg"
}

footer .cta-footer {
    color: rgb(255, 0, 0);
    text-decoration: none;
    font-weight: bold;
}

footer .cta-footer:hover {
    text-decoration: underline;
}

iframe {
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .conteudo {
        width: 90%;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    .cta-button {
        width: 100%;
    }
}
