body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5;
  line-height: 26px;
  font-weight: 400;
}

.whatsapp-container {
  position: fixed;
  bottom: 100px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 16px;
  z-index: 1000;
}

.modal-container {
  opacity: 0;
  display: none;
  transition: all 0.3s;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 15px;
  background-color: #25d366;
  color: #fff;
  border: none;
  border-radius: 500px;
  cursor: pointer;
  transition: opacity 0.3s;
}

button span {
  font-size: 16px;
}

button img {
  width: 24px;
}

button:hover {
  opacity: 0.8;
}

.whatsapp-modal {
  z-index: 1000;
  width: 400px;
  height: 350px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.whatsapp-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: top;
  background-color: #075f55;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
  color: #fff;
}

.name h3 {
  font-weight: bold;
  font-size: 20px;
}

.name p {
  font-size: 14px;
}

.whatsapp-modal-body {
  padding: 24px;
  background-image: url("/images/whatsapp-background.webp");
  background-size: cover;
}

.whatsapp-modal-body .msg {
  font-size: 16px;
  background-color: #dcf7c5;
  border-radius: 16px;
  width: 80%;
  margin-left: auto;
  padding: 16px;
  color: black;
}

.whatsapp-modal-body .la-viña {
  font-weight: 550;
}

.whatsapp-modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  height: 60px;
}

.whatsapp-modal-button {
  width: 80%;
  background-color: #25d466;
  border-radius: 500px;
  border: none;
  color: #fff;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.close {
  cursor: pointer;
  font-size: 30px;
}

.info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 768px) {
  .whatsapp-modal {
    width: 100%;
  }
}

@media (max-width: 355px) {
  .whatsapp-modal-body .msg {
    width: 100%;
  }
}

h3 {
  margin: 0;
}

p {
  margin: 0;
}
