@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap";

/* src/styles.scss */
:root {
  --primary: #0d6e8e;
  --primary-light: #14a3c7;
  --primary-dark: #0a556c;
  --accent: #f05a28;
  --accent-light: #f97316;
  --accent-gradient:
    linear-gradient(
      135deg,
      #f05a28,
      #f97316);
  --primary-gradient:
    linear-gradient(
      135deg,
      #0d6e8e,
      #14a3c7);
  --success: #059669;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-light: #f1f5f9;
  --bg-hero:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      #e0f2fe,
      #f8fafc);
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 4px 20px rgba(13, 110, 142, 0.15);
  --shadow-accent: 0 4px 20px rgba(240, 90, 40, 0.2);
  --sidebar-bg: #1e293b;
  --sidebar-text: #ffffff;
  --header-bg: #ffffff;
  --footer-bg-start: #0f172a;
  --footer-bg-end: #1e293b;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  animation: none;
}
@keyframes floatPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
