
/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
       url('../fonts/Gotham-Bold.woff') format('woff'),
       url('../fonts/Gotham-Bold.ttf') format('truetype'),
       url('../fonts/Gotham-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-BoldItalic.woff2') format('woff2'),
       url('../fonts/Gotham-BoldItalic.woff') format('woff'),
       url('../fonts/Gotham-BoldItalic.ttf') format('truetype'),
       url('../fonts/Gotham-BoldItalic.otf') format('opentype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Book.woff2') format('woff2'),
       url('../fonts/Gotham-Book.woff') format('woff'),
       url('../fonts/Gotham-Book.ttf') format('truetype'),
       url('../fonts/Gotham-Book.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-BookItalic.woff2') format('woff2'),
       url('../fonts/Gotham-BookItalic.woff') format('woff'),
       url('../fonts/Gotham-BookItalic.ttf') format('truetype'),
       url('../fonts/Gotham-BookItalic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

.cursive-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2em; /* Ajusta o tamanho */
  font-weight: 700; /* Deixa mais forte */
  color: #f6f9f9; /* Escolha uma cor legal */
}


/*--------------------------------------------------------------
# Base Styles
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-family: 'Open Sans', Arial, sans-serif;
}

body {
  margin: 0;
  line-height: 1;
  font-family: 'Gotham', sans-serif;
  font-weight: normal; /* Gotham Book (Regular) */
}

/* Títulos principais: Destacar usando Gotham Bold */
h1, h2 {
  font-family: 'Gotham', sans-serif;
  font-weight: bold; /* Gotham Bold */
}

/* Subtítulos: Gotham Book ou Gotham Bold Italic para ênfase */
h3, h4 {
  font-family: 'Gotham', sans-serif;
  font-weight: normal; /* Gotham Book (Regular) */
  font-style: italic; /* Para destacar */
}

/* Elementos menores, como h5 e h6: Menos destaque com Gotham Book */
h5, h6 {
  font-family: 'Gotham', sans-serif;
  font-weight: normal; /* Gotham Book */
  font-style: normal;
}

/* Parágrafos: Para leitura contínua, Gotham Book */
p, li {
  font-family: 'Gotham', sans-serif;
  font-weight: normal; /* Gotham Book */
}

/* Destaque de texto, como <em> ou <strong>: Usar Italic ou Bold */
em {
  font-family: 'Gotham', sans-serif;
  font-weight: normal;
  font-style: italic; /* Gotham Book Italic */
}

strong {
  font-family: 'Gotham', sans-serif;
  font-weight: bold; /* Gotham Bold */
  font-style: normal;
}

ul {
  list-style-type: none; /* Remove default list markers (bullet points) */
}

main {
  margin: 90px 0% 0px;
}


/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.centered-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

img.responsive {
  max-width: 100%;
  height: auto;
}

.align-bottom {
  vertical-align: bottom!important;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  padding: 10px;
  text-align: center;
}

.accept-cookies {
  background-color: #01a4a6;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
  margin: 0 5%;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

    /* Header Styles */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 90px;
        background-color: #FFF;
        color: #01a4a6;
        align-items: center;
        z-index: 10000; /* Mantém o menu acima da barra */
        display: flex;
        justify-content: space-between;
      }
  
      .header-logo {
        display: flex;
        align-items: center;
      }
  
      .header-logo img {
       margin: 20px;
      }
  
      .header-menu {
        display: flex;
        align-items: center;
        margin: 20px;
  
      }
  
      .header-menu > ul {
    display: flex;
    gap: 20px;
  }
  
  /* Media Query for Mobile Devices */
  @media screen and (max-width: 768px) {
    .header {
      flex-direction: row-reverse; /* Change the direction of the flex items */
      flex-wrap: wrap; /* Add this line */
    }
    .header-logo img {
      width: 100px;
      height: auto;
    }
  }
        
  @media screen and (max-width: 768px) {
    .header-menu {
      display: none;
    }}

    .header-container
    {
      display: flex;
    }
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.menu-item li {
    position: relative;
  }
  
      .menu-item a {
        text-decoration: none;
        color: #01a4a6;
        font-size: 16px;
      }
  
      /* Hamburger Menu Icon */
      .hamburger-menu {
        display: none;
        cursor: pointer;
        margin: 20px;
      }
  
      .hamburger-menu div {
        width: 30px;
        height: 4px;
        background-color: #004677; /* Change the color here */
        margin: 6px 0;
      }
  
      .menu-mobile {
          display: none;
      }
    /* Media Query for Mobile Devices */

      @media screen and (max-width: 768px) {

      .hamburger-menu {
        display: block;
        /* margin-right: 20px; */
      }

      .menu-mobile {
        display: none;
        position: fixed; /* change this from 'absolute' to 'fixed' */
        top: 75px; /* Adjust this value based on the height of your header */
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        text-align: center;
        z-index: 999;
      }
      .menu-mobile ul {
        padding: 0;
        margin: 0;
        list-style: none;
      }

      .menu-mobile li {
        margin-bottom: 10px;
      }

      .menu-mobile a {
        text-decoration: none;
		color: #004677;        
        font-size: 16px;
      }


      .menu-mobile.show {
        display: block;
      }

}

.submenu {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 0;
    margin: 0;
    list-style: none; /* Remove bullet points */
  }
  
  .menu-item li:hover > .submenu {
    display: block;
  }
  .submenu li {
    padding: 10px 0; /* Ajuste esses valores como necessário */
  }
  
  .menu-mobile .submenu {
    display: none; /* Esconde o submenu por padrão */
  }
  
  .menu-mobile .submenu.show {
    display: block; /* Exibe o submenu quando ele tem a classe 'show' */
  }
  
  /* Media Query for Mobile Devices */
  @media screen and (max-width: 768px) {
        .submenu {
          position:unset;
  
        }
      }
  
/*--------------------------------------------------------------
# Side Navigation Menu
--------------------------------------------------------------*/

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #01a4a6;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 70px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  display: block;
  transition: 0.3s;
  font-weight: 10;
  font-family: "Source Sans Pro"
}

.sidenav h2 {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 22px;
  color: #fff;
  display: block;
  transition: 0.3s;
  font-weight: bolder;
  font-family: "Source Sans Pro"
}


.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
header{
    width: 100%;
}

.hero-banner {
display: flex;
justify-content: center;
}





/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/

.for-good {
  font-size: 18px; /* Define um tamanho de fonte apropriado, ajuste conforme necessário */
  text-align: left; /* Alinha o texto à esquerda */
  color: #8f8f8f;
}

.destaque-titulo {
  border-bottom: 1.5px solid;
  padding-bottom: 5px;
  color: #01a4a6;
  text-transform: uppercase; 
  font-size: larger;
}

.destaque-subtitulo {
  padding-bottom: 5px;
  color: #05a5a6;
  text-transform: uppercase; 
  font-size: large;
}
  
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .row {
    display: flex;
    /* flex-wrap: wrap; */
  }

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

.column-content {
  display: flex;
  flex-direction: column;
  width: 33.3%;
}

/* Estilo sem hover */
.linkhome.no-hover {
  transition: none; /* Desabilitar transição */
}

.custom-buttonhome {
  background-color: #fff;
  color: #01a4a6;
  padding: 10px 20px;
  border-radius: 30px;
  border-color: #01a4a6;
  border: 1px solid #01a4a6;
  transition: background-color 0.3s, transform 0.3s, cursor 0.3s;
  cursor: pointer;
  font-size: medium;
}

.custom-buttonhome:hover {
  background-color: #01a4a6;
  color: #FFFFFF;
  cursor: pointer;
}

/* Estilo para área de O que fazemos */
.container-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px; /* Espaço entre os círculos */
  margin: 60px auto 0 auto; /* Centraliza horizontalmente */
  width: fit-content; /* Ajusta a largura ao conteúdo */
}

.circle-group {
  display: flex;
  gap: 50px;
}

.circle {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(to right, #008e8f, #027f7f);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 0 0 4px #fff;
}

.dotted-arc,
.solid-arc,
.solid-arc-invert,
.dotted-arc-invert {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.dotted-arc {
  border: 2px dashed #aaa;
  clip-path: inset(50% 0 0 0); /* Corta a metade inferior do círculo */
}

.solid-arc {
  border: 21px solid #aaa;
  box-sizing: border-box;
  clip-path: inset(0 0 50% 0); /* Corta a metade inferior do círculo */
}

.solid-arc-invert {
  border: 21px solid #aaa;
  box-sizing: border-box;
  clip-path: inset(50% 0 0 0); /* Corta a metade inferior do círculo */
}

.dotted-arc-invert {
  border: 2px dashed #aaa;
  clip-path: inset(0 0 50% 0); /* Corta a metade inferior do círculo */
}

/* Media query para telas menores (até 768px) */
@media (max-width: 768px) {
  .container-circle {
    gap: 30px; /* Reduz o espaço entre os círculos */
    margin-top: 40px;
  }

  .circle-group {
    gap: 30px; /* Reduz o espaço entre os círculos no grupo */
  }

  .circle {
    width: 120px;
    height: 120px;
    font-size: 14px; /* Reduz o tamanho da fonte dentro dos círculos */
  }

  .dotted-arc,
  .solid-arc,
  .solid-arc-invert,
  .dotted-arc-invert {
    width: 160px;
    height: 160px; /* Reduz o tamanho dos arcos */
  }
}

/* Media query para telas menores (até 480px) */
@media (max-width: 480px) {
  .container-circle {
    gap: 10px; /* Reduz ainda mais o espaço entre os círculos */
  }

  .circle {
    width: 80px; /* Reduz o tamanho dos círculos */
    height: 80px;
    font-size: 10px; /* Reduz ainda mais o tamanho da fonte dentro dos círculos */
  }

  .dotted-arc,
  .solid-arc,
  .solid-arc-invert,
  .dotted-arc-invert {
    width: 100px; /* Reduz o tamanho dos arcos */
    height: 100px;
  }

  .circle-group + .circle-group {
    margin-top: 15px; /* Reduz o espaço entre os grupos de círculos */
  }

  .solid-arc {
    border: 10px solid #aaa;
    box-sizing: border-box;
    clip-path: inset(0 0 50% 0); /* Corta a metade inferior do círculo */
  }
  
  .solid-arc-invert {
    border: 10px solid #aaa;
    box-sizing: border-box;
    clip-path: inset(50% 0 0 0); /* Corta a metade inferior do círculo */
  }
  
}

/* Oculta o div em telas menores (até 768px) */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* Exibe o div em telas maiores (acima de 768px) */
@media (min-width: 769px) {
  .desktop-only {
    display: block;
  }
}

/* Estilo para a seção de mercados de atuação */
.container-prod {
  position: relative;
  width: 100%;
  text-align: left;
  margin: 10px 0;
}

.container-hero {
position: absolute; 
top: 50%; left: 50%; 
transform: translate(-50%, -50%); 
margin-left: 0;
}

.circle-prod {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: rgba(0, 182, 188, 0.3); /* Cor com transparência */
  border-radius: 50%;
  z-index: 1;
}

.circle-prod.one {
  top: 0;
  left: 100px;
}

.circle-prod.two {
  top: 0;
  left: 200px;
}

.circle-prod.three {
  top: 0;
  left: 300px;
}

.text-prod {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
  display: inline-block;
  margin-left: 120px;
  margin-top: 30px;
}


.text-line-prod {
  display: inline; /* Faz com que o fundo seja aplicado apenas ao texto */
  background-color: #63c0bf; /* Cor de fundo */
  padding: 0 5px; /* Ajuste para criar espaço ao redor do texto */
  margin: 0; /* Remove a margem para evitar gaps entre as linhas */
  font-size: xx-large;
  text-transform: uppercase;
}

.text-line-prod:not(:last-child)::after {
  content: ""; 
  display: block; 
  height: 11px; 
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .circle-prod {
    width: 80px;
    height: 80px;
  }

  .circle-prod.one {
    left: 50px;
  }

  .circle-prod.two {
    left: 150px;
  }

  .circle-prod.three {
    left: 250px;
  }

  .text-prod {
    margin-left: 80px;
    margin-top: 20px;
  }

  .text-line-prod {
    font-size: large; /* Reduz o tamanho da fonte em dispositivos móveis */
  }
}

@media (max-width: 480px) {
  .circle-prod {
    width: 30px;
    height: 30px;
  }

  .circle-prod.one {
    left: 50px;
  }

  .circle-prod.two {
    left: 80px;
  }

  .circle-prod.three {
    left: 110px;
  }

  .text-prod {
    margin-left: 0px;
    margin-top: 10px;
    padding: 5px;
  }


  .text-line-prod {
    font-size: small; /* Ajusta o tamanho da fonte para telas menores */
    line-height: 1.3; /* Ajusta o espaço entre as linhas em dispositivos móveis */
    padding: 0;
}

.text-line-prod:not(:last-child)::after {
  height: 1px; 
}
}



/* Estilos gerais para o carrossel de imagem infinito */

section.infinicarousel-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5%;
  flex-wrap: wrap;
}

.infinicarousel-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  transition: 1s ease-in-out; /* Transição mais suave */
}

.infinicarousel-container {
  position: relative;
  width: 90vw;
  overflow: hidden;
  border-radius: 10px;
  margin: 10px 5px;
}

.infinicarousel-left-arrow, .infinicarousel-right-arrow {
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: white;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #01a4a6, #8fecee);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  z-index: 2;
}

.infinicarousel-left-arrow {
  left: 10px;
}

.infinicarousel-right-arrow {
  right: 10px;
}

.infinicarousel-left-arrow:hover, .infinicarousel-right-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.infinicarousel-child {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  height: 250px;
  width: 20%;
  font-weight: bold;
  font-size: 4rem;
}

.infinicarousel-image-container {
  position: relative;
  text-align: center;
}

.infinicarousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 14px;
  padding: 5px 0;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

img.infinicarousel-img {
  height: 153px;
  width: 230px;
  padding: 0 5px;
  border-radius: 8px;
}

/* Media query para telas menores (até 768px) */
@media (max-width: 768px) {
  .infinicarousel-left-arrow, .infinicarousel-right-arrow {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }

  .infinicarousel-child {
    height: 200px;
    width: 25%; /* Ajuste a largura dos itens do carrossel */
    font-size: 3rem; /* Diminui o tamanho da fonte */
  }

  img.infinicarousel-img {
    height: 120px;
    width: 180px;
  }
}

/* Media query para telas menores (até 480px) */
@media (max-width: 480px) {
  .infinicarousel-container {
    width: 95vw; /* Ocupa quase toda a largura da tela */
  }

  .infinicarousel-left-arrow, .infinicarousel-right-arrow {
    font-size: 1rem;
    width: 30px;
    height: 30px;
  }

  .infinicarousel-child {
    height: 150px;
    width: 50%; /* Exibe dois itens por vez no carrossel */
    font-size: 2rem; /* Reduz ainda mais o tamanho da fonte */
  }

  img.infinicarousel-img {
    height: 90px;
    width: 140px;
  }

  .infinicarousel-caption {
    font-size: 12px; /* Ajusta o tamanho do texto da legenda */
  }
}



/*--------------------------------------------------------------
# Como fazemos
--------------------------------------------------------------*/
.como-fazemos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.como-fazemos-icons-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.como-fazemos-icon {
  width: 150px;
  text-align: center;
  color: #33a8a5;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.como-fazemos-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.como-fazemos-icon h4 {
  margin: 0;
  font-weight: bold;
  font-size: 1em;
  transition: text-decoration 0.3s ease;
}

.como-fazemos-icon.selected {
  color: #128581;
  transform: scale(1.2);
}

.como-fazemos-arrow {
  font-size: 2em;
  color: #33a8a5;
  cursor: pointer;
  user-select: none;
}

/* Esconde as setas */
.como-fazemos-arrow-left,
.como-fazemos-arrow-right {
  display: none;
}

.como-fazemos-text {
  margin-top: 10px;
  font-size: small;
  color: #666;
  display: none; /* Textos inicialmente ocultos */
}

.como-fazemos-icon hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, #01f657, #141414);
  margin: 10px 0; /* Espaçamento entre os elementos */
}

/* Media query para telas menores (até 480px) */
@media (max-width: 480px) {
  .como-fazemos-icons-section {
    flex-direction: column; /* Exibe os ícones em coluna */
    justify-content: center;
    align-items: center;
  }

  .como-fazemos-icon {
    width: 100%; /* Ícone ocupa toda a largura disponível */
    margin-bottom: 20px; /* Espaçamento entre os cards */
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .como-fazemos-icon img {
    width: 50px;
    height: 50px;
  }

  .como-fazemos-icon h4 {
    font-size: 1em;
  }

  .como-fazemos-text {
    font-size: small;
    margin: 10px 20px;
  }

  .como-fazemos-arrow{
    display: none;
  }
}



/*--------------------------------------------------------------
# NO QUE ACREDITAMOS
--------------------------------------------------------------*/
.no-que-acreditamos-icon-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  /* max-width: 800px; */
  margin: 0 auto;
}

.no-que-acreditamos-icon-bullet-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.no-que-acreditamos-icon-bullet-list li img {
  width: 50PX;
  height: 50PX;
  margin-right: 10px;
}

.no-que-acreditamos-icon-bullet-list li p {
  margin: 0;
  font-size: 1.1em;
  line-height: 1.5em;
}

/*--------------------------------------------------------------
# Lightbox
--------------------------------------------------------------*/


#lightbox {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  
  #close {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
  }

/*--------------------------------------------------------------
# Nosso time
--------------------------------------------------------------*/
.team-section {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  padding: 20px;
}

.team-section h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #333;
}

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

.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
  flex-basis: calc(25% - 40px); /* 4 cards por linha */
  max-width: calc(25% - 40px); /* 4 cards por linha */
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 75%; /* Reduz a largura da imagem para 75% do tamanho original */
  height: auto;
  border-bottom: 2px solid #128581;
  border-radius: 50%; /* Mantém a imagem arredondada */
  object-fit: cover; /* Garante que a imagem preencha o espaço sem distorção */
  margin: 10px auto; /* Centraliza a imagem dentro do card */
  display: block; /* Garante que o margin auto funcione */
}

.team-card .card-content {
  padding: 20px;
}

.team-card h3 {
  margin-top: 0;
  color: #128581;
  font-size: 1.5em;
}

.team-card p {
  font-size: 1em;
  color: #777;
  margin-bottom: 20px;
  font-weight: bolder;
  text-transform: uppercase;
}

.team-card .social-icons {
  display: flex;
  justify-content: center;
}

.team-card .social-icons a {
  text-decoration: none;
  color: #128581;
  font-size: 1.2em;
  transition: color 0.3s;
}

.team-card .social-icons a:hover {
  color: #333;
}

@media (max-width: 768px) {
  .team-card {
      flex-basis: calc(50% - 40px); /* 2 cards por linha em telas menores */
      max-width: calc(50% - 40px); /* 2 cards por linha em telas menores */
  }
}

@media (max-width: 480px) {
  .team-card {
      flex-basis: calc(100% - 40px); /* 1 card por linha em telas pequenas */
      max-width: calc(100% - 40px); /* 1 card por linha em telas pequenas */
  }
}
/* Lightbox CSS */
.custom-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.custom-lightbox-content {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  text-align: left;
}

.custom-lightbox h3 {
  margin-top: 0;
  color: #128581;
  font-size: 1.8em;
  margin-bottom: 5px;
}

.custom-lightbox p#custom-lightbox-role {
  font-size: 1.2em;
  font-weight: bold;
  color: #555;
  margin-top: 0;
  margin-bottom: 20px;
}

.custom-lightbox p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.custom-lightbox .custom-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5em;
  color: #01a4a6;
  cursor: pointer;
}


/*--------------------------------------------------------------
# Message-founder
--------------------------------------------------------------*/
.container-message {
  max-width: 100%;
  margin: 50px auto;
  padding: 20px;
  background-color: #01a4a6;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.message-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.message-content {
  max-width: 70%;
}

.message-content h2 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #333;
}

.message-content p {
  font-size: 16px;
  font-style: italic;
  color: #555;
  line-height: 1.5;
}

.message-content p em {
  font-style: italic;
}

/* Estilização da citação */
.founder-quote {
  font-size: xx-large;
  font-style: italic;
  font-weight: bolder;
  text-align: center;
  color: #fff;
  margin: 20px 0;
  line-height: 1.6;
  position: relative;
  padding-left: 40px;
  quotes: "“" "”" "‘" "’";
}

.founder-quote:before {
  content: open-quote;
  font-size: 60px;
  color: #fff;
  position: absolute;
  left: 0;
  top: -10px;
  line-height: 0;
}

.founder-quote:after {
  content: close-quote;
  font-size: 60px;
  color: #fff;
  position: absolute;
  right: 10px;
  bottom: -10px;
  line-height: 0;
}

.founder-image {
  position: relative;
  max-width: 250px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 20px;
  text-align: center;
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}

.founder-image p {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  margin: 0;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.founder-image p:first-of-type {
  bottom: 40px;
}

.founder-image p:last-of-type {
  bottom: 10px;
}

.whatsapp-icon {
  color: #25D366;
}

/* Media query para dispositivos móveis (até 768px) */
@media (max-width: 768px) {
  .message-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .message-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .founder-quote {
    font-size: x-large;
    padding-left: 20px;
  }

  .founder-quote:before,
  .founder-quote:after {
    font-size: 40px;
  }

  .founder-image {
    max-width: 200px;
    margin-left: 0;
  }

  .founder-image p {
    font-size: 0.9em;
    padding: 8px;
  }

  .founder-image p:first-of-type {
    bottom: 30px;
  }

  .founder-image p:last-of-type {
    bottom: 5px;
  }
}

/* Media query para dispositivos muito pequenos (até 480px) */
@media (max-width: 480px) {
  .message-content h2 {
    font-size: 18px;
  }

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

  .founder-quote {
    font-size: large;
    padding-left: 15px;
  }

  .founder-quote:before,
  .founder-quote:after {
    font-size: 30px;
  }

  .founder-image {
    max-width: 150px;
  }

  .founder-image p {
    font-size: 0.8em;
    padding: 5px;
    margin-bottom: 18px;
  }

  .founder-image p:first-of-type {
    bottom: 20px;
  }

  .founder-image p:last-of-type {
    bottom: 0;
  }
}


/*--------------------------------------------------------------
# VAGAS
--------------------------------------------------------------*/

/* Reset de margens e paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos gerais */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
}

/* Container principal */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
}

/* Header */
.superior h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 2rem;
  color: #009688;
}

.superior p {
  text-align: center;
  margin-bottom: 20px;
  color: #6B6C70;
}

/* Seção de vagas */
.section-vagas {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.row-vagas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.vagas-img img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.corpovagas {
  flex-grow: 1;
  padding: 20px;
}

/* Filtros */
.filter-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filtro-vagas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.select-wrapper {
  flex: 1;
  min-width: 200px;
}

.select-wrapper select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #fff;
  min-width: 180px;
  width: 100%;
}

/* Botão de filtro */
.btn-filter {
  background-color: #009688;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-filter:hover {
  background-color: #218838;
}

/* Resultados */
.result-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

/* Tabela */
.vagas-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.vagas-table th, .vagas-table td {
  padding: 12px 15px;
  border: 1px solid #ccc;
  text-align: center;
}

.vagas-table th {
  background-color: #009688;
  color: #fff;
  font-weight: bold;
}

.vagas-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.vagas-table tr:hover {
  background-color: #f0f0f0;
}

.vagas-table td {
  font-size: 1rem;
  color: #333;
}

/* Ícones */
.youtube-icon {
  font-size: 1.5rem;
  color: #FF0000;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
  margin: 5px;
}

.youtube-icon:hover {
  transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .row-vagas {
      flex-direction: column;
  }

  .filter-section {
      flex-direction: column;
  }

  .filtro-vagas {
      flex-direction: column;
      gap: 15px;
  }

  .select-wrapper {
      width: 100%;
  }

  .btn-filter {
      width: 100%;
  }

  .vagas-table {
      display: block;
      width: 100%;
      overflow-x: auto;
  }

  .vagas-table thead {
      display: none;
  }

  .vagas-table tr {
      display: block;
      margin-bottom: 15px;
      border: 1px solid #ccc;
  }

  .vagas-table td {
      display: flex;
      justify-content: space-between;
      padding: 10px;
      border: none;
      border-bottom: 1px solid #eee;
  }

  .vagas-table td::before {
      content: attr(data-label);
      font-weight: bold;
      text-transform: uppercase;
      color: #009688;
      margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.green { color: green; }
.hidden { display: none; }


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

/* 🔹 Container principal */
.container-blog {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  justify-content: center;
}

/* 🔹 Seção do título */
.title-section {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #01a4a6, #01858a);
  color: white;
  border-radius: 8px;
  margin-bottom: 20px;
}

.title-section h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.title-section p {
  font-size: 18px;
  opacity: 0.9;
}


/* 🔹 Barra de Filtros */
.filter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 20px auto;
  flex-wrap: wrap;
  width: 100%;
}

/* 🔹 Campo de busca */
.filter-container input {
  width: 250px;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #01a4a6;
  border-radius: 25px;
  outline: none;
  transition: 0.3s;
}

.filter-container input:focus {
  border-color: #01858a;
  box-shadow: 0px 0px 8px rgba(1, 164, 166, 0.5);
}

/* 🔹 Select de categorias */
.filter-container select {
  width: 200px;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #01a4a6;
  border-radius: 25px;
  background-color: white;
  cursor: pointer;
  transition: 0.3s;
}

.filter-container select:hover {
  border-color: #01858a;
}

.filter-container select:focus {
  border-color: #01858a;
  box-shadow: 0px 0px 8px rgba(1, 164, 166, 0.5);
}

/*--------------------------------------------------------------
# Blog - Painel de Post-its
--------------------------------------------------------------*/

/* 🔹 Container principal */
.container-blog {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  justify-content: center;
}

/* 🔹 Grid fixo e alinhado */
.blog-grid-blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Mantém tamanhos iguais */
  gap: 20px;
  width: 100%;
  margin: 20px auto;
  justify-content: center;
  padding: 20px 10px;
}

/* 🔹 Estilização dos post-its */
.blog-post-blog {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  border-radius: 8px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), 
              inset -5px -5px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
  position: relative;
  
  /* 🔹 Tamanho fixo para todos os post-its */
  width: 250px;
  height: 250px;
  background-color: #a8ecee; /* Post-it amarelo pastel */
}

/* 🔹 Efeito de dobra no canto superior direito */
.blog-post-blog::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* 🔹 Efeito hover - Post-it levantando */
.blog-post-blog:hover {
  transform: scale(1.05);
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3);
}
/* 🔹 Adicionando o 📌 Pin */
.blog-post-blog::after {
  content: "📌"; /* Adiciona o emoji de alfinete */
  font-size: 1.8rem; /* Ajusta o tamanho do pin */
  position: absolute;
  top: -10px; /* Eleva um pouco para parecer fixado */
  left: 50%;
  transform: translateX(-50%); /* Centraliza horizontalmente */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Dá profundidade ao pin */
}

.blog-post-blog h3 {
  font-weight: bold;
}

.blog-post-blog p {
  font-size: medium;
  margin-top: 10px;
}

/* 🔹 Botão "Ler Artigo" */
.read-article-btn {
  display: block;
  width: 80%;
  margin: 10px auto 0; /* Centraliza abaixo do conteúdo */
  padding: 10px;
  font-size: 1rem;
  color: #000;
  background-color: transparent; /* Corrigido: faltava o ponto e vírgula */
  border: 2px solid #000; /* Adiciona uma borda para melhorar a visibilidade */
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.read-article-btn:hover {
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.1); /* Suave destaque ao passar o mouse */
}


/* 🔹 Responsividade */
@media (max-width: 768px) {
  .blog-grid-blog {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ajusta o tamanho para telas menores */
    display: flex;
    flex-direction: column;
    align-items: center;

  }

  .container-blog {
    flex-direction: column;
    padding: 10px;
  }

  .filter-container {
    flex-direction: column;
    gap: 10px;
  }

  .filter-container input,
  .filter-container select {
    width: 100%;
  }

}


/* ======================== */
/* PROGRESS BAR */
/* ======================== */
#progress-bar {
  height: 4px;
  background-color: #01a4a6;
  z-index: 9999;
  transition: width 0.3s ease;
  margin-top: -10px;
}

/* ======================== */
/* BLOG CONTENT */
/* ======================== */
.blog_content {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  margin: 10% 5% 0;
  padding: 10px;
}

@media (max-width: 767.98px) {
  .blog_content { margin-top: 25%; }
}

.rounded-box {
  border: 2px solid #01a4a6;
  border-radius: 10px;
  width: 100%; /* Para mobile */
  max-width: 600px; /* Define um limite para centralizar melhor */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  margin: 0 auto; /* Centraliza horizontalmente */
}

.rounded-box ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.rounded-box ul li {
  margin: 0 30px; /* Ajuste o valor do espaçamento conforme necessário */
  color: #01a4a6;
}

.blog_content h1 {
  color: #01a4a6;
}

@media (max-width: 767.98px) {
  .rounded-box ul {
    flex-wrap: wrap;
  }

  .rounded-box ul li {
    margin: 5px 10px; /* Reduz o espaçamento para caber melhor */
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: #01a4a6;
    color: white;
  }
  
.custom-footer {
  padding: 5px 0;
}

.custom-footer h5 {
  margin-bottom: 20px;
}

.custom-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-footer ul li {
  margin-bottom: 10px;
  font-size: large;
}

.custom-footer .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767.98px) {
  .custom-footer {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  
  .custom-footer .row {
    flex-direction: column;
  }
  
  .custom-footer .col-md-3 {
    margin-bottom: 30px;
  }
}
.custom-footer a {
  color: #fff; /* define a cor do texto como branco */
  text-decoration: none; /* remove o sublinhado do link */
  transition: all 0.2s ease-in-out; /* adiciona uma transição suave */
}

.custom-footer a:hover {
  text-decoration: underline; /* adiciona um sublinhado no hover */
    color: #fff; /* Define a cor cinza para o hover dos links */
}



.social-icons a {
    margin-right: 10px; /* Adicione o espaçamento horizontal desejado */
}
.social-icons a:hover {
    color: gray; /* Defina a cor desejada para o hover, por exemplo, cinza (gray) */
}


.align-bottom {
    display: flex;
    align-items: flex-end;
}

.col-md-3 {
width: 25%;
/* padding-left: 10px; */
text-align: center;
}

.col-md-3 li {
font-weight: lighter;
}

.col-md-3 H5 {
font-size: large;
}

/* esta row é do footer !!! */
.row {
padding: 1%;
}
.vertical-border {
  border-right: 1px solid #ffffff; /* Cor e estilo da borda */
}

@media (max-width: 767.98px) {

    .row {
        margin-bottom: 30px;
        }
        .vertical-border {
          border: none;
        }
        .col-md-3 {
          width: 80%;
    }
  }

  