* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    background-color: #f4f4f4;
    color: #333;
}

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    background-color: #1a73e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.navbar a:hover:before {
    width: 100%;
}

/* Estilo para imagem de fundo */
.Img-Fundo {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.container-content {
    width: 100%;
    max-width: 1200px; /* Limita a largura máxima */
    padding: 20px; /* Adiciona espaçamento interno */
    margin: 0 auto; /* Centraliza o conteúdo */
}

/* Estilo para títulos e textos */
h2 {
    color: #1a73e8;
    margin: 20px 0 10px;
}

p {
    line-height: 1.6;
    margin: 10px 0;
}

/* Estilo para cards */
.card {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.card .card-title {
    color: #1a73e8;
    font-weight: bold;
}

.btn-primary {
    background-color: #1a73e8;
    border-color: #1a73e8;
}

.btn-primary:hover {
    background-color: #135ba1;
    border-color: #135ba1;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #1a73e8;
    color: #fff;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}
