/* Custom styles */

body {
    font-family: 'Blinker', sans-serif;
}


.navbar {
    background-color: #000000;
    padding: 20px;
}

.navbar-brand img {
    max-height: 40px;
}

p,ul,li{
    font-size: 1.2rem;
    font-weight: 100;
}

.cta-btn {
    margin-top: 20px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    padding: 14px 21px;
    font-size: 24px;
    z-index: 1000;
}


/* Seção Hero */
.hero {
    position: relative;
    width: 100%;
    height: 700px;
    background-size: 100% auto; /* A largura da imagem será 100%, e a altura será ajustada automaticamente */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Faz com que a imagem acompanhe o scroll de forma suave */
  }
  
  /* Película escura sobre a imagem */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Garante que a película cubra toda a altura da hero */
    background-color: rgba(0, 0, 0, 0.5); /* Fundo preto com 50% de opacidade */
    z-index: 1;
  }
  
  /* Conteúdo centralizado na Hero */
  .hero-content {
    position: relative;
    z-index: 2; /* Colocado à frente da película */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%; /* Garante que o conteúdo esteja centralizado verticalmente */
    text-align: center;
    color: #fff;
    padding: 0 20px;
  }
  
  .hero-content img {
    max-width: 200px;
    margin-bottom: 20px;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff; /* Garantindo que o H1 fique branco */
  }
  
  .hero-content p {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  /* Responsividade para dispositivos menores */
  @media (max-width: 768px) {
    .hero {
      position: relative;
      height: 50vh; /* A altura será 100% da viewport (altura total da tela) */
      background-size: auto 50vh; /* A altura da imagem será 100%, e a largura ajustada automaticamente */
      background-position: center center; /* Centraliza a imagem no meio da tela, horizontalmente e verticalmente */
      background-repeat: no-repeat; /* Evita a repetição da imagem */
      background-attachment: scroll; /* Remove o comportamento de fixação em telas pequenas */
    }
  
    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%; /* Garante que o conteúdo esteja centralizado verticalmente */
      padding: 0 10px; /* Ajuste de padding para evitar problemas de layout */
    }
  
    .hero-content img {
      max-width: 100px;
      margin-bottom: 10px;
    }
  
    .hero-content h1 {
      font-size: 20px; /* Reduzindo o tamanho do H1 para telas menores */
      margin-bottom: 10px;
    }
  
    .hero-content h3 {
      font-size: 14px; /* Ajustando o parágrafo para dispositivos móveis */
    }
  }

  .card {
    border-radius: 15px; /* Raio das bordas do card */
    overflow: hidden; /* Garante que a imagem respeite o arredondamento */
}

.card-img-top {
    border-top-left-radius: 15px; /* Arredonda o canto superior esquerdo */
    border-top-right-radius: 15px; /* Arredonda o canto superior direito */
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}
.logo {
    max-height: 40px;
}

footer .social-icons img {
    max-height: 40px;
    margin-right: 10px;
}

.social_padding {
    padding: 20px;
}
.form-group, .label {
    color: #08262b;
}

#simulador {
    margin-top: 70px;
    display: flex;
    justify-content: center;
}
.simulador-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    background-color: #ffffff;
}
.simulador-card h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #08262b;
}
.simulador-card p {
    font-size: 1rem;
    color: #08262b;
    margin-bottom: 1.5rem;
}
.form-control,
.btn-primary {
    border-radius: 10px;
    background-color: #e5e6e6;
}
.btn-primary {
    background-color: #28a745;
    border-color: #28a745;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #218838;
    border-color: #218838;
}
.info-icon {
    cursor: pointer;
    color: #007bff;
    margin-left: 5px;
}