.main {
  margin-top: 100px;
}
* {
  color: #ffffff;
}
h2 {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 48px;
  font-size: 64px;
}
h3 {
  font-size: 48px;
}
h4 {
  font-size: 32px;
  margin: 8px 0;
}
.grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2.5%;
  width: 85%;
  margin: 0 auto 5%;
}
.row {
  width: 33.33%;
  background-color: aqua;
  text-align: center;
  padding: 14px 2%;
  position: relative;
}
.row p {
  margin-bottom: 170px;
}

iframe {
  width: 90%;
  height: auto;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.row-film {
  background-image: url("../image/bg-azul-film.png");
}
.row-lab {
  background-image: url("../image/bg-rosa-lab.png");
}
.row-studio {
  background-image: url("../image/bg-amarelo-studio.png");
}

@media (max-width: 1000px) {
  .main {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .grid {
    flex-direction: column;
    width: 100%;
  }
  .row {
    width: 80%;
    padding: 14px 5%;
    margin: 2.5% auto;
  }
}

#contato {
  padding: 10vmin 16px;
  display: flex;
  flex-direction: column;
  background-image: url("../image/bg_footer.png");
  background-size: cover;
  background-position: center;
  align-items: center;
}

.contato-logo {
  align-self: flex-start;
  max-height: 10vmin;
  margin: 0 0 6vmin 12.5vw;
}

.contato-container {
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  width: 75vw;
  margin-bottom: 5vh;
}

.contato-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 6vmin;
}

.contato-title {
  text-align: left;
  font-weight: 700;
  font-size: 6.5vmin;
  align-self: flex-start;
  margin: 0;
  line-height: 1.2;
  font-family: "Montserrat Bold", sans-serif;
  color: #ffffff;
}

.contato-detalhes {
  display: flex;
  flex-direction: column;
  font-size: 3.5vmin;
  line-height: 1.8;
  color: #ffffff;
}

.contato-endereco {
  align-self: flex-start;
  font-size: 3.5vmin;
  line-height: 1.8;
  margin: 0 0 2vmin 0;
  font-family: "Montserrat SemiBold", sans-serif;
}

.contato-redes-sociais {
  display: flex;
  align-self: flex-start;
  gap: 1vmax;
}

.contato-redes-sociais img {
  width: auto;
  height: 5vmin;
  transition: transform 0.3s ease;
}

.contato-redes-sociais img:hover {
  transform: scale(1.1);
}

.contato-whatsapp {
  align-self: flex-start;
  margin-top: 5vh;
}

.whatsapp-button {
  height: 10vmin;
  background-color: #25d366;
  max-height: 10vmin;
  padding: 8px 20px;
  font-size: 3vmin;
  font-weight: 700;
  border-radius: 16px;
  color: white;
  border: 3.5px solid white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
}

.whatsapp-button:hover {
  background-color: rgb(21, 139, 65);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
  width: 7vmin;
  margin-left: 10px;
}

b {
  font-weight: 700 !important;
}

/* Responsividade Contato */
@media (max-width: 768px) {
  .contato-container {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    width: 85vw;
  }

  .contato-title {
    font-size: 7vmin;
  }

  .hide-on-mobile {
    display: none;
  }

  .contato-whatsapp {
    width: 100%;
  }

  .whatsapp-button {
    width: 100%;
    justify-content: center;
  }
}
