:root {
    /* Core Colors - Keeping your requested palette */
    --color-bg: #090909;
    --color-primary: #5200ff;
    --color-primary-dark: #3a00b8;
    --color-primary-light: #6d28d9;
    --color-primary-glow: rgba(82, 0, 255, 0.2);
    
    /* Extended Palette */
    --color-surface: #111111;
    --color-surface-light: #1a1a1a;
    --color-surface-dark: #050505;
    --color-border: #222222;
    --color-border-light: #333333;
    --color-hive-image: #121212;
    
    /* Text Colors */
    --color-text: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-text-tertiary: #666666;
    
    /* Accent Colors */
    --color-accent: #1900ff;
    --color-success: #6150ff;
    --color-warning: #ffb800;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xxs: 0.25rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px var(--color-primary-glow);

    /* Heatmap */
    --color-heat-1: rgba(82, 0, 255, 0.05);
    --color-heat-2: rgba(82, 0, 255, 0.1);
    --color-heat-3: rgba(82, 0, 255, 0.15);
    --color-heat-4: rgba(82, 0, 255, 0.2);
    --color-heat-5: rgba(82, 0, 255, 0.25);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

body {
  background: #090909;
  color: #ffffff;
  overflow-x: hidden;
}

/* Header Tab*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(29, 29, 29, 0.658);
    backdrop-filter: blur(7px);
    border-bottom: 1px solid var(--color-border);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    padding: var(--spacing-xs) 0;
}

.logo-img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-cta {
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    background-color: var(--color-primary);
    color: var(--color-text);
    border: 0;
}

.nav-cta:hover {
    border-top: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
    background-color: transparent;
}
.contact-container {
  position: relative;
  z-index: 2;
  padding: 100px 8vw;
}
.contact-container-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-header {
  width: 100%;
  margin-bottom: 80px;
}

.contact-header h1 {
  font-size: 30px;
  font-weight: 200;
  letter-spacing: 5px;
}

.contact-header p {
  margin-top: 20px;
  color: #aaa;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Header */
.contact-header {
  max-width: 720px;
  margin-bottom: 70px;
}

.contact-header h1 {
  font-size: 35px;
  font-weight: 200;
  letter-spacing: 0px;
}

.contact-header h1 span {
  color: #5200ff;
}

.contact-header p {
  margin-top: 20px;
  color: #aaaaaa;
  line-height: 1.6;
}

/* INFO */
.contact-info {
  border: 1px solid #1a1a1a;
  padding: 40px;
  background: linear-gradient(135deg, #0c0c0c, #090909);
}

.info-block:not(:last-child) {
  margin-bottom: 30px;
}

.info-block h3 {
  color: #5200ff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-block p {
  color: #ddd;
  font-size: 1rem;
}

/* Card */
.contact-card {
  max-width: 520px;
  padding: 40px;
  background: linear-gradient(180deg, #0b0b0b, #090909);
  border: 1px solid #1b1b1b;
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid #5200ff;
  clip-path: polygon(0 0, 95% 0, 100% 12%, 100% 100%, 0 100%);
  pointer-events: none;
}

.contact-card h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* FORM */
.contact-form {
  border: 1px solid #5200ff33;
  padding: 40px;
  background: linear-gradient(180deg, #0b0b0b, #090909);
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid #5200ff;
  clip-path: polygon(0 0, 96% 0, 100% 8%, 100% 100%, 0 100%);
  pointer-events: none;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.field label {
  font-size: 1rem;
  color: #888;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  background: #090909;
  border: 1px solid #222;
  padding: 12px;
  color: white;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: #5200ff;
}

button {
  position: relative;
  background: none;
  color: white;
  border: 1px solid #5200ff;
  padding: 14px;
  cursor: pointer;
  letter-spacing: 1px;
  overflow: hidden;
}

button:hover .accent-bar {
  transform: translateX(0);
}

.accent-bar {
  position: absolute;
  inset: 0;
  background: #5200ff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

/* Nota */
.contact-nota {
  margin-top: 28px;
  font-size: 0.8rem;
  color: #777777;
  letter-spacing: 0.5px;
}

/* FOOTER */
.footer {
    padding: 3rem 0 2rem;
    background-color: var(--color-surface-dark);
    border-top: 1px solid var(--color-border);
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    pointer-events: none;
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.brand-image {
    height: 1.8em;
    width: auto;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.footer-info {
    display: flex;
    flex-direction: column; /* stack items vertically */
    align-items: center;    /* center horizontally (optional) */
    gap: var(--spacing-sm); /* space between copyright and links */
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-primary);
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-container {
    padding: 80px 6vw;
  }
}