/*
 * vaemptîness Corporate Landing Page Styles
 * Extracted from https://vaemptiness.lovable.app/
 */

/* CSS Variables - Theme System */
:root {
  /* Colors - Light Mode (Warm rust/bronze theme from external CSS) */
  --background: 40 20% 98%;
  --foreground: 30 10% 15%;
  --card: 40 15% 96%;
  --card-foreground: 30 10% 15%;
  --popover: 40 20% 98%;
  --popover-foreground: 30 10% 15%;
  --primary: 35 40% 45%;
  --primary-foreground: 40 20% 98%;
  --secondary: 35 20% 90%;
  --secondary-foreground: 30 10% 20%;
  --muted: 35 15% 92%;
  --muted-foreground: 30 8% 45%;
  --accent: 35 30% 85%;
  --accent-foreground: 30 10% 15%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 35 15% 88%;
  --input: 35 15% 88%;
  --ring: 35 40% 45%;
  --radius: 0.5rem;

  /* Typography - Match General Site */
  --font-display: 'Cardo', serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizing - Responsive with clamp() */
  --text-hero: clamp(2.5rem, 6vw, 4.5rem);
  --text-h1: clamp(2rem, 4vw, 3.5rem);
  --text-h2: clamp(1.5rem, 3vw, 2.5rem);
  --text-h3: clamp(1.25rem, 2vw, 1.75rem);
  --text-h4: clamp(1rem, 1.5vw, 1.125rem);
  --text-body-lg: clamp(1.125rem, 1.5vw, 1.25rem);
  --text-body: 1rem;
  --text-small: 0.875rem;

  /* Gradients (from external CSS) */
  --gradient-warm: linear-gradient(135deg, hsl(35 30% 95%) 0%, hsl(40 20% 98%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(40 20% 98%) 0%, hsl(35 25% 94%) 100%);
  --gradient-cta: linear-gradient(135deg, hsl(35 40% 45%) 0%, hsl(30 35% 38%) 100%);

  /* Shadows (from external CSS - warm-tinted) */
  --shadow-soft: 0 4px 20px -4px hsl(35 20% 20% / .08);
  --shadow-elevated: 0 12px 40px -8px hsl(35 20% 20% / .12);
  --shadow-glow: 0 0 40px hsl(35 40% 45% / .15);
}

/* Dark Mode Variables - Not used in this implementation */

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-style: solid;
  border-width: 0;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography Classes */
.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

/* Logo Styling - Match Main Site */
.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 50px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo-image:hover {
  opacity: 0.8;
}

/* Hero Brand Styling - Match Home Page Structure */
.hero-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.hero-title {
  margin-bottom: 0;
  text-align: center;
}

.hero-brand {
  display: block;
  font-size: var(--text-hero);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.hero-brand-va {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.hero-brand-emptiness {
  font-weight: 300;
}

.hero-tagline {
  display: block;
  font-size: var(--text-body-lg);
  font-weight: 300;
  color: hsl(var(--muted-foreground));
}

/* Color Utilities */
.bg-background {
  background-color: hsl(var(--background));
}

.bg-card {
  background-color: hsl(var(--card));
}

.bg-foreground {
  background-color: hsl(var(--foreground));
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-border {
  background-color: hsl(var(--border));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}

.border-border {
  border-color: hsl(var(--border));
}

.border-input {
  border-color: hsl(var(--input));
}

/* Gradient Backgrounds */
.gradient-hero {
  background: var(--gradient-hero);
}

.gradient-warm {
  background: var(--gradient-warm);
}

.gradient-cta {
  background: var(--gradient-cta);
}

.gradient-cta:hover {
  background: linear-gradient(135deg, hsl(35 40% 40%) 0%, hsl(30 35% 33%) 100%);
}

/* Shadow Utilities */
.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-elevated {
  box-shadow: var(--shadow-elevated);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

.hover\:shadow-elevated:hover {
  box-shadow: var(--shadow-elevated);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

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

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Animation Delays for Stagger Effects */
.animation-delay-100 {
  animation-delay: 100ms;
}

.animation-delay-200 {
  animation-delay: 200ms;
}

.animation-delay-300 {
  animation-delay: 300ms;
}

.animation-delay-400 {
  animation-delay: 400ms;
}

.animation-delay-500 {
  animation-delay: 500ms;
}

.animation-delay-200 {
  animation-delay: 200ms;
}

/* Hover Effects */
.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.hover\:bg-primary:hover {
  background-color: hsl(var(--primary));
}

.hover\:text-primary-foreground:hover {
  color: hsl(var(--primary-foreground));
}

.hover\:bg-primary\/90:hover {
  background-color: hsl(var(--primary) / 0.9);
}

/* Scale Transform Effects */
.hover\:scale-\[1\.01\]:hover {
  transform: scale(1.01);
}

.hover\:scale-\[1\.02\]:hover {
  transform: scale(1.02);
}

.active\:scale-\[0\.98\]:active {
  transform: scale(0.98);
}

.active\:scale-\[0\.99\]:active {
  transform: scale(0.99);
}

/* Layout Utilities */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Form Styles */
input[type="text"],
input[type="email"],
textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--input));
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
}

button[type="submit"] {
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* Fixed Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

/* Scroll Margin for Anchor Links */
section[id] {
  scroll-margin-top: 100px;
}

/* Responsive Text Sizing */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo-image {
    height: 40px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Green color for metrics */
.text-green-600 {
  color: rgb(22, 163, 74);
}

/* Backdrop blur utility */
.backdrop-blur-sm {
  backdrop-filter: blur(8px);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

/* Opacity utilities for colors */
.bg-background\/50 {
  background-color: hsl(var(--background) / 0.5);
}

.bg-background\/80 {
  background-color: hsl(var(--background) / 0.8);
}

.bg-primary\/10 {
  background-color: hsl(var(--primary) / 0.1);
}

.text-primary\/20 {
  color: hsl(var(--primary) / 0.2);
}

.border-primary\/20 {
  border-color: hsl(var(--primary) / 0.2);
}

.text-background\/40 {
  color: hsl(var(--background) / 0.4);
}

.text-background\/60 {
  color: hsl(var(--background) / 0.6);
}

.text-background {
  color: hsl(var(--background));
}

.border-background\/30 {
  border-color: hsl(var(--background) / 0.3);
}

/* Success Message */
.form-success {
  background-color: hsl(142 76% 36% / 0.1);
  color: hsl(142 76% 36%);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 1rem;
}

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Additional Utility Classes for Empresas Page */

/* Position utilities */
.top-1\/4 { top: 25%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* Size utilities */
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-9 { width: 2.25rem; }
.h-9 { height: 2.25rem; }
.h-14 { height: 3.5rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.w-24 { width: 6rem; }
.h-24 { height: 6rem; }
.w-32 { width: 8rem; }
.h-32 { height: 8rem; }
.w-64 { width: 16rem; }
.h-64 { height: 16rem; }
.min-h-screen { min-height: 100vh; }
.max-w-xl { max-width: 36rem; }
.max-w-xs { max-width: 20rem; }
.max-w-4xl { max-width: 56rem; }

/* Padding utilities */
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.pt-20 { padding-top: 5rem; }
.pb-24 { padding-bottom: 6rem; }

/* Opacity utilities */
.opacity-50 { opacity: 0.5; }

/* Z-index */
.z-10 { z-index: 10; }

/* Text utilities */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.tracking-tight { letter-spacing: -0.025em; }
.whitespace-nowrap { white-space: nowrap; }
.italic { font-style: italic; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Ring utilities for focus */
.ring-offset-background { --tw-ring-offset-color: hsl(var(--background)); }
.focus-visible\:outline-none:focus-visible { outline: 2px solid transparent; outline-offset: 2px; }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px var(--tw-ring-offset-color), 0 0 0 calc(2px + 2px) hsl(var(--ring)); }
.focus-visible\:ring-ring:focus-visible { --tw-ring-color: hsl(var(--ring)); }
.focus-visible\:ring-offset-2:focus-visible { --tw-ring-offset-width: 2px; }

/* Transition utilities */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Disabled state */
.disabled\:pointer-events-none:disabled { pointer-events: none; }
.disabled\:opacity-50:disabled { opacity: 0.5; }

/* SVG utilities */
.\[\&_svg\]\:pointer-events-none svg { pointer-events: none; }
.\[\&_svg\]\:size-4 svg { width: 1rem; height: 1rem; }
.\[\&_svg\]\:shrink-0 svg { flex-shrink: 0; }

/* Color opacity utilities */
.border-primary { border-color: hsl(var(--primary)); }
.border-primary\/10 { border-color: hsl(var(--primary) / 0.1); }
.border-primary\/20 { border-color: hsl(var(--primary) / 0.2); }
.border-primary\/30 { border-color: hsl(var(--primary) / 0.3); }
.border-border\/50 { border-color: hsl(var(--border) / 0.5); }
.bg-secondary\/50 { background-color: hsl(var(--secondary) / 0.5); }
.text-primary\/80 { color: hsl(var(--primary) / 0.8); }
.bg-transparent { background-color: transparent; }

/* Rounded utilities */
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* Flex utilities */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.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; }
.gap-12 { gap: 3rem; }

/* Space utilities */
.space-y-8 > * + * { margin-top: 2rem; }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Position utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-1\/2 { left: 50%; }
.left-8 { left: 2rem; }
.bottom-8 { bottom: 2rem; }

/* Negative position utilities */
.-top-4 { top: -1rem; }
.-right-4 { right: -1rem; }
.-bottom-4 { bottom: -1rem; }
.-left-4 { left: -1rem; }

/* Inset utilities */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Display utilities */
.block { display: block; }
.hidden { display: none; }

/* Text alignment */
.text-center { text-align: center; }

/* Width utilities */
.w-full { width: 100%; }
.w-px { width: 1px; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-6xl { max-width: 72rem; }

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

/* Border utilities */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-b { border-bottom-width: 1px; }

/* Responsive utilities - md breakpoint (768px+) */
@media (min-width: 768px) {
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* lg breakpoint (1024px+) */
@media (min-width: 1024px) {
  .lg\:left-1\/2 { left: 50%; }
  .lg\:md\:-translate-x-1\/2 { transform: translateX(-50%); }
  .lg\:md\:-translate-x-px { transform: translateX(-1px); }
}

/* sm breakpoint (640px+) */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

/* ============================================
   PIXEL-PERFECT POSITIONING ADJUSTMENTS
   ============================================ */

/* Timeline Positioning */
.timeline-dot {
  border-width: 4px !important;
  border-color: hsl(var(--background)) !important;
}

/* Solution Section Badge Positioning */
.solution-badge-top-right {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
}

.solution-badge-bottom-left {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
}

/* Header Height Adjustment */
/* Removed - causing height to be 74px instead of 73px */
