/* Footer */
footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
}

.scroll-top {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-color);
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 100;
  opacity: 1;
}

.scroll-top:hover {
  background-color: #ffe03d;
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .scroll-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.footer-content {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-logo {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo .logo-rodape {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  display: block;
}

.footer-logo p {
  font-size: 0.95rem;
  color: #ddd;
  text-align: center;
}

.footer-info {
  text-align: center;
  margin-bottom: 30px;
  color: #ddd;
}

.footer-info .razao-social {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.footer-info .empresa {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.footer-info .cnpj {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #394858;
  font-size: 0.9rem;
  color: #ddd;
}

/* Estilos para o banner promocional na seção de contato */
.promo-banner {
  background: linear-gradient(135deg, #376bff, #2647b9);
  border-radius: 12px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px rgba(55, 107, 255, 0.2);
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 211, 1, 0.2);
  border-radius: 50%;
  z-index: 1;
}

.promo-banner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 211, 1, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.promo-content {
  padding: 35px;
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.promo-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.promo-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.promo-options {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 20px;
  justify-content: center;
}

.promo-option {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.promo-option:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.promo-option i {
  font-size: 1.4rem;
  margin-right: 15px;
  color: #ffd301;
}

.promo-option span {
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
}

/* Media Queries para o banner promocional */
@media (max-width: 768px) {
  .promo-content {
    padding: 25px;
  }

  .promo-content h3 {
    font-size: 1.5rem;
  }

  .promo-content p {
    font-size: 1.1rem;
  }

  .promo-options {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .promo-content h3 {
    font-size: 1.3rem;
  }

  .promo-content p {
    font-size: 1rem;
  }

  .promo-option {
    padding: 10px 15px;
  }

  .promo-option i {
    font-size: 1.2rem;
  }

  .promo-option span {
    font-size: 0.95rem;
  }
}
