/* RESET COMPONENETS */
@import url(./default/reset.css);

.section-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: var(--color-gray-100);
  border-radius: var(--border-radius-base);
  padding: var(--spacing-xl);
  text-align: center;
  color: var(--color-gray-600);
  min-height: 500px;
}

.section-empty i {
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
  color: var(--color-gray-400);
}

.section-empty h3 {
  font-size: var(--font-size-h3);
  margin-bottom: var(--spacing-base);
  color: var(--color-gray-700);
}

.section-empty p {
  font-size: var(--font-size-base);
  max-width: 500px;
  line-height: var(--line-height-lg);
  color: var(--color-gray-600);
}

.button {
  position: relative;
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-base) var(--spacing-xl);
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  color: var(--color-text-primary);
  text-decoration: none;
  border-radius: var(--border-radius-base);
  font-weight: var(--font-weight-semi-bold);
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.button:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
  color: var(--color-white);
}

.button i {
  font-size: var(--font-size-lg);
}

.button:hover::before {
  left: 100%;
}

@media (max-width: 480px) {
  .button {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-sm);
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(18, 140, 126, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}
