@charset "utf-8";
/* Marcelo Domingos - 27/08/2024 */
/* Reset básico e configuração global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #1F3F6D;
}

a {
  color: #FFFFFF;	
  text-decoration: none;
}

a:hover {
  color: #F79633;
}

header {
    background-color: #FEFEFE;
    color: #1F3F6D;
}
header .logotipo {
	width: 50%;
	height: auto;
	text-align: left;
	float: left;
	margin: 0 0 10px 0;
	
}
header .titulo {
	width: 50%;
	text-align: right;
	float: right;
}
h1 {
	font-size: 1.2em;
	padding: 20px 0 0 0;
}
.clr {clear: both}
.div-color {
    background-image: linear-gradient(to right, #EC268F,#0098DA,#3E4095,#FFF212,#00A859);
    height: 5px;
}
.menu {
	text-align: center;
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px 10px 10px;
}
.menu i {
	font-size: 2em;
	margin: 0 20px;
	color: #1F3F6D;
}
.menu i:hover {
  color: #F79633;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

#carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: auto;
    object-fit: cover;
}

button.prev, button.next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(31, 63, 109, 0.6);
    color: #FFFFFF;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

button.prev:hover, button.next:hover {
    background-color: rgba(31, 63, 109, 0.9);
}

#carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

#carousel-indicators div {
    width: 10px;
    height: 10px;
    background-color: rgba(31, 63, 109, 0.2);
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}

#carousel-indicators div.active {
    background-color: rgba(31, 63, 109, 0.7);
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #1F3F6D;
    color: #FFFFFF;
}

/* Estilo do modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0);}
    to {transform: scale(1);}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
	color: #1F3F6D;
	font-size: 18px;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 2px 5px;
	border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/* Estilo do contêiner do tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
/* Estilo do texto do tooltip */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: #1F3F6D;
    color: #fff;
    text-align: center;
	font-size: 14px;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
    opacity: 0;
    transition: opacity 0.3s;
}
/* Estilo da seta do tooltip */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
  }
/* Mostrar o tooltip ao passar o mouse sobre o elemento */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
/* Estilo responsivo para o modal */
@media only screen and (max-width: 700px) {
	.menu i {
		font-size: 1.8em;
		margin: 0 15px;
}
    .modal-content {
        width: 100%;
    }
	h1 {
		font-size: 1em;
	}
	.phone {
		display: none;
	}
}
