:root {
  --primary-color: #133659;
  --secondary-color: #dcac39;
  --default-color: #717171;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--default-color);
  font-weight: 300;
  font-size: 0.92rem;
}

.section-title {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary-color);
  padding-bottom: 40px;

}
.top-title{
  color: var(--secondary-color);
  padding-left: 60px;
  background: url('../images/bg-top-title.png') left center no-repeat;
}
.section{
  padding-top: 70px;
  padding-bottom: 70px;
}
/*.hero img {
  max-height: 500px;
  object-fit: cover;
}*/
.bg-primary{
  background: var(--primary-color)!important;
}
.bg-secondary{
  background: var(--secondary-color)!important;
}
.navbar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
}

.navbar {
  font-size: 1em;
  margin-top: 25px;
}
.navbar .container{
  border-radius: 20px;
  padding: 10px 20px;
  background: #fff;
}
.navbar .nav-link {
  color: var(--default-color);
  font-weight: 300 !important;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--secondary-color);
}

.card-custom {
  background: var(--secondary-color);
  color: #4e4e4e;
  padding: 40px;
  border-radius: 20px;
}
.card-custom h5{
  font-weight: 700;
  color: var(--primary-color);
  font-size: 2.5rem;
  padding-bottom: 20px;
}
.top-title-white{
  color: #fff;
  padding-left: 60px;
  background: url('../images/bg-top-title-white.png') left center no-repeat;
}

.service-box,
.project-box {
  background: var(--secondary-color);
  color: #000;
  border-radius: 20px;
}
.service-box img{
  border-radius: 20px 20px 0 0;
}
.service-box-body{
  padding: 30px 34px;
  color: #4e4e4e;
}
.service-box-body h6{
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.card-custom h6 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.8rem;
}

.btn-warning {
  background: var(--secondary-color);
  border: none;
  color: #fff;
  font-weight: 600;
}

.btn-warning:hover {
  background: #c7962d;
}
.clientes img{
  border-radius: 20px;
  border: 1px solid var(--secondary-color);
}
.clientes img:hover{
  border: 1px solid var(--primary-color);
}
.btn {
  border-radius: 20px;
  font-weigh: 300;
  font-size: 0.9rem;
  padding-left: 20px;
  padding-right: 20px;
}
.btn-primary{
  background: var(--primary-color);
  border: none;
}
.btn-white{
  background: #fff;
  border: none;
}
.btn-white:hover{
  background: var(--primary-color);
  color: #fff;
}
.btn-secondary{
  background: var(--secondary-color);
  color: var(--primary-color);
}
footer{
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1em;
  color: #fff;
  line-height: 1.65em;
  color: var(--color-default);
}
footer a{
  text-decoration: none;
  color: var(--color-dark);
  float: right;
}
footer img{
  margin: 0 0 0 10px;
}
footer a img:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease; /* Suaviza a transição */
}
input{
  height: 50px;
  margin-bottom: 15px;
  border-radius: 20px!important;
}
textarea{
  margin-bottom: 25px;
  border-radius: 20px!important;
}
::-webkit-input-placeholder{
  color: var(--color-neutral)!important;
}
:-ms-input-placeholder{
  color: var(--color-neutral)!important;
}
::placeholder{
  color: var(--color-neutral)!important;
}
@media (max-width: 576px) {
	.icon-contact{
		text-align: center;
		display: block;
	}
	.icon-contact img{
		clear: both;
		display: block;
		margin: 5px auto;
	}
}