 body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    display: block;  }
  .navbar {
    background-color: #DF7C14 !important;
    padding: 20px; 
  }
  .titulo {
    color: #000000;
    text-align: center;
    font-size: 30px;
    margin-bottom: 16px;
    font-weight: bold; 
  }
  .nav-link {
    font-family: 'Poppins', sans-serif; 
    color: #ffffff; 
    font-weight: bold; 
  }
  .img-logo {
    width: 70px; 
    height: 60px;
  }
  .banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    padding: 45px;
    background-color: #fff;
  }

  .banner .text-container {
    flex: 1;
    padding: 60px;
    max-width: 900px;
    font-family: 'Poppins', sans-serif;

  }

  .banner .text-container h1 {
    font-size: 3.5rem;
    color: #000;
    margin: 0;
  }

  .banner .text-container p {
    font-size: 1.2rem;
    color: #f45b00; 
    margin: 20px 0;
  }

  .banner .logo-container {
    flex: 1;
    text-align: right;
    max-width: 400px;
  }

  .banner .logo-container img {
    max-width: 100%;
    height: auto;
  }

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

    .banner .text-container,
    .banner .logo-container {
      max-width: 100%;
    }

    .banner .text-container h1 {
      font-size: 2rem;
    }
  }
  @media (max-width: 2000px) {
    .banner {
      height:  auto; 
    }
    .titulo {
      color: #000000; 
      text-align: center;
      font-size: 35px;
      margin-bottom: 20px;
      font-weight: bold; 
  
    }
  }
  @media (max-width: 430px) {
    .banner {
      height: auto;
      width: 100%;
    }
    .titulo {
      color: #000000; 
      text-align: center;
      font-size: 14px;
      margin-bottom: 16px;
      font-weight: bold; 
    }
    .content {

      font-size: 12px;
      text-align: justify;
      flex-direction: column;
      padding: 28px;
    }
  }
  .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
  flex-basis: 10px;
  
  }
  .rounded-image {
    width: 842px; 
    height: 522px; 
    border-radius: 15px;
    border: 2px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    
.player-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #DF7C14;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 400px;
  max-width: 90%;
}

.icon {
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.play-button {
  background-color: white;
  color: #000;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background-color: #f1f1f1;
}

.player-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.btn-primary {
  background-color: #DF7C14;
  border-color:  #DF7C14;
}
.btn-primary:hover {
  background-color:  #DF7C14;;
  border-color:  #DF7C14;
}

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

  .navbar-nav {
    flex-direction: column; 
  }

  .btn-primary {
    width: 100%;
    margin-left: 0; 
  }

  .content {
    padding: 10px;
    font-size: 12px;
  }

  .player-container {
    width: 100%; 
  }

  .rounded-image {
    width: 100%; 
    height: auto;
  }

  .titulo {
    font-size: 20px; 
  }
}

.container-gray {
  background-color:#F5F5F5; 
  padding: 120px;

 
    text-align: center;
  
}



.icon-music {
  font-size: 32px;
  color: #7ed4be;
}

.icon-curiosidades {
  font-size: 32px;
  color: #f7c6c7;
}

.icon-entrevistas {
  font-size: 32px;
  color: #d4c3f7;
}

.botao-flutuante {

  position: fixed;
  bottom: 20px; 
  right: 20px; 
  background-color: #DF7C14; 
  color: white; 
  padding: 15px 20px; 
  border-radius: 50px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
  text-decoration: none; 
}

.botao-flutuante i {
  padding-right: 5px; 
}

@media (max-width: 768px) { 
  .btn-flutuante {
    padding: 10px 15px;
    font-size: 0.9rem; 
  }

  .btn-flutuante i {
    font-size: 1.4rem; 
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 15%); 
  gap: 10px;
  justify-content: center; 
}

.gallery img {
  width: 100%;
  border-radius: 15px; 
  object-fit: cover;
  aspect-ratio: 1 / 1; 
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05); 
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr); 
  }
}




footer {
  background-color: #DF7C14; 
  padding: 20px 0;
  text-align: center;
}
.footer-content {
  background-color: #fff; 
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px; 
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px; 
  width: 80%;
  max-width: 1000px; 
}
.footer-content img {
  height: 50px;
}
.footer-text {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}

.footer-logo {
  max-width: 100%;
  height: auto;
  width: 150px; 
}

.footer-text {
  font-size: 14px;
  color: #fff;
}

@media (max-width: 768px) {
  .footer-content {
    gap: 15px;
  }

  .footer-logo {
    width: 120px; 
  }

  .footer-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 10px;
    flex-direction: column; 
  }

  .footer-logo {
    width: 100px; 
  }

  .footer-text {
    font-size: 10px;
  }
}

.section {
  text-align: left;
}
.icons {
  display: flex;
  gap: 20px; 
  margin-top: 10px;
  padding-bottom: 25px;
}

.icons a {
  font-size: 24px;
  color: #333; 
  text-decoration: none;
}
.location {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.location img {
  width: 40px;
  height: 40px;
}

.container {
  display: flex;
  justify-content: space-evenly;
}

.section {
  width: 45%; 
}

h2 {
  text-align: left; 
}

.info {
  font-size: 30px; 
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
  margin-top: 10px;
}


.icone {
  margin-right: 10px; 
  font-size: 24px; 
}




.mapBox{
  position: relative;
  width: 700px;
  height: 400px;
  background: #fff;
}

.mapBox iframe{
  width: 100%;
  height: 100%;
}

@media (max-width: 480px) {
  
.mapBox{
  position: relative;
  width: 180px;
  height: 120px;
  background: #fff;
}

.container2{
font-size: 20px;
}

}

.container2{
  background-color:#F5F5F5; 
  padding: 50px;
}
.sintonize {
  padding: 60px;
  margin-bottom: 5%;
}

@media (max-width: 768px) {
  .card {
    min-height: 280px; /* ou mais, conforme testar */
    padding: 20px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-text-depoimentos {
    font-size: 0.9rem;
  }

  .icon {
    font-size: 26px; /* aumentar o ícone */
  }
}

