.top-gap {
  margin-top: 150px; /* Ajuste conforme necessário */
}

.img-refin {
  width: 80%;
  height: 700px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: block;
  margin: 0 auto;
}


.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  width: fit-content;

  background: linear-gradient(180deg, #6edb6a 0%, #1f8f2f 100%);
  border-radius: 40px;

  box-shadow: 
    inset 0 2px 0 rgba(255,255,255,0.4),
    0 4px 10px rgba(0,0,0,0.25);

  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 0 2px 0 rgba(255,255,255,0.4),
    0 6px 14px rgba(0,0,0,0.35);
}

.whatsapp-btn .icon {
  width: 42px;
  height: 42px;
  background: #1ebd3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn .icon img {
  width: 22px;
  height: 22px;
}

.whatsapp-btn .text {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.whatsapp-btn .title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
}

.whatsapp-btn .subtitle {
  font-size: 14px;
  opacity: 0.9;
}


@media (max-width: 768px) {
    .img-refin {
        width: 100%;
        height: auto;
    }
}