/* Heeo Technology - Site Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --background: 0 0% 2%;
  --foreground: 0 0% 95%;
  --card: 0 0% 5%;
  --card-foreground: 0 0% 95%;
  --primary: 0 0% 100%;
  --primary-foreground: 0 0% 2%;
  --secondary: 0 0% 10%;
  --secondary-foreground: 0 0% 85%;
  --muted: 0 0% 8%;
  --muted-foreground: 0 0% 50%;
  --accent: 160 50% 45%;
  --accent-foreground: 0 0% 2%;
  --border: 0 0% 12%;
  --input: 0 0% 12%;
  --ring: 160 50% 45%;
  --radius: 0.75rem;
}

* {
  border-color: hsl(var(--border));
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout */
.min-h-screen { min-height: 100vh; }
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1400px) {
  .container { max-width: 1400px; }
}

/* Animations - scroll reveal */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll[data-x="-20"] {
  transform: translateX(-20px);
}
.animate-on-scroll[data-x="20"] {
  transform: translateX(20px);
}
.animate-on-scroll.visible-x-left,
.animate-on-scroll.visible-x-right {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-0 { transition-delay: 0ms; }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }

/* Custom classes */
.text-gradient-accent {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, hsl(var(--accent)), #82c9b2);
}

.grid-bg {
  background-image: 
    linear-gradient(hsl(var(--border) / 0.4) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--border) / 0.4) 1px, transparent 1px);
  background-size: 80px 80px;
}

.radial-fade {
  background: radial-gradient(ellipse at 50% 0%, hsl(var(--accent) / 0.06) 0%, transparent 60%);
}

.radial-fade-center {
  background: radial-gradient(circle at 50% 50%, hsl(var(--accent) / 0.05) 0%, transparent 50%);
}

.bento-card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
  border-color: hsl(var(--accent) / 0.2);
  box-shadow: 0 0 60px -20px hsl(var(--accent) / 0.1);
}

/* Contact cards - compact padding override */
#contato .bento-card {
  padding: 0.5rem 0.75rem;
}

.section-label {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary) / 0.6);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid hsl(var(--border) / 0.4);
  background-color: hsl(var(--background) / 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.nav-mobile-menu.open {
  max-height: 300px;
  opacity: 1;
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.95);
}

/* Contact cards compact */
.contact-card {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: hsl(var(--accent) / 0.2);
}

/* Utility classes */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-50 { z-index: 50; }

.w-full { width: 100%; }
.min-w-0 { min-width: 0; }
.shrink-0 { flex-shrink: 0; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-16 { margin-top: 4rem; }

.p-6 { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-8 { padding-top: 2rem; }
.pt-32 { padding-top: 8rem; }
.pb-24 { padding-bottom: 6rem; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.opacity-20 { opacity: 0.2; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }

.transition-colors { transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
.transition-opacity { transition: opacity 0.2s; }
.transition-all { transition: all 0.3s ease; }
.duration-200 { transition-duration: 200ms; }

.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }

/* Color utilities */
.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-accent { background-color: hsl(var(--accent)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.text-foreground { color: hsl(var(--foreground)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.border-border { border-color: hsl(var(--border)); }

.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:text-foreground:hover { color: hsl(var(--foreground)); }
.hover\:bg-secondary:hover { background-color: hsl(var(--secondary)); }
.hover\:border-accent:hover { border-color: hsl(var(--accent) / 0.3); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* Responsive */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:flex-row { flex-direction: row; }
  .md\:text-xl { font-size: 1.25rem; }
}
@media (max-width: 767px) {
  .md\:flex { display: none !important; }
  .md\:hidden { display: block; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:text-7xl { font-size: 4.5rem; }
}
