@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}



header {
    background-color: #004a8d;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .navbar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

header .navbar a:hover {
    color: #ffd700;
}

header .search-bar {
    display: flex;
    align-items: center;
}

header .search-bar input {
    padding: 5px;
    border: none;
    border-radius: 3px;
}


.banner-slider {
    position: relative;
    max-width: 100%;
    height: 400px; 
    overflow: hidden;
}

.banner-slider .slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-slider .slide.active {
    display: block;
}

.banner-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajustar a imagem ao tamanho do banner */
}

.banner-slider .slide .slide-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
}

.banner-slider .slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.banner-slider .slider-controls button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s;
}

.banner-slider .slider-controls button:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Botões principais */
.main-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.main-buttons .button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: #004a8d;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.main-buttons .button:hover {
    background: #003b70;
}

/* Conteúdo adicional */
.content {
    text-align: center;
    padding: 20px;
}

.content h1 {
    color: #333;
    font-size: 24px;
}

/* Rodapé */
footer {
    background: #004a8d;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

