/* FONTES */

@font-face {
    font-family: 'dm_sansbold';
    src: url('fonts/dmsans-bold-webfont.woff2') format('woff2'),
         url('fonts/dmsans-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'dm_sansbold_italic';
    src: url('fonts/dmsans-bolditalic-webfont.woff2') format('woff2'),
         url('fonts/dmsans-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'dm_sansitalic';
    src: url('fonts/dmsans-italic-webfont.woff2') format('woff2'),
         url('fonts/dmsans-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'dm_sansmedium';
    src: url('fonts/dmsans-medium-webfont.woff2') format('woff2'),
         url('fonts/dmsans-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'dm_sansmedium_italic';
    src: url('fonts/dmsans-mediumitalic-webfont.woff2') format('woff2'),
         url('fonts/dmsans-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'dm_sansregular';
    src: url('fonts/dmsans-regular-webfont.woff2') format('woff2'),
         url('fonts/dmsans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

/* FIM FONTES */

/* GERAL */

body {
    margin: 0;
    font-family: 'dm_sansregular', sans-serif;
	
}

h1,
h2,
h3,
h4 {
	/* */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.carousel-dot.active {
	background-color: #001C71;
}

/* FIM GERAL */

/* UTILITIES */

.arrow {
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  position: relative; /* Add this property */
  top: -3px; /* Adjust this value to move the arrow up */
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* CONTATO UTILITIES */


.of_pokconsulta{
	text-align:center;
	margin-top:50px;
	line-height:130%;
	font-family: 'Open Sans', sans-serif;
	font-size:26px;
}

.none{
	display:none;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content */
.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 300px;
  text-align: center;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.message-container {
    min-height: 60px;
    margin-top: 15px;
    transition: min-height 0.3s ease;
}

/* FIM CONTATO UTILITIES */

/* FIM UTILITIES */

/* HEADER */

.pt {
   /* padding-top: 598px; */
}

.header-wrapper {
    width: 100%;
    background-color: #0b216f;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0b216f;
    padding: 10px 0;
	max-width: 1200px; 
    margin: 0 auto;
}

.logo {
    width: 90px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
	margin-left: auto;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-content {
    display: none;
    position: absolute;
    background-color: #0b216f;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 99;
    padding-inline-start: 0;
}

.nav-links .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.nav-links .dropdown-content a:hover {
    background-color: #00C4B3;
}

.nav-links .dropdown:hover .dropdown-content {
    display: block;
}

.nav-buttons .btn {
    border: 1px solid white;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    margin-left: 10px;
    font-size: 18px;
}

.nav-buttons .btn.contato {
    border-color: white;
}

.nav-buttons .btn.teste-gratis {
    background-color: white;
    color: #0b216f;
}

.nav-links ul {
	list-style: none
}

.dropdown-content li {
	margin: 0;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
}

/* FIM HEADER */

/* HOME */

.main {
    margin: 0;
    display: flex;
    align-items: center;
	flex-direction: column;
    height: 100vh;
    background-color: #f5f5f5;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    max-width: 1200px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-top: 20px;
}

.text-section {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.text-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
}

.text-block.selected .line {
    background-color: #001C71;
}

.text-block .line {
    width: 10px;
    background-color: transparent;
    margin-right: 10px;
    height: 130px;
    max-width: 3.422px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.text-block.selected .line {
    transform: translateY(18px);
}

.text-block:first-child.selected .line {
    transform: translateY(27px);
}

.text-block:last-child.selected .line {
    transform: translateY(16px);
}

.text-block .text-content {
    flex-grow: 1;
}

.text-block h2 {
    color: #001C71;
    margin-bottom: 10px;
}

.text-block p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.text-block span {
    color: #001C71;
}

.image-section {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
}

/* TESTIMONIAL */

.testimonial-section {
    width: 80%;
	max-width: 1200px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
}

.testimonial-section blockquote {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin: 11.363636% 0 20px 0;
	padding: 0 23.333333%;
	font-family: 'dm_sansbold';
}

.testimonial-section .author {
    display: flex;
    flex-direction: column;
    align-items: center;
	margin-bottom: 11.363636%;
}

.testimonial-section .author img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.testimonial-section .author p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.testimonial-section .author span {
    font-size: 14px;
    color: #666;
}

/* FIM TESTIMONIAL */

/* PRODUTOS */

.products-section {
    width: 80%;
    max-width: 1200px;
    background-color: white;
    padding: 40px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.title-grid{
	display: flex;
	flex-wrap:wrap;
}

.products-section h3, .news-section h3, .company-about h3{
    color: #0A1F8F;
    margin-bottom: 10px;
	font-family: 'dm_sansmedium';
	font-size: 16px;
}

.products-section h2 {
    color: #001C71;
    margin-bottom: 30px;
	font-family: 'dm_sansbold';	
	font-size: 36px;
}

.products-section .products-intro, .company-about .company-about-intro{
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
	width: 50%;
}

.product-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    min-height: 245.81px;
}

.product-set {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.next-set{
    justify-content: start;	
}

.product-item {
    width: 30%;
    text-align: left;
}

.product-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.product-item h4 {
	font-size: 1.5em;
	margin-left: 8px;
	font-family: 'dm_sansbold'
}

.product-item a img.product-icon {
    width: 36px;
    height: 36px;
}

.product-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-left: 50px;
}

.products-footer {
    display: flex;
    justify-content: left;
    align-items: center;
}

.products-footer .btn {
    border: 2px solid #001C71;
    padding: 10px 20px;
    text-decoration: none;
    color: #001C71;
    margin-right: 20px;
    font-size: 16px;
}

.products-footer .more-link {
    font-size: 16px;
    color: #001C71;
    text-decoration: none;
}

.products-footer .more-link:hover, .read-more:hover {
    text-decoration: underline;
}

.products-section .container, .products-section .container img {
    max-width: 100%;
    height: auto;
}

/* FIM PRODUTOS */

/* NOTICIAS */

.news-section {
	width: 80%;
    max-width: 1200px;
    padding: 40px 20px;
    background-color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.section-title {
    font-size: 36px;
    color: #001C71;
    margin-bottom: 10px;
	font-family: "dm_sansbold";
	width: 50%;
}

h3.section-subtitle {
    font-size: 16px;
    color: #0A1F8F;
    margin-bottom: 30px;
}

.news-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.news-item {
    background-color: white;
    overflow: hidden;
    flex: 1;
}

.news-item img {
    width: 100%;
    height: auto;
}

.news-content {
    padding: 20px 0 40px 0;
}

.news-category {
    display: inline-block;
    background-color: #001C71;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 20px;
    color: #000;
    margin: 10px 0;
	font-family: 'dm_sansbold';
}

.news-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.read-more {
    font-size: 16px;
    color: #001C71;
    text-decoration: none;
}

.view-all {
    text-align: left;
    margin-top: 20px;
}

.view-all a {
    color: #001C71;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #001C71;
    padding: 10px 20px;
}

/* FIM NOTICIAS */

/* FIM HOME */

/* EMPRESA*/

/* MISSÃO */

.company-mission {
    padding: 50px 14%;
    text-align: center;
    background-color: white;
}

.company-title {
    font-size: 42px;
    font-family: "dm_sansbold";
    color: #000;
}

.company-title span {
    color: #001C71;
}

.company-subtext {
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.6;
}

/* FIM MISSÃO*/

/* SOBRE */
.company-about{
	flex-direction: column; 
	margin-bottom: 20px;
}

.company-about h2{
	font-size: 36px;
	color:#000;
}

.company-about h2 span{
	color:#001C71;
}

.company-about img{
	height: 100%;
	display: block;
	margin: auto;
	max-width: 100%; 
}
/* FIM SOBRE */

/* OBJETIVOS */

.objectives-goals {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff; /* Background color for the section */
}

.objectives-goals .section-title span{
    color: #001C71
}

.objectives-goals .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    width: 100%;
    padding: 0 222px;
}

.objectives-goals .section-description {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.5;
    padding: 0px 177px;
}


.objectives {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.objective {
    max-width: 300px;
    margin: 20px;
    text-align: center;
}

.objective-icon {
    width: 44px;
    margin-bottom: 20px;
}

.objective-title {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.objective-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* FIM OBJETIVOS */

/* PRODUTOS */

.products-solutions {
    padding: 60px 0;    
	background-color: #ffffff; /* Background color for the section */
}

.products-solutions .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    width: 100%;
	text-align: center;
}

.products-solutions .section-title span {
    color: #001C71;
}

.products-solutions .section-subtitle {
	text-align: center;
}

.products-solutions .section-description {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.5;
    padding: 0px 177px;
	text-align: center;
}

.solutions {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.solution {
    max-width: 300px;
    margin: 20px;
}

.solution-image {
    width: 100%;
    margin-bottom: 20px;
}

.solution-title {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.solution-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.solution-link {
    font-size: 16px;
    color: #001C71;
    text-decoration: none;
}

.products-solutions .products-footer {
    margin-top: 40px;
    margin-left: 48px;
}

.solution-link:hover {
    text-decoration: underline;
}

/* FIM PRODUTOS */

/* NOTÍCIAS */

.news-updates {
    padding: 60px 0;
    background-color: #f8f9fa; /* Light gray background for the section */
}

.news-updates .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.news-updates .section-title span {
    color: #001C71; /* Blue color for the highlighted part */
}

.news-updates .section-subtitle {
    text-align: center;
}

.news-updates .section-description {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.5;
    padding: 0px 177px;
    text-align: center;
}

.news-updates .news-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.news-updates .news-item {
    max-width: 300px;
    margin: 20px;
}

.news-image {
    width: 100%;
    margin-bottom: 20px;
}

.news-updates .news-title {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.news-updates .news-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.news-updates .news-link {
    font-size: 16px;
    color: #001C71;
    text-decoration: none;
}

.news-updates .news-link:hover {
    text-decoration: underline;
}

/* FIM NOTÍCIAS */

/* FIM EMPRESA */

/* PARCEIROS */

.partners {
    padding: 60px 0;
    width: 80%;
    max-width: 1200px;
    background-color: white;
    padding: 40px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}


.partners .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}
/*
.partners .section-subtitle {
    text-align: center;
}

.partner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
*/
.partner-logo {
    width: 50%;
    margin-bottom: 20px;
}

.partner-name {
	font-family: 'dm_sansbold';
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.partner-activity {
    font-size: 18px;
    color: #333;
	margin-top: 0;
    margin-bottom: 20px;
}

.partner-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.partner-social-links a {
    /*margin: 0 10px;*/
	margin-right: 10px;
    display: inline-block;
}

.partner-social-links img {
    width: 18px;
    height: 18px;
}

/* FIM PARCEIROS */

/* SOLUÇÃO EFACT */

.efact-solution {
	margin-left: auto;
	margin-right: auto;
}

.efact-solution .section-title{
	color: #000;
}

.efact-solution .section-title span{
	color: #001C71;
}

.efact-solution-intro{
	width: 50%;
	margin-block-start: 0.83em;
}

.efact-solution-intro p span {
	color: #001C71;
	font-family: 'dm_sansmedium'
}

.numbers {
    display: flex;
    justify-content: space-between;
	gap: 20px;
	margin-top: 30px
}

.number {
	font-size: 43px;
	font-family: 'dm_sansbold'
}

.number-item p {
	margin-top: 8px;
}

/* BENEFÍCIOS */

.efact-solution-benefits {
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
}

.benefits {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
	min-height: 180px;
}

.benefit-set {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.benefit {
    width: 25%;
}

.benefit-text {
    font-size: 18px;
    font-family: "dm_sansbold";
}

.benefits-footer {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 40px;
}

.benefits-footer .more-link {
    font-size: 16px;
    color: #001C71;
    text-decoration: none;
}

.benefits-footer .more-link:hover {
    text-decoration: underline;
}

/* FIM BENEFÍCIOS */

/* SOLUÇÕES ENGENHARIA PRODUÇAO */

.solutions-production-management {
    background-color: #ffffff;
	margin-left: auto;
	margin-right: auto;
}

.solutions-production-management .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.solutions-production-management h3 {
    color: #0A1F8F;
    margin-bottom: 10px;
    font-family: 'dm_sansmedium';
    font-size: 16px;
}

.solutions-production-management h2 {
    font-size: 36px;
    color: #000;
}

.solutions-production-management .section-subtitle {
/* */
}

.solutions-production-management .section-description {
    margin-bottom: 40px;
    line-height: 1.5;
    width: 50%;
    padding-left: 80px;
}

.solutions-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    min-height: 441.59px;
}

.solution-set {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.next-set {
    justify-content: start;
}

.gap{
	gap: 30px;
}

.solution-item {
    max-width: 23%;
    text-align: left;
}

.solution-link {
    text-decoration: none;
    color: inherit;
    margin-bottom: 15px; 
}

.solution-link:hover .solution-title {
    text-decoration: underline;
}

.solution-icon {
    width: 36px;
    /*margin-bottom: 20px;*/
    display: inline-block;
	margin-right: 10px;
}

.solution-icon img {
    width: 100%;
}

.solutions-production-management .solution-title {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    display: inline-block;
    margin-bottom: 0;
}

.solutions-production-management .solution-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-left: 50px;
}

.solutions-footer {
    margin-top: 40px;
}

.view-more-link {
    font-size: 16px;
    color: #001C71;
    text-decoration: none;
}

.view-more-link:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}


/* FIM SOLUÇÕES ENGENHARIA PRODUÇAO */

/* FIM SOLUÇÃO EFACT */

/* SOLUÇÕES */

.center{
	margin-left: auto;
	margin-right: auto;
}

/* FIM SOLUÇÕES */

/* BLOG - NOTÍCIAS/ARTIGOS */

.news, .articles {
    background-color: white;
    margin-left: auto;
    margin-right: auto;
}

.news .section-title, .articles .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #001C71;
    margin-bottom: 40px;
    margin-left: 20px;
}
.main-news {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.main-news-image {
    width: 50%;
    padding: 20px;
}

.main-news-content {
    width: 100%;
    padding-left: 30px;
}

.news .news-content{
	padding: 0;
}

.news .news-category, .articles .news-category {
    font-size: 16px;
    color: #0A1F8F;
    font-family: "dm_sansmedium";
    padding: 0;
    background-color: #fff;
}

.main-news-title {
    font-size: 24px;
    color: #000;
    margin: 10px 0;
}

.main-news-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.secondary-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news .news-item, .articles .news-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.news .news-image, .articles .news-image{
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.news .news-title, .articles .news-title{
    font-size: 20px;
    font-family: "dm_sansbold";
    margin-bottom: 10px;
	margin-top: 0;
}

.news .news-title a, .articles .news-title a{
    color: #000;
	text-decoration: none;
}

.news .news-title a:hover, .articles .news-title a:hover{
	text-decoration: underline;
}

.news .news-title a:visited, .articles .news-title a:visited{
    color: #001C71;
}



.news-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.carousel-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
	padding: 20px;
}

.carousel-button {
    color: #001C71;
    border: 1px solid #001C71;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 5px;
	text-decoration: none;
}

.carousel-button a {
  text-decoration: none;
  color: #001C71
}

.carousel-button:hover {
  color: #fff;
}

.carousel-button:hover {
    background-color: #0A1F8F;
}

.carousel-dot {
  height: 8px;
  width: 8px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  margin-right: 5px;
}

/* CTA */

.cta-section {
    display: flex;
    align-items: center;
    padding: 60px 0;
    background-color: #fff;
}

.cta-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    max-width: 50%;
}

.cta-heading {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #001C71;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0038b3;
}

.btn-secondary {
    border: 2px solid #001C71;
    color: #001C71;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: #0A1F8F;
    color: #fff;
}

.cta-image img {
    max-width: 100%;
}

.cta-image {
    max-width: 50%;
}

/* FIM CTA */

/* CONTATO */

.contact-section {
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 0;
    background-color: #fff;
}

.contact-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    max-width: 45%;
}

.contact-heading {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.contact-details .icon {
    margin-right: 10px;
}

.contact-details a {
    color: #001C71;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    min-width: 45%;
	max-width: 50%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 14px;
    color: #000;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #000;
    font-size: 14px;
    color: #000;
	max-width: 522px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #001C71;
}

.form-check {
    display: flex;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 10px;
}

.form-check label {
    font-size: 14px;
    color: #333;
}

.form-check a {
    color: #001C71;
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

.contact-form .btn-primary {
    padding: 12px 24px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 18%;
	font-family: 'dm_sansregular'
}

.btn-primary:hover {
    background-color: #0A1F8F;
}

.of_invalid {
	border:1px solid red !important;
}

/* FIM CONTATO */

/* Política de Privacidade */

.privacidade{flex-direction: column}


/* FIM Política de Privacidade */

/* FOOTER */

.footer {
    color: white;
    padding: 40px 20px;
	width: 100%;
	background-color: #001C71;
	box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-logo-address {
    max-width: 300px;
}

.footer-logo {
    width: 84px;
    margin-bottom: 20px;
}

.footer-address,
.footer-contact {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a img {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
	font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* FIM FOOTER */

/* RESPONSIVE */

@media screen and (min-width: 1200px) {
	.content, .section {
		min-width: 1200px;
	}
}

@media screen and (max-width: 1200px) {
	.content, .section {
		width: 100%;
	}
	.solutions-list {
		flex-direction: column;
	}
}

@media screen and (max-width: 1100px) {
  .solution-set {
		flex-direction: column;
	}
	.solution-item {
		max-width: 100%;
		width: 100%;
	}
}



@media screen and (max-width: 953px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0b216f;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px;
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
	.efact-solution-intro, .text-section,.image-section, .products-section .products-intro, .section-title, .product-item, .company-about .company-about-intro, .benefit {width: 100%;}
	.numbers, .content, .section, .product-grid, .benefit-set, .contact-section .container {flex-direction: column;}
	.solutions-production-management .section-description {
		width: 100%;
		padding-left: 0;
		margin-block-start: 0;
	}
	.contact-info, .contact-form {
    max-width: 100%;
	width: 100%;
	}
	/* Hamburger Menu */
	.navbar .hamburger-menu.active + .nav-links {
		display: flex;
	}
}

@media screen and (max-width: 940px) {
  .content, .section {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
	.cta-section .container{
		flex-direction: column-reverse;
	}
	.cta-content, .cta-image {max-width: 100%;}
}

@media screen and (max-width: 600px) {
	.news-container, .footer-content, .footer-links, .news-updates .news-items, .main-news, .product-set {flex-direction: column;}
	.footer-links {gap: 0}
	.objectives-goals .section-title, .objectives-goals .section-description, .products-solutions .section-description, .news-updates .section-description {padding: 0 20px;}
	.solution, .news-updates .news-item {max-width: 100%;}
	.main-news-content, .main-news-image {width: 100%;} 
	.secondary-news {display: block;}
	.benefits {flex-direction: column;}
	.benefit {width: 100%;}
	.benefit img {display: block;}
}

@media screen and (max-width: 480px) {
	.contact-form .btn-primary {width:100%};
}


/*
* {
  background: #000 !important;
  color: #0f0 !important;
  outline: solid #f00 1px !important;
}
