/* Importação das Fontes */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Roboto:wght@400;700&display=swap');

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f2f2f2;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Banner Superior */
.banner {
    background-color: #002e5d;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.banner h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.banner p {
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
}

/* Barra de Navegação */
.navbar {
    display: flex;
    justify-content: center;
    background-color: #00a1e0;
    padding: 10px 20px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.navbar ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #f2f2f2;
}

/* Barra de Seleção de Idiomas */
.language-bar {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 2px solid #f2f2f2;
}

.language-selector a {
    color: #002e5d;
    text-decoration: none;
    font-size: 1rem;
    margin: 0 10px;
    font-weight: bold;
    transition: color 0.3s;
}

.language-selector a:hover {
    color: #00a1e0;
}

/* Seção de Conteúdo */
section {
    background-color: #ffffff;
    margin: 20px auto;
    padding: 40px 20px;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 2rem;
    color: #002e5d;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 15px 0;
    color: #555;
}

.service-item {
    font-size: 1.2rem;
    font-weight: bold;
    color: #002e5d;
    margin-top: 15px;
}

.highlight {
    background-color: #00a1e0;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
    margin: 20px 0;
    font-size: 1.1rem;
    text-align: center;
}

.cta {
    text-align: center;
    margin-top: 20px;
}

.cta a {
    background-color: #002e5d;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta a:hover {
    background-color: #001f40;
}

/* Rodapé */
footer {
    background-color: #002e5d;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

footer a {
    color: #00a1e0;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #66c2ff;
}
