body{
    font-family: 'Poppins' !important;
}
p{
    font-family: 'Poppins' !important;
}
.hero-section {
    position: relative;
    height: 70vh;
    background-image: url("../upload/banners/glass-designed-building-view-photoaidcom-darken.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.164);
}
.hero-content{
    margin-top: 18rem !important;
}

.hero-content h1, .hero-content h1 {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem 0rem;
    max-width: 800px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 400;
    color: white !important;
    line-height: 1.5;
}

.detail-p p{
    font-size: 18px;
    color: black !important;
}
.mark-p p{
    font-size: 16px !important;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}


.map-container {
    width: 100%;
    height: 70vh;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.country-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    height: 550px;
}

.country-card img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    display: block;
}

.country-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.country-info img {
    height: 50px;
    width: 50px;
}

.country-info span {
    display: block;
    font-size: 30px;
    color: #fff;
    z-index: 999;
    font-weight: bold;
}

/* camada preta por cima da imagem */
.country-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.144); /* preto com opacidade */
    z-index: 1;
}

.country-card:hover .overlay {
    background-color: rgba(0, 0, 0, 0);
    transition: .6s;
    cursor: pointer;
}

.empresa-container {
    display: flex;
    flex-wrap: wrap;
    background: white;
    margin: 2rem auto;
    max-width: 1200px;
    overflow: hidden;
  }

  /* Lado da imagem */
  .empresa-imagem {
    margin-right: 1rem;
    flex: 1 1 400px;
    min-height: 300px;
  }

  .empresa-imagem img {
    width: 100%;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    height: 100%;
    object-fit: cover;
  }

  /* Lado do conteúdo */
  .empresa-conteudo {
    flex: 1 1 500px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .empresa-conteudo img{
    width: 72px;
    height: 47px;

    object-fit: cover !important;
  }
  .empresa-logo {
    width: 100px;
  }

  .empresa-nome {
    font-size: 24px;
    font-weight: bold;
    color: #102a43;
  }

  .empresa-descricao {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
  }

  .empresa-atividades h3 {
    font-size: 16px;
    color: #000;
    color: #1f3b57;
    margin-bottom: 0.5rem;
  }

  .lista-atividades {
    list-style: none;
    display: flex;
    margin-left: -3.5rem;
    flex-wrap: wrap;
    font-size: 14px;
    color: #000;
  }

  .lista-atividades li{
    margin: 0rem 0.5rem;
  }

  /* Botão */
  .empresa-botao {
    align-self: start;
    margin-top: 1rem;
    background-color: #ffc952;
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
  }

  .empresa-botao:hover {
    background-color:#ac7a0f;
    color: white;
    text-decoration: none;
  }

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

    .empresa-conteudo {
      padding: 1.5rem;
    }
  }
