@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Abel|Alfa+Slab+One|Archivo+BlackArimo|Asap|Audiowide|Baloo+2|Baloo+Da+2|Baloo+Thambi+2|Bitter|Bowlby+One+SC|Comfortaa|Do+Hyeon|Lobster|Lobster+Two|Montserrat|Montserrat+Alternates|Muli|Noto+Sans|Noto+Sans+JP|Nunito|Open+Sans|Orbitron|Oswald|Oxygen|PT+Sans|Passion+One|Permanent+Marker|Questrial|Quicksand|Righteous|Ruda|Russo+One|Saira|Sen|Sigmar+One|Slabo+27px|Source+Sans+Pro|Titan+One|Vernon+Adams|Amatic+SC|Anton|Roboto|Exo+2|Exo|Rubik|Jura|Viga&display=swap');

body {
	font-family: Ruda, Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
	color: #333;
	transition: background-color 0.5s ease;
}
header {
	background-color: #000;
	height: 80px;
	color: #fff;
	padding: 20px 0;
	text-align: center;
	animation: fadeInDown 1s;
}
header h1 {
	margin: 0;
}
nav {
	background-color: #004080;
	height: 30px;
	padding: 10px 0;
	display: flex;
	justify-content: right;
	gap: 20px;
}
.menu a {
	color: #fff;
	margin: 3px;
	text-decoration: none;
	padding: 7px 10px;
	border: 2px solid #fff;
	border-radius: 5px;
	font-size: 14px;
	transition: background-color 0.3s, transform 0.3s;
}
.menu a:hover {
	background-color: #001f3f;
	transform: scale(1.1);
}
.hero {
	position: relative;
	background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), url('img/hero-image.jpg') no-repeat center center/cover;
	height: 300px;
	color: #fff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
	animation: fadeIn 1.5s;
}
.hero h2 {
	font-size: 2.5rem;
	position: absolute;
	bottom: 10px;
	left: 20px;
}
.carousel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	animation: slide 15s infinite;
}
 .carousel img:nth-child(1) {
animation-delay: 0s;
}
 .carousel img:nth-child(2) {
animation-delay: 5s;
}
 .carousel img:nth-child(3) {
animation-delay: 10s;
}
 @keyframes slide {
 0% {
opacity: 0;
}
 10% {
opacity: 1;
}
 40% {
opacity: 1;
}
 50% {
opacity: 0;
}
 100% {
opacity: 0;
}
}
section {
	padding: 20px;
	margin: 20px auto;
	max-width: 1200px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	animation: fadeInUp 1s;
}
section h2 {
	color: #004080;
}
footer {
	background-color: #001f3f;
	color: #fff;
	padding: 20px 0;
	text-align: center;
	animation: fadeInUp 1s;
}
footer a {
	color: #fff;
	margin: 0 10px;
	text-decoration: none;
	transition: color 0.3s;
}
footer a:hover {
	color: #ffa500;
}
#to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #004080;
	color: #fff;
	border: none;
	border-radius: 50%;
	padding: 15px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	font-size: 16px;
	display: none;
	transition: transform 0.3s;
}
#to-top:hover {
	transform: scale(1.1);
}

.CorpoClientes {
	margin: 0;
            padding: 0;
            background-color: #FFF;
            display: flex;
            justify-content: center;
            align-items: center;	
}
.carousels-container {
            width: 99%;
            overflow: hidden;
            position: relative;
        }
        .carousels {
            display: flex;
            animation: scroll 35s linear infinite;
        }
        .carousels div {
            min-width: 200px;
            height: 200px;
            margin: 0 10px;
        }
        .carousels img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-200px * 15)); }
        }


.Caixa_Servicos
{
	width: 250px;
	height: 220px;
	text-align: center;
	margin: 15px;
	display:inline-table;
	border-radius: 4px;
	border: 1px solid #DDD;
	cursor: pointer;
}

.Caixa_Servicos:hover
{
	width: 251px;
	height: 221px;
	border-radius: 5px;
	box-shadow: 5px 10px 18px #888888;
}

.cta-form
{
	background: #FFF);
	color: #000;
	text-align: center;
	/*padding: 2rem 1rem;*/
	border-radius: 8px;
	margin-top: 2rem;
}

.cta-form h2
{
	font-size: 2rem;
}

.form-group
{
	flex: 1 1 300px;
	display: flex;
	flex-direction: column;
}

.form-group label
{
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.form-group select,
.form-group input
{
	padding: 0.8rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
}

.btn
{
	background: #3C6;
	color: #FFF;
	padding: 0.8rem 1.5rem;
	font-size: 1.2rem;
	font-weight: bold;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s;
}

.btn:hover
{
	background: #45a049;
}



 @media (max-width: 768px) {
 nav {
 flex-wrap: wrap;
 justify-content: center;
 gap: 10px;
}
 .menu a {
 font-size: 12px;
 padding: 8px 10px;
}
}
 @keyframes fadeIn {
 from {
 opacity: 0;
}
to {
	opacity: 1;
}
}
 @keyframes fadeInDown {
 from {
 opacity: 0;
 transform: translateY(-20px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
 @keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(20px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
html {
	scroll-behavior: smooth;
}
