/* Estilo do contêiner principal */
.eee_banner_container {
  background-color: #241e42;
  /* Verde vibrante conforme descrição */
  border-radius: 65px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 20px auto;
  margin-top: 80px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Seção esquerda: Smartphone */
.eee_left_section {
  flex: 1;
  position: relative;
}

.eee_download_icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.eee_smartphone_image {
  width: 100%;
  max-width: 300px;
  transform: rotate(-30deg);
  /* Ângulo diagonal conforme descrição */
  margin-left: -30px;
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
}

/* Seção direita: Texto, QR Code e Badges */
.eee_right_section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eee_banner_text {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: bold;
  font-family: sans-serif;
  margin-bottom: 20px;
}

.eee_qr_code {
  width: 150px;
  height: 150px;
  background-color: #FFFFFF;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.eee_app_badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.eee_app_badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 12px;
  text-decoration: none;
  /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);*/
}

.eee_app_badge.app_store {
  background-color: #241e42;
}

.eee_app_badge.play_store {
  background-color: #241e42;
}

/* Responsividade */
@media (max-width: 768px) {
  .eee_banner_container {
    flex-direction: column;
    padding: 15px;
  }

  .eee_left_section {
    margin-bottom: 20px;
  }

  .eee_smartphone_image {
    margin-left: 0;
    transform: none;
  }

  .eee_banner_text {
    font-size: 24px;
  }
}