/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    /* line-height: 1.6; */
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header and Navigation */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 2rem; /* barra bem fina */
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px; /* pode ajustar para 65px ou 60px se preferir menor */
    max-height: 30px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 0.80rem; /* 🔥 Deixa as letras menores */
    letter-spacing: 0.5px; /* 🔥 Fica mais elegante */
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #000000;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000000;
}




/* Hero Section */
.hero {
    background: url('img/header.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: auto;
}


  

  
.texto h2 {
    margin-top: 80px; /* evita que a logo sobreponha o texto */
    font-size: 24px;
    color: white;
  }
  
  .texto h2 span {
    color: #0072bb;
  }
  

.hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px; /* 🔥 Espaço lateral da esquerda */
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 10;
    line-height: 1.1;
}

.hero h1 .highlight {
    font-size: 4.3rem; /* 🔥 Igual ao h1 */
    font-weight: 700;
}


.highlight {
    color: #1180B9; /* 🔥 Azul igual da imagem, ou escolha outra */
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 800px;
    color: #ffffff;
    font-weight: 10
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn svg,
.btn i {
    vertical-align: middle;
}


.btn-primary {
    background: #134375;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #023E8A;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid #134375;
}

.btn-secondary:hover {
    background: white;
    color: #023E8A;
}

.btn,
.btn a {
    text-decoration: none;
}


.btn-full {
    width: 100%;
}

.hero-logo {
    position: absolute;
    right: 70px;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: none;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
}

.hero-logo img {
    width: 400px; /* 🔥 Tamanho ajustado conforme a referência */
}

.hero-logo h2 {
    display: none; /* 🔥 Esconde o texto "neo CONSTEC", pois está dentro da própria logo */
}
  
  
.logo-large {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3B82F6, #1E3A8A);
    margin: 0 auto 1rem;
    border-radius: 10px;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 5px;
}

.logo-large h2 {
    color: white;
    font-size: 2rem;
    line-height: 1;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.8)), url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f?w=1200&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: lighter;
}

/* About Section */
/* About Section */
/* SOBRE NÓS */
.about-section {
    padding: 150px 0;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* .about-image img {
    width: 100%;
    height: 100;
    object-fit: cover;
    border-radius: 1;
} */

.about-text h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.about-text h2 .sobre {
    color: #1180B9;
    font-weight: 100; /* Super fino (se suportado) */
}

.about-text h2 .nos {
    color: #1180B9;
    font-weight: 700;
    display: inline-block;
    border-bottom: 3px solid #1180B9;
    padding-bottom: 4px;
}



.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #0E2B4A;
    font-weight: 300;
    margin-bottom: 0.75rem;
    max-width: 600px;
}



.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Mensagem da Diretoria Section */
.mensagem-diretoria {
  width: 100%;
  margin: 0;
  padding: 0;
}

.mensagem-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 100vh;
}

.mensagem-imagem {
  flex: 1;
}

.mensagem-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mensagem-texto {
  flex: 0.90;
  background-color: #134375;
  color: white;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mensagem-texto h2 {
  font-size: 2.6rem;
  margin-bottom: 50px;
  line-height: 1.2;
}
.mensagem-texto h2 {
  font-size: 2.6rem;
  margin-bottom: 50px;
  line-height: 1.2;
}

.mensagem-texto h2 strong {
  display: inline-block;
  border-bottom: 3px solid white;
  padding-bottom: 5px;
}


.mensagem-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  max-width: 600px;
  
}

@media (max-width: 768px) {
  .mensagem-wrapper {
    flex-direction: column;
  }

  .mensagem-imagem img {
    height: auto;
  }

  .mensagem-texto {
    padding: 40px 20px;
  }
}

/* nosso diferancial */
.differential-section {
    padding: 60px 0;
    background: #134375;
    color: #F6F6F6;
}

.differential-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6rem;
}

.differential-text {
    flex: 1; /* 50% do espaço */
    max-width: 20%;
}

.differential-image,
.diretoria-image {
    flex: 1; /* 50% do espaço */
    max-width: 100%;
}

.differential-text .highlight {
    color: #F6F6F6;
    font-weight: 700;
    border-bottom: 2px solid #F6F6F6;
    padding-bottom: 4px;
}


.differential-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}


.diferencial-nosso {
    color: #F6F6F6;
    font-weight: 300;
}

.diferencial-palavra {
    color: #F6F6F6;
    font-weight: 700;
    border-bottom: 2px solid #F6F6F6;
    display: inline-block;
    padding-bottom: 4px;
}


.differential-text p {
    font-size: 1rem;
    line-height: 1.8;
    color:#F6F6F6;
    font-weight: 300;
    margin-bottom: 0.75rem;
    max-width: 600px;
}

.differential-image img {
    width: 100%;
    /* height: 361px; */
    object-fit: cover;
    border-radius: 0;
}

.diretoria-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}


/* Values Section */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: start;
    padding: 1rem;
}

.title-icon {
    color: black !important;
}

.text-icon {
    color: #A9A9A9;
}

.value-icon {
    /* font-size: 3rem; */
    margin-bottom: 1rem;
    /* display: block; */
    height: 56px;
    width: 56px;
}

.value-item h3 {
    color: #1E3A8A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    line-height: 1.6;
}

/* Company Info */
.company-info {
    padding: 80px 0;
    background: #F8FAFC;
}

.company-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
}

.large-logo {
    text-align: center;
    background: #1E3A8A;
    color: white;
    padding: 3rem;
    border-radius: 15px;
}

.logo-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3B82F6, #F59E0B);
    margin: 0 auto 1rem;
    border-radius: 15px;
    position: relative;
}

.logo-icon-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
}

.large-logo h2 {
    font-size: 2.5rem;
    line-height: 1;
}

.company-text h2 {
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.company-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Services Areas */
.services-areas {
    /* padding: 80px 0; */
}

.services-areas h2 {
    color: #1E3A8A;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
}

.service-item {
    display: flex;
    /* grid-template-columns: 60px 1fr 300px; */
    /* gap: 2rem; */
    /* flex-direction: column; */
    /* margin-bottom: 3rem; */
    align-items: center;
    /* background-color: red; */
    justify-content: center;
}

.service-number {
    width: 50px;
    height: 50px;
    background: #3B82F6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.service-content {
    /* background-color: blue; */
    padding-top: 5px;
    padding-bottom: 5px;
    height: 100%;
    width: 60%;
}

.service-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.service-image img {
    /* width: 100%;
    height: 200px; */
    height: auto;

    object-fit: cover;
    border-radius: 10px;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: #F8FAFC;
    text-align: center;
}

.clients-section h2 {
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.clients-section p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    color: #1E3A8A;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

/* Política de integridade */
  /* Hero específico da página Política de Integridade */
  .page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-text {
    max-width: 600px;
    padding-left: 60px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: bold;
}

.page-hero .highlight {
    color: #00a0df; /* ou a cor azul desejada */
}

/* Específico para a página Política de Integridade */
.page-hero.integridade-hero {
    background-image: url('img/PoliticaDeIntegridade.png.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
}

.integrity-content {
    padding: 80px 0;
    background-color: #fff;
}

.policy-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.policy-text {
    flex: 1 1 55%;
    max-width: 600px; /* limite para leitura mais fluida */
}

.policy-text h2 {
    font-size: 3rem;
    font-weight: ligth;
    margin-bottom: 1rem;
    color: #1180B9; /* Azul escuro padrão */
}

.policy-text .highlight {
    color: #1180B9; /* Azul claro de destaque */
}

.policy-text p {
    font-size: 1.1rem;
    line-height: 1.6; 
    color: #333;
    margin-bottom: 1.2rem; /* antes era 16px */
}

.policy-text .btn {
    display: inline-block;
    padding: 12px 12px;
    background-color: #134375;
    color: #fff;
    text-decoration: none;
    border-radius: 0px;
    font-weight: semi bold;
}
.policy-text .btn .seta {
    margin-right: 8px; /* ajuste aqui conforme o espaçamento desejado */
}

.policy-image {
    flex: 1 1 40%;
    margin-left: 60px
}

/* .policy-image img {
    width: 400px;
    max-width: 110%;
    height: auto;
    border-radius: 0;
} */
.titulo-integridade {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1180B9;
    margin-bottom: 24px;
    line-height: 1.2;
}

.titulo-integridade .highlight-underline {
    display: inline-block;
    font-weight: 700;
    position: relative;
    color: #1180B9;
    padding-bottom: 4px;
}

.titulo-integridade .highlight-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px; /* Tamanho da linha como na imagem */
    height: 3px;
    background-color: #1180B9;
}
/* Canal de Denúncia */
.titulo-denuncia {
  font-family: 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #1180B9; /* azul claro */
  line-height: 1.2;
  margin-bottom: 24px;
}

.titulo-denuncia .highlight-underline {
  font-weight: 600; /* mais forte que o título */
  color: #007ac1; /* azul escuro */
  position: relative;
  display: inline-block;
}

.titulo-denuncia .highlight-underline::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #1180B9;
  margin-top: 10px;
}



.denunciation-channel {
  padding: 4px;
  background-color: #fff;
  margin-top: 80px; /* espaçamento entre seções */
}


.denunciation-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    min-height: 320px;
}
.denunciation-text {
  flex: 1 1 55%;
  max-width: 520px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.denunciation-image {
  flex: 1 1 40%;
  min-width: 260px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  height: 100%;
}
.denunciation-image img {
  width: 340px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  align-self: flex-start;
}

.denunciation-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #0E2B4A;
    margin-bottom: 1.2rem;
}

.denunciation-image {
    flex: 1 1 40%;
    margin-left: 40px;
}

.denunciation-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 0;
}


/* Canal de Ética (modelo igual ao anterior) */
.ethics-channel {
    padding: 80px 0;
    background-color: #fff;
}

.ethics-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.ethics-image {
    flex: 1 1 40%;
    margin-right: 40px;
}

/* .ethics-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 0;
} */

.ethics-text {
    flex: 1 1 55%;
    max-width: 600px;
}

.titulo-etica {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1180B9;
    margin-bottom: 24px;
    line-height: 1.2;
}

.titulo-etica .highlight-underline {
    display: inline-block;
    font-weight: 700;
    position: relative;
    color: #1180B9;
    padding-bottom: 4px;
}

.titulo-etica .highlight-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #0072bb;
}

.ethics-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.2rem;
}

.ethics-text .btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #134375;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
}

.ethics-text .btn .seta {
    margin-right: 10px;
}


/* Form Styles */
.denunciation-form-section,
.contact-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.form-container h2 {
    color: #0E2B4A;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    color: #0E2B4A;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #0E2B4A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #134375;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.captcha {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}



.captcha input {
    max-width: 150px;
}
.denunciation-form-section {
    background-color: #ffffff;
    padding: 55px 0;
  }
  
  .form-container {
    background-color: #eeeeee;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  }
  
  .form-container h2 {
    color: #0e2b4a;
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .denunciation-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .form-group.full {
    flex: 100%;
  }
  
  .denunciation-form label {
    font-weight: bold;
    color: #0e2b4a;
    margin-bottom: 5px;
    font-size: 0.95rem;
  }
  
  .denunciation-form .required {
    color: red;
  }
  
  .denunciation-form input,
  .denunciation-form textarea {
    padding: 12px;
    border: 1px solid #eeecec;
    border-radius: 4px;
    font-size: 0.95rem;
    background-color: #fff;
    color: #333;
  }
  
  .denunciation-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .denunciation-form .note {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 20px;
  }
  
  .denunciation-form button.btn-primary {
    width: 100%;
    background-color: #0e2b4a;
    color: white;
    font-weight: bold;
    padding: 14px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
  }
  
  .denunciation-form button.btn-primary:hover {
    background-color: #092038;
  }
  
  .denunciation-form button.btn-primary span {
    font-size: 1.3rem;
    margin-right: 10px;
  }
  .btn-denuncia {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background-color: #0a3a75; /* azul institucional */
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 0;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    gap: 10px;
    cursor: pointer;
  }
  
  .btn-denuncia:hover {
    background-color: #072c5c;
  }
  
  .btn-icon {
    font-size: 1.2rem;
    line-height: 1;
  }
  

/* Onde estamos */
/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    /* position: relative; */
    display: flex;
    flex-direction: row;
    height: 550px;
    /* justify-content: space-around; */
    align-items: center;
    gap: 80px;
    /* background-color: blue; */
    /* width: 75%; */
    /* padding-right: 70px; */
    /* padding: 60px 20px; */
    
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 300px;
}

.location-details h3 {
    color: #1E3A8A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-details p {
    line-height: 1.6;
    color: #0E2B4A
}

/* Contact Info */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-item h3 {
    color: #1E3A8A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    line-height: 1.6;
}
.radio-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.lgpd-group {
  margin-top: 20px;
}

.lgpd-title {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #0E2B4A;
}

.lgpd-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #0E2B4A;
}

.lgpd-checkbox input[type="radio"] {
  margin: 0;
}





/* Portfolio Styles */
/* .portfolio-intro {
    padding: 80px 0;
    text-align: center;
    background: #F8FAFC;
}

.portfolio-intro h2 {
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.portfolio-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-categories {
    padding: 80px 0;
}

.services-categories h2 {
    color: #1E3A8A;
    margin-bottom: 3rem;
    font-size: 2rem;
    text-align: center;
}

.category-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.category-content h3 {
    color: #1E3A8A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-content p {
    margin-bottom: 0.30rem;
    line-height: 1.2;
    
}

.category-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.technical-services {
    padding: 80px 0;
    background: #F8FAFC;
}

.technical-services h2 {
    color: #1E3A8A;
    margin-bottom: 3rem;
    font-size: 2rem;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    color: #1E3A8A;
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.2rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.portfolio-gallery {
    padding: 80px 0;
}

.portfolio-gallery h2 {
    color: #1E3A8A;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 58, 138, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
} */

/* Footer */
footer {
    background: white;
    color: black;
    padding: 60px 0 30px;
    height: 400px;
}

.footer-content {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #A9A9A9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    line-height: 1.6;
    color: #A9A9A9;
}


/* Sobre Nós


*/.page-hero {
    background: url('img/sobre-nos2.png');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}
.company-info {
    padding: 100px 0;
    background-color: #ffffff;
}

.company-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}


.company-text h2 {
    font-size: 2.8rem;
    color: #1180B9;
    margin-bottom: 10px;
    position: relative;
}

.company-text h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #1180B9;
    margin-top: 8px;
}

.company-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: #0E2B4A;
    margin-bottom: 0.75px;
    max-width:600px
}

.company-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .company-logo-section img {
    max-width: 110%;
    width: 400px;
    height: auto;
} */
.services-areas {
    /* padding: 80px 0; */
    background-color: #fff;
}

/* .services-areas h2 {
    color: #1E3A8A;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: left;
    padding-left: 20px;
    background-color: red;
} */

.service-item {
    /* display: grid; */
    grid-template-columns: 60px 1fr 400px;
    align-items: start;
    gap: 2rem;
    padding: 0.5rem 10px;
    border-radius: 0px;
    margin-bottom: 0.5rem; /* mais próximo do bloco de cima */
}


.service-icon img {
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 50%;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 1rem;
    color: #0E2B4A;
    line-height: 1.6;
    margin: 0;
}

.service-image img {
    width: 460px;
    height: 315px;
    object-fit: cover;
    border-radius: 0px;
    gap:10px
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 20px;
    color: #1E3A8A;
}

.section-title .linha1 {
    font-size: 2.8rem;
    color: #1180B9;
    line-height:1;
    margin-bottom: 2rem;
}

.section-title .linha2 {
    font-weight: 700;
    font-size: 3rem;
    color: #1180B9;
    display: inline-block;
    font-weight: 700;
    display: inline-block;
    Border-bottom: 3px solid
    
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    margin-right: 20px;
  }
  
  .menu-toggle span {
    height: 4px;
    width: 100%;
    background: #000;
    margin: 5px 0;
    border-radius: 2px;
    display: block;
    transition: 0.3s;
  }
  

  .clients-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 20px 0;
    margin-top: 20px;
    -webkit-overflow-scrolling: touch;
  }
  
  .carousel-track {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 10px 20px;
    min-width: max-content;
  }
  
  .carousel-track img {
    height: 80px;
    width: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .carousel-track img:hover {
    transform: scale(1.05);
  }

  .clients-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .clients-title h2 {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    color: #1E3A8A;
    text-align: left;
  }
  
  .clients-title .linha1 {
    color: #1180B9;
    font-size: 2.8rem;
  }
  
  .clients-title .linha2 {
    color: #1180B9;
    font-weight: 700;
    font-size: 3rem;
    display: inline-block;
    border-bottom: 3px solid #1180B9;
  }
  
  .clients-subtitle {
    max-width: 600px;
    text-align: right;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }

  /* Hero específico para a página "Onde Estamos" */
.onde-estamos-hero {
    background-image: url('img/Onde-estamos.png'); 
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
    text-align: left;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.onde-estamos-hero .hero-text {
    max-width: 600px;
}

.onde-estamos-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 300;
}

.onde-estamos-hero .highlight-underline {
    display: inline-block;
    font-weight: 700;
    position: relative;

    padding-bottom: 4px;
}


.map-placeholder iframe {
    width: 750px;
    height: 400px;
    border: none;
    border-radius: 0px;
}


.location-details {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
}
.location-details h3 {
    font-size: 16px;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.location-info {
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.location-details {
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}
.location-details, .location-info {
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
}
.location-details h3,
.location-details strong {
    font-weight: normal;
    color: #1a1a1a;
}
.map-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px; 
}
.location-details {
    margin-left: 0 !important;
}
  /* Formulário de contato */
.contact-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
}

.contact-section h2 {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    color: #0076bf;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.contact-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 3px;
    background-color: #0076bf;
}


.contact-form {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

.form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    background-color: #f9f9f9;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 15px;
    color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0076bf;
    outline: none;
}

.form-group label {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom: 6px;
}

.captcha-text {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 8px 15px;
    font-family: monospace;
    font-size: 18px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-group label {
    display: inline;
    margin-left: 5px;
    font-weight: bold;
}

.checkbox-group p {
    display: inline;
    font-size: 14px;
    margin-left: 8px;
    color: #333;
}

button.btn-primary {
    background-color: #0076bf;
    color: white;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.btn-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.contact-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
}

.contact-form {
    width: 100%;
    max-width: none;
    margin: 0;
}


.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.contact-form input,
.contact-form textarea {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 12px 14px;
    font-size: 15px;
    color: #333;
    border-radius: 2px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.captcha-image {
    font-family: monospace;
    font-size: 22px;
    margin: 10px 0;
}

small {
    font-size: 12px;
    color: #555;
}

.radio-group input[type="radio"] {
    margin-right: 6px;
}

button.btn-primary {
    background-color: #ee0d0d;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 0px;
}

button.btn-primary:enabled {
    background-color: #0076bf;
}

button.btn-primary:hover:enabled {
    background-color: #005a91;
}


/* Portifolio */
.page-hero-portfolio {
    background-image: url('img/Portifolio.png'); /* ajuste o caminho da imagem se necessário */
    padding: 100px 0;
    color: white;
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
  }
  
  
  .page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .page-hero h1 {
    font-size: 3rem;
    font-weight: 300;
  }
  
  .page-hero h1 span {
    font-weight: 700;
    border-bottom: 3px solid white;
    padding-bottom: 5px;
  }
  /* Portfolio Intro Section */
.portfolio-intro {
    padding: 80px 20px;
    background-color: white;
    color: #0e2d3d;
  }
  
  .portfolio-intro .container {
    max-width: 1200px;
    margin: 2;
    text-align: left;
  }
  
  
  .portfolio-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 0px;
    font-family: 'Arial', sans-serif;
  }
  
  .portfolio-intro h2 .thin {
    font-weight: 300;
    color: #0072bb;
  }
  
  .portfolio-intro h2 .bold {
    font-weight: 700;
    color: #0072bb;
  }
  
  .portfolio-intro .underline {
    width: 60px;
    height: 2px;
    background-color: #0072bb;
    margin: 5px 0 15px 0;
  }
  
  .portfolio-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin:0;
  }
  .services-categories .category-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
  }
  
  .services-categories .category-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #0e2d3d;
  }
  
  .services-categories .category-content h3 {
    color: #0E2B4A;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0px;
  }
  .category-images img {
    display: block;
    width: 682px;
    min-height: 300px;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 35px; /* espaçamento entre as imagens */
    background-color: red;
}

.category-images img:last-child {
    margin-bottom: 0; /* remove margem da última imagem */
}

  
  /* .services-categories .category-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    background-color: red;
  } */
  
  /* .services-categories .category-image img {
    width: 90%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 0px;
    background-color: red;
  } */
  .category-item {
    display: flex;
    align-items: stretch;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .category-content {
    flex: 1;
  }
  
  /* .category-image-wrapper {
    flex: 1;
    display: flex;
    align-items: stretch;
    background-color: red;
    
  } */
  
  /* .category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    background-color: red;
    
  } */
  
  
  .category-images img {
    width: 17rem;
    height: 5rem;
    object-fit: cover;
    border-radius: px;
  }
  
  /* Alinhamento geral da seção em 2 colunas */
/* .layout-col-2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    background-color: red;
  } */
  
  /* Estilo da coluna de texto */
  .category-content {
    width: 70%;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #0e2d3d;
  }
  
  /* .category-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f3ba1;
    text-transform: uppercase;
  } */
  
  /* Justificar texto */
  .justificado {
    text-align: justify;
  }
  
  /* Coluna de imagens mais estreita */
  /* .category-images-narrow {
    width: 28%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: red;
  }
   */
  /* .category-images-narrow img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    background-color: red;
  } */
  .destaque-faixa {
    flex: 0 0 45%;
    max-width: 500px;
    font-size: 1rem; 
    line-height: 1.4;
    text-align: justify;
    color: #0E2B4A;  
  }
    

.restauracao-bloco {
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 1200px;
}


.restauracao-bloco h3 {
    color: #0E2B4A;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px
}

.restauracao-bloco p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
    color: #0E2B4A;
    
}
.category-item {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.category-content {
  flex: 1;
}

.differential-content,
.category-item,
.map-section {
  flex-wrap: wrap;
}
.services-categories {
    padding: 60px 20px;
    background-color: #ffffff;
}

.services-categories .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-categories .category-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.services-categories .category-images {
    flex: 1;
}

.services-categories .category-images img {
    width: 100%;
    border-radius: 0px;
    object-fit: cover;
    height: auto;
    width: 560px;
}

.services-categories .category-content {
    flex: 0.95;
    font-size: 0.95rem;
    color: #0e2d3d;
}

.services-categories .category-content h3 {
    font-size: 1.2rem;
    color: #0E2B4A;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.services-categories .category-content p {
    text-align: justify;
    line-height: 1.6;
}
/* Alinhar verticalmente SOMENTE a seção 'Technical Services' */
.technical-services .category-item {
  align-items: stretch;
}

.technical-services .category-images,
.technical-services .category-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Seção da Galeria de Projetos */
.portfolio-gallery {
    padding: 60px 20px;
    background-color: #ffffff;
}

.portfolio-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Bloco de cada item da galeria (layout horizontal) */
.portfolio-gallery .category-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Texto da esquerda */
.portfolio-gallery .category-content {
    flex: 1;
    font-size: 1rem;
    color: #0e2d3d;
}

.portfolio-gallery .category-content h3 {
    font-size: 1.2rem;
    color: #0E2B4A;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.portfolio-gallery .category-content p {
    text-align: justify;
    line-height: 1.6;
}

/* Imagem da direita */
.portfolio-gallery .category-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-gallery .category-images img {
    width: 100%;
    max-width: 580px;
    border-radius: 0;
    object-fit: cover;
    height:350px;
}


.btn {
    width: auto;
    max-width: 100%;
}

/* --- INÍCIO DAS MELHORIAS DE RESPONSIVIDADE --- */

/* Ajuste global para evitar overflow horizontal */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Container sempre responsivo */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5vw;
  box-sizing: border-box;
}

/* Imagens sempre responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Navbar responsiva */
.navbar .container {
  flex-wrap: wrap;
  padding: 2rem 2vw;
}

.logo {
  width: 90px;
  min-width: 60px;
  max-width: 120px;
  left: 50%;
  top: 10px;
}


/* --- FIM DAS MELHORIAS DE RESPONSIVIDADE --- */

.policy-grid, .ethics-grid {
  display: flex;
  align-items: center; /* Centraliza verticalmente */
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  min-height: 340px;
}
.policy-text, .ethics-text {
  flex: 1 1 55%;
  max-width: 500px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* .policy-image, .ethics-image {
  flex: 1 1 40%;
  min-width: 260px;
  display: flex;
  align-items: flex-start; Alinha imagem ao topo
  justify-content: center;
  margin: 0;
  height: 100%;
} */
/* .policy-image img, .ethics-image img {
  width: 340px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  align-self: flex-start;
} */

.integrity-content, .ethics-channel {
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (max-width: 992px) {
    .navbar .container {
      flex-direction: column;
      align-items: center;
    }
  
    .nav-menu {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      margin-top: 1rem;
    }
  
    .hero {
      flex-direction: column;
      padding: 80px 20px;
      text-align: center;
    }
  
    .hero-content {
      padding: 0;
      align-items: center;
    }
  
    .hero-logo {
      position: static;
      transform: none;
      margin-top: 2rem;
    }
  
    .about-content,
    .company-grid,
    .differential-content,
    .category-item,
    .map-container,
    .ethics-grid,
    .policy-grid {
      flex-direction: column;
      grid-template-columns: 1fr !important;
      text-align: center;
    }
  
    .about-image img,
    .company-logo-section img,
    .differential-image img,
    .category-images img,
    .map-placeholder iframe {
      width: 100%;
      height: auto;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .clients-header {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    h1, h2, h3 {
      font-size: 90%;
    }
  
    .hero h1 .highlight {
      font-size: 2.5rem;
    }
  
    .btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  
    .footer-content {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }
  
    .category-item {
      flex-direction: column;
    }
  
    .clients-carousel {
      padding: 10px 0;
    }
  
    .carousel-track {
      gap: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
  
    .nav-menu {
      display: none;
      flex-direction: column;
      width: 100%;
      text-align: center;
    }
  
    .nav-menu.open {
      display: flex;
    }
  }
  

  @media (max-width: 768px) {
    .differential-section {
      padding: 40px 20px;
      text-align: center;
    }
  
    .differential-content {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
  
    .differential-text,
    .diretoria-image,
    .differential-image {
      max-width: 100%;
    }
  
    .differential-text h2 {
      font-size: 2rem;
    }
  
    .differential-text p {
      font-size: 1rem;
      line-height: 1.7;
    }
  
    .footer-content {
      flex-direction: column;
      align-items: center;
      gap: 3rem;
      text-align: center;
    }
  
    .footer-section img {
      margin: 0 auto 1rem;
    }
  
    .footer-section ul {
      padding: 0;
    }
  
    .footer-section ul li {
      margin: 6px 0;
    }
  }
  
  .differential-text,
.diretoria-image {
  padding: 0 20px;
}

.differential-text p {
  text-align: justify;
}

.differential-text {
    max-width: 600px;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .footer-section {
      width: 100%;
    }
  
    .footer-section h3 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }
  
    .footer-section p,
    .footer-section a {
      font-size: 0.9rem;
    }
  }
  
  .sobre-empresa-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .sobre-empresa-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #0b2d52;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    text-align: justify;
  }
  
  @media (max-width: 768px) {
    .sobre-empresa-section {
      padding: 40px 20px;
    }
  
    .sobre-empresa-section p {
      font-size: 1rem;
      line-height: 1.7;
      padding: 0 10px;
    }
  }

  .sobre-empresa-section p:first-of-type {
    margin-top: 1rem;
  }
  
  .sobre-empresa-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0b2d52;
  }
  
  .areas-atuacao-section {
    /* padding: 60px 20px; */
    background-color: #fff;
  }
  
  .area-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .area-item img.icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  
  .area-content {
    flex: 1;
  }
  
  .area-content h3 {
    font-size: 1.25rem;
    color: #10277a;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }
  
  .area-content p {
    font-size: 1rem;
    color: #0b2d52;
    line-height: 1.7;
    text-align: justify;
  }
  
  @media (max-width: 768px) {
    .area-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .area-content h3 {
      font-size: 1.1rem;
    }
  
    .area-content p {
      font-size: 0.95rem;
      padding: 0 10px;
    }
  
    .area-item img.icon {
      margin-bottom: 10px;
    }
  }
  
  .areas-atuacao-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #0071b8;
    margin-bottom: 2rem;
  }
  
  .areas-atuacao-section h2 span {
    font-weight: bold;
    border-bottom: 2px solid #0071b8;
  }
  
  @media (max-width: 768px) {
    .map-section {
      flex-direction: column;
      padding: 0 20px;
    }
  
    .map-container {
      flex-direction: column;
      align-items: center;
      height: auto;
    }
  
    .map-placeholder iframe {
      width: 100%;
      height: 300px;
    }
  
    .location-details {
      margin-top: 20px;
      text-align: center;
      padding: 0 10px;
    }
  }
  
  @media (max-width: 768px) {
    .service-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .service-content {
      width: 100%;
    }
  
    .service-image img {
      width: 100%;
      height: auto;
    }
  }
  
  @media (max-width: 768px) {
    .service-icon {
      display: none;
    }
  
    .service-content {
      text-align: center;
      width: 100%;
      padding-left: 0;
      padding-right: 0;
    }
  
    .service-content h3,
    .service-content p {
      text-align: center;
    }
  
    .service-item {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1rem 0;
      margin-bottom: 1rem;
    }
  }

  .container-section1{
    display: flex; 
    flex-direction: row; 
    align-items: stretch; 
    justify-content: space-around; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 40px; 
    box-sizing: border-box;
  }

  .container-section2{
    display: flex; 
    flex-direction: row; 
    align-items: stretch; 
    justify-content: space-around; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 40px; 
    box-sizing: border-box;
    /* background-color: red; */
    gap: 40px;
    /* padding-left: 20px;
    margin-right: 20px; */
    width: 100%;
    /* background-color: red; */
    flex: 1
  }

  .container-info{
    display: flex;
    gap: 40px; 
    width: 100%;
  }
  
  @media (max-width: 768px) {
    .container-info{
      display: flex;
      flex-direction: column;
    }
    .container-section1{
      display: flex;
      flex-direction: column;
      /* background-color: red; */
    }

    .container-section2 {
      display: flex;
      flex-direction: column;
      align-items: center;
      /* background-color: blue; */
      width: 100%;
      max-width: 100%;
      /* padding-left: 20px;
      padding-right: 20px; adicione para simetria */
      gap: 16px;
      box-sizing: border-box;
      overflow-x: hidden;
    }

    .service-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1rem 20px;
      margin-bottom: 2rem;
      text-align: center;
    }
  
    .service-content {
      width: 100%;
      max-width: 600px;
      padding: 0;
    }
  
    .service-content h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
    }
  
    .service-content p {
      font-size: 1rem;
      color: #0E2B4A;
      line-height: 1.6;
      margin: 0;
    }
  
    .service-icon,
    .service-image {
      display: none !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }
    
    .hamburger span {
      width: 25px;
      height: 3px;
      background-color: #000;
      transition: 0.3s;
    }
    
    @media (max-width: 768px) {
      .nav-menu {
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: white;
        flex-direction: column;
        width: 200px;
        border: 1px solid #ccc;
        padding: 10px;
        display: none;
        z-index: 999;
      }
    
      .nav-menu.active {
        display: flex;
      }
    
      .hamburger {
        display: flex;
      }

      .container-hamburguer {
        display: flex; 
        flex-direction: row; 
        justify-content: space-between; 
        width: 100%; 
        height: 100%;
        padding-left: 8px;
        padding-right: 8px;
      }
    }
    
  }
  