@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chocolate+Classical+Sans&family=Rakkas&display=swap');

:root {
    --primary-color: #026773;
    --secondary-color: #3CA6A6;
    --text-color: #024959;
    --background-color: #F2E3D5;
    --button-hover: #012E40;
    --font-body: "Chocolate Classical Sans", serif;
    --font-titulo: "Rowdies", sans-serif;
    --fontw-titulo: 400;
    --fonts-titulo: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

h3 {
    margin-top: 25px;
}

p {
    margin-top: 20px;
}

img {
    margin-top: 20px;
    max-width: 90%;
    border-radius: 20px;
}

header {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px;
}

header span {
    font-size: 2em;
    font-family: var(--font-titulo);
    font-weight: var(--fontw-titulo);
    font-style: var(--fonts-titulo);
    padding: 5px;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 10px;
    border: 5px solid white;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

nav ul {
    list-style: none;
    padding: 10px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

.conteudo {
    background: white;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

ul {
    list-style-type: square;
    margin: 10px 0;
    padding-left: 20px;
}

.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: white;
}

footer {
    text-align: center;
    padding: 20px;
    background: var(--primary-color);
    color: white;
}

footer .cta-footer {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer .cta-footer:hover {
    text-decoration: underline;
}

iframe {
    text-align: center;
}

@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%;
    }
}