/* Styles - GuiaPix Ceará */

/* Material Symbols Icons */
.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

/* Button Styles */
.btn-primary {
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
}

/* Global Styles */
body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  transition: background-color 0.3s ease, color 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

/* Section Spacing */
section {
  scroll-margin-top: 100px;
}

/* Custom Transitions */
a {
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* Utility Classes */
.link-hover:hover {
  color: #0A4FFF;
}

/* Efeito de destaque das seções */
.highlight {
  animation: highlightPulse 0.6s ease-in-out;
}

@keyframes highlightPulse {
  0% {
    background-color: rgba(10, 79, 255, 0.1);
  }

  50% {
    background-color: rgba(10, 79, 255, 0.2);
  }

  100% {
    background-color: transparent;
  }
}