body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #182b5e;
}

header nav {
    background-color: #182b5e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

header nav .logo img {
    height: 50px;
    margin-left: 20px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header .slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

header .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

header .slide.active {
    opacity: 1;
}

header .slide .overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente para melhor leitura do texto */
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

header .cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #749dae;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

main {
    padding: 20px;
}

section {
    margin: 40px 0;
    padding: 20px;
    border: 1px solid #749dae;
    border-radius: 10px;
    background-color: #ffffff;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.grid .card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 5px;
    padding: 1px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
    width: 30%;
}

.grid .card:hover {
    transform: scale(1.05);
    background-color: #e9f1f7;
}

.grid .icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #749dae;
}

.circular .card {
    border-radius: 50%;
    width: 25%;
    padding: 40px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input, form textarea, form button {
    width: 80%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    background-color: #182b5e;
    color: white;
    cursor: pointer;
    border: none;
}

form button:hover {
    background-color: #749dae;
}

footer {
    background-color: #182b5e;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Estilo para o ícone flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.whatsapp-float .whatsapp-icon {
    margin-top: 16px;
}

/* Estilos para o slideshow #182b5e;*/
.slideshow {
    position: relative;
    width: 100%;
    height: 400px; /* Ajuste a altura conforme necessário */
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay escuro para melhorar a legibilidade do texto */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.slide .text {
    font-size: 2em;
    margin-bottom: 20px;
}

.cta-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}