body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  color: #111112;
  background-color: #F4F3F3;
}

html, body {
  overflow-x: hidden;
}

header nav a {
  color: #F4F3F3;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s;
}

header nav a:hover {
  color: #8BABD0;
}

@font-face {
  font-family: 'Merriweather';
  src: url('fonts/Merriweather/Merriweather-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Merriweather';
  src: url('fonts/Merriweather/Merriweather-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Merriweather';
  src: url('fonts/Merriweather/Merriweather-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Merriweather';
  src: url('fonts/Merriweather/Merriweather-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato/Lato-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato/Lato-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato/Lato-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato/Lato-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/Playfair_Display/static/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/Playfair_Display/static/PlayfairDisplay-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/Playfair_Display/static/PlayfairDisplay-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/Playfair_Display/static/PlayfairDisplay-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}
.hero {
  display: flex;
  height: 100vh;
  background-color: #192D4B;
  color: #F4F3F3;
  padding-top: 70px; /* Adiciona padding-top igual à altura da navbar */
  box-sizing: border-box; /* Garante que o padding não aumente a altura total */
}

.hero-overlay {
  display: flex;
  width: 100%;
  flex-wrap: wrap; /* Permite que as colunas se ajustem em telas menores */
}

.hero-left, .hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centraliza o conteúdo verticalmente */
  align-items: center; /* Centraliza o conteúdo horizontalmente */
  min-width: 300px; /* Define um tamanho mínimo para as colunas */
}

.hero-left {
  background-color: #192D4B;
  color: #F4F3F3;
  padding: 40px 20px; /* Aumenta o padding para melhor espaçamento */
}

.hero-logo {
  width: 100%;
  max-width: 350px; /* Limita o tamanho máximo da logo */
  height: auto;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center; /* Centraliza o texto */
}

.hero-right {
  background-color: #F4F3F3;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-height: 100vh; /* Limita a altura da imagem */
  object-fit: cover;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto; /* Altura automática para se ajustar ao conteúdo */
    padding-top: 60px; /* Ajusta o padding-top para dispositivos móveis */
  }

  .hero-left, .hero-right {
    flex: none;
    width: 100%;
    height: auto; /* Altura automática para se ajustar ao conteúdo */
  }

  .hero-left {
    padding: 60px 20px; /* Aumenta o padding para melhor espaçamento */
  }

  .hero-title {
    font-size: 24px; /* Reduz o tamanho da fonte para dispositivos móveis */
  }

  .hero-logo {
    max-width: 250px; /* Reduz o tamanho da logo para dispositivos móveis */
  }

  .hero-right {
    height: 50vh; /* Define uma altura fixa para a imagem em dispositivos móveis */
  }
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #192D4B;
  color: #F4F3F3;
}

.contact {
  padding: 20px 20px;
  background-color: #192D4B;
  color: #F4F3F3;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact h2 {
  font-size: 28px;
  color: #192D4B;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-item svg {
  margin-right: 10px;
  flex-shrink: 0;
}

.contact-item p {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
}

.contact-item a {
  color: #4978AF;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact h2 {
    font-size: 24px;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .contact-item svg {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .contact-item p {
    font-size: 14px;
  }
}

.about {
  padding: 50px 20px;
  background-color: #F4F3F3;
  color: #111112;
  text-align: center;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}

.about h2 {
  font-size: 36px;
  color: #192D4B;
  margin-bottom: 20px;
}

.about-content {
  display: flex;
  align-items: center;
  text-align: left;
}

.about-image {
  width: 40%;
  height: 700px;
  margin-right: 20px;
  border-radius: 10px;
  transition: opacity 1s ease-in-out;
  opacity: 1;
  object-fit: cover;
}

.about-image.fade-out {
  opacity: 0;
}

.about-text {
  width: 60%;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-list {
  list-style-type: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.about-list li::before {
  content: '✔';
  color: #4978AF;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 28px;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    width: 90%;
    font-size: 14px;
  }

  .about-image {
    width: 100%;
    height: 500px;
    margin-top: 20px;
    margin-left: 20px;
  }
}
.values {
  padding: 50px 20px;
  background-color: #F4F3F3;
  color: #111112;
  text-align: center;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.values h2 {
  font-size: 36px;
  color: #192D4B;
  margin-bottom: 20px;
}

.values-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.values-text {
  flex: 1 1 calc(50% - 20px);
  font-size: 16px;
  color: #555;
  text-align: left;
}

.values-list {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.values-list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.values-list li::before {
  content: '✔';
  color: #4978AF;
  margin-right: 10px;
}

.values-image {
  flex: 1 1 calc(50% - 20px);
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .values h2 {
    font-size: 28px;
  }

  .values-content {
    flex-direction: column;
    align-items: center;
  }

  .values-text {
    width: 90%;
    font-size: 14px;
  }

  .values-image {
    width: 90%;
    margin-top: 20px;
  }
}
.image-section {
  position: relative;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  background-color: #F4F3F3;
  transition: opacity 0.5s ease-in-out;
}

.intermediate-image {
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 0;
}

.portfolio {
  padding: 50px 20px;
  background-color: #F4F3F3;
  color: #111112;
  text-align: center;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio h2 {
  font-size: 36px;
  color: #192D4B;
  margin-bottom: 20px;
}

.portfolio-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.portfolio-card {
  flex: 1 1 calc(50% - 20px);
  background-color: #FFFFFF;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-text-card p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 16px;
  color: #555;
}

.portfolio-list-card {
  background-color: #4978AF;
  color: #F4F3F3;
}

.portfolio-list {
  list-style-type: none;
  padding: 0;
}

.portfolio-list li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
}

.portfolio-list li::before {
  content: '✔';
  color: #F4F3F3;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .portfolio h2 {
    font-size: 28px;
  }

  .portfolio-content {
    flex-direction: column;
    align-items: center;
  }

  .portfolio-card {
    width: 90%;
    margin-bottom: 20px;
  }

  .portfolio-text-card p {
    font-size: 14px;
  }

  .portfolio-list li {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  header nav a {
    margin: 10px 0;
  }

  .services {
    flex-direction: column;
  }

  .service-card {
    width: 100%;
    margin-bottom: 20px;
  }

  .values-content {
    flex-direction: column;
    text-align: center;
  }

  .values-image {
    width: 100%;
    margin-top: 20px;
  }

  .values-text {
    width: 100%;
  }

  .portfolio {
    padding: 20px 10px;
  }

  .portfolio h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .portfolio-content {
    flex-direction: column;
    gap: 15px;
  }

  .portfolio-card {
    width: 90%;
    margin-bottom: 20px;
  }

  .portfolio-text-card p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .portfolio-list li {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-item svg {
    margin-bottom: 10px;
  }
}

header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #F4F3F3;
}

header nav {
  display: flex;
  align-items: center;
}

header nav a:hover {
  color: #8BABD0;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #F4F3F3;
  margin: 4px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  header nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #192D4B;
    position: absolute;
    top: 60px;
    left: 0;
  }

  header nav a {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  header nav.active {
    display: flex;
  }
}

.step:nth-child(1) {
  margin-left: 0;
}

.step:nth-child(2) {
  margin-left: 200px;
}

.step:nth-child(3) {
  margin-left: 400px;
}

.step:nth-child(4) {
  margin-left: 600px;
}

.step:nth-child(5) {
  margin-left: 800px;
}

.step:nth-child(1) .step-number,
.step:nth-child(1) .step-content h3 {
  color: #ADD8E6; /* Azul claro */
}

.step:nth-child(2) .step-number,
.step:nth-child(2) .step-content h3 {
  color: #87CEEB; /* Azul céu */
}

.step:nth-child(3) .step-number,
.step:nth-child(3) .step-content h3 {
  color: #4682B4; /* Azul aço */
}

.step:nth-child(4) .step-number,
.step:nth-child(4) .step-content h3 {
  color: #4169E1; /* Azul royal */
}

.step:nth-child(5) .step-number,
.step:nth-child(5) .step-content h3 {
  color: #00008B; /* Azul escuro */
}
.solutions {
  padding: 50px 20px;
  background-color: #F4F3F3;
  color: #111112;
  text-align: center;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.solutions h2 {
  font-size: 36px;
  color: #192D4B;
  margin-bottom: 20px;
}

.expertise {
  margin-top: 30px;
  text-align: center;
}

.expertise p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.product {
  flex: 1 1 calc(33.333% - 20px);
  background-color: #FFFFFF;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product h3 {
  margin: 0;
  font-size: 20px;
  color: #4978AF;
}

.product p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #555;
}

@media (max-width: 768px) {
  .product {
    flex: 1 1 100%;
  }

  .solutions h2 {
    font-size: 28px;
  }

  .expertise p {
    font-size: 16px;
  }

  .product h3 {
    font-size: 18px;
  }

  .product p {
    font-size: 14px;
  }
}
.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}

.container h1 {
  font-size: 28px; /* Reduzido para dispositivos móveis */
  color: #192D4B;
  margin-bottom: 20px;
}

.container h2 {
  font-size: 22px; /* Reduzido para dispositivos móveis */
  color: #111112;
  margin-bottom: 20px;
}

.container p {
  font-size: 16px; /* Reduzido para dispositivos móveis */
  color: #555;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-left: 0 !important; /* Remove as margens laterais */
}

.step-number {
  font-size: 24px;
  font-weight: bold;
  color: #4978AF;
}

.step-content h3 {
  margin: 0;
  font-size: 20px;
  color: #4978AF;
}

.step-content p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #555;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .container h1 {
    font-size: 24px;
  }

  .container h2 {
    font-size: 20px;
  }

  .container p {
    font-size: 14px;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    font-size: 20px;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
  }
}

.consulting-services {
  background-color: #F4F3F3;
  padding: 50px 20px;
  color: #111112;
  text-align: center;
}

.consulting-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.consulting-services h2 {
  color: #192D4B;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.consulting-services h3 {
  color: #111112;
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.consulting-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.consulting-card {
  text-align: center;
  padding: 20px;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  width: 30%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  margin-bottom: 20px;
}

.consulting-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #E5E5E5;
}

.consulting-card h4 {
  color: #4978AF;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.consulting-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.consulting-services strong {
  color: #000;
}

@media (max-width: 768px) {
  .consulting-cards {
    flex-direction: column;
    align-items: center;
  }

  .consulting-card {
    width: 90%; /* Ajuste a largura para dispositivos móveis */
    margin-bottom: 20px;
  }
}

.leadership-section {
  background-color: #F4F3F3;
  padding: 50px 20px;
  color: #111112;
  text-align: center;
}

.leadership-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.leadership-section h2 {
  color: #192D4B;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.leadership-section p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.leader-profile {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.leader-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
}

.leader-info {
  flex: 1;
}

.leader-profile h3 {
  color: #4978AF;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.leader-profile h4 {
  color: #777;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.leader-profile ul {
  list-style-type: disc;
  padding-left: 20px;
}

.leader-profile li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.leadership-section strong {
  color: #000;
}

@media (max-width: 768px) {
  .leader-profile {
    flex-direction: column;
    text-align: center;
  }

  .leader-image {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .leader-profile ul {
    padding-left: 0;
    list-style-type: none;
  }
}
.modelo-vex {
  padding: 30px 15px;
  background-color: #F4F3F3;
  color: #111112;
  text-align: center;
}

.modelo-vex-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modelo-vex h1 {
  color: #192D4B;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.modelo-vex h2 {
  font-size: 24px;
  color: #111112;
  margin-bottom: 15px;
}

.modelo-vex p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  padding: 15px;
  background-color: #F9F9F9;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-number {
  font-size: 20px;
  font-weight: bold;
  color: #4978AF;
  background-color: #E5E5E5;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  margin: 0;
  font-size: 18px;
  color: #4978AF;
}

.step-content p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .modelo-vex-container {
    padding: 15px;
  }

  .modelo-vex h1 {
    font-size: 24px;
  }

  .modelo-vex h2 {
    font-size: 20px;
  }

  .modelo-vex p {
    font-size: 14px;
  }

  .steps {
    flex-direction: column;
    text-align: center;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    font-size: 18px;
    width: 35px;
    height: 35px;
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 12px;
  }
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  color: #F4F3F3;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s;
  font-size: 16px;
}

header nav a:hover {
  color: #8BABD0;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #F4F3F3;
  margin: 4px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  header nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #192D4B;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
  }

  header nav a {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  header nav.active {
    display: flex;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #344E76;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  /* Remova a transição se desejar */
  /* transition: top 0.3s; */
}

header .logo img {
  height: 20px; /* Diminuído o tamanho da logo na navbar */
  width: auto;
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  color: #F4F3F3;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s;
  margin-right: 120px;
}

header nav a:hover {
  color: #8BABD0;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #F4F3F3;
  margin: 4px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #192D4B;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
  }

  header nav a {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  header nav.active {
    display: flex;
  }
}

.titulo {
  font-family: 'Playfair Display', serif; /* Aplicando Playfair Display aos títulos */
}
.contrast {
  font-family: 'Merriweather', serif; /* Contraste */
}

h2{
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #192D4B;
  margin-bottom: 20px;
}
h1, h3, h4, h5, h6{
  font-family: 'Playfair Display', serif;
}