.contact-drawer {
  position: fixed;
  top: 0;
  right: -870px;
  width: 870px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  z-index: 1050;
  overflow-y: auto;
  padding: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px 15px;
  border-bottom: 2px solid #f1f1f1;
  margin-bottom: 0;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.drawer-header h3 {
  color: #dc3545;
  margin: 0;
  font-weight: 700;
  font-size: 20px;
}

.close-drawer {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-drawer:hover {
  background-color: #f8f9fa;
  color: #dc3545;
}

.drawer-content {
  padding: 40px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
  backdrop-filter: blur(2px);
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .contact-drawer {
    width: 90%;
    right: -90%;
  }
}

@media (max-width: 576px) {
  .contact-drawer {
    width: 100%;
    right: -100%;
  }

  .drawer-header {
    padding: 15px 20px;
  }

  .drawer-content {
    padding: 20px;
  }
}
