/* Base styles from src/index.css and Tailwind defaults */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: hsl(0, 0%, 100%); /* --background */
  color: hsl(222.2, 84%, 4.9%); /* --foreground */
}

/* Tailwind Preflight Reset (Simplified representation) */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: hsl(214.3, 31.8%, 91.4%); /* --border */
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

/* Custom MKW Colors from tailwind.config.ts */
:root {
  --mkw-primary: #0EA5E9;
  --mkw-secondary: #D3E4FD;
  --mkw-accent: #E11D48;
  --mkw-neutral: #1A1F2C;
  --mkw-neutral-light: #8E9196;
  --border: hsl(214.3, 31.8%, 91.4%);
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(222.2, 84%, 4.9%);
  --primary: hsl(222.2, 47.4%, 11.2%);
  --primary-foreground: hsl(210, 40%, 98%);
  --secondary: hsl(210, 40%, 96.1%);
  --secondary-foreground: hsl(222.2, 47.4%, 11.2%);
  --muted: hsl(210, 40%, 96.1%);
  --muted-foreground: hsl(215.4, 16.3%, 46.9%);
  /* Add other CSS variables from your :root if needed */
}

/* Utility classes from Tailwind (manual representation - very simplified) */
/* General Layout & Spacing */
.min-h-screen { min-height: 100vh; }
.fixed { position: fixed; }
.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }
.z-50 { z-index: 50; }
.p-3 { padding: 0.75rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.ml-auto { margin-left: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-7xl { max-width: 80rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }

/* Flex & Grid */
.flex { display: flex; }
.grid { display: grid; }
.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-8 { gap: 2rem; }
.flex-col { flex-direction: column; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; } /* Simplified */
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }


/* Typography */
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-white { color: white; }
.text-mkw-primary { color: var(--mkw-primary); }
.text-mkw-neutral { color: var(--mkw-neutral); }
.text-mkw-neutral-light { color: var(--mkw-neutral-light); }
.text-yellow-400 { color: #FACC15; } /* Example color */
.text-gray-400 { color: #9CA3AF; } /* Example color */
.text-green-500 { color: #22C55E; }
.hover\:text-mkw-primary:hover { color: var(--mkw-primary); }
.text-center { text-align: center; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.italic { font-style: italic; }


/* Backgrounds & Borders */
.bg-white { background-color: white; }
.bg-gray-50 { background-color: #F9FAFB; } /* Example */
.bg-mkw-secondary { background-color: var(--mkw-secondary); }
.bg-mkw-primary { background-color: var(--mkw-primary); }
.bg-mkw-accent { background-color: var(--mkw-accent); }
.bg-mkw-neutral { background-color: var(--mkw-neutral); }
.bg-opacity-10 { background-color: rgba(var(--mkw-primary-rgb, 14, 165, 233), 0.1); } /* Assuming primary is #0EA5E9 */
.hover\:bg-opacity-90:hover { opacity: 0.9; } /* Simplified */
.hover\:bg-green-600:hover { background-color: #16A34A; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-md { border-radius: 0.375rem; }
.border { border-width: 1px; }
.border-gray-100 { border-color: #F3F4F6; }
.border-gray-700 { border-color: #374151; }
.border-l-4 { border-left-width: 4px; }
.border-mkw-primary { border-color: var(--mkw-primary); }
.border-t { border-top-width: 1px; }


/* Shadows & Effects */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.blur { filter: blur(16px); } /* Example */
.opacity-20 { opacity: 0.2; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transform { transform: scale(1); } /* Base for transform utilities */
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }


/* Sizing */
.w-full { width: 100%; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-64 { width: 16rem; } /* md:h-80 */
.h-64 { height: 16rem; }

/* Object Fit */
.object-cover { object-fit: cover; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.-inset-1 { top: -0.25rem; right: -0.25rem; bottom: -0.25rem; left: -0.25rem; }


/* Keyframes and Animations from tailwind.config.ts */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fade-in-up 0.5s ease-out forwards;
}

@keyframes pulse-subtle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
.animate-pulse-subtle {
  animation: pulse-subtle 2s ease-in-out infinite;
}

/* Gradient */
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-mkw-secondary {
  --tw-gradient-from: var(--mkw-secondary) var(--tw-gradient-from-position);
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-white {
  --tw-gradient-to: white var(--tw-gradient-to-position);
}


/* Responsive styles */
@media (min-width: 768px) { /* md: */
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:flex-row { flex-direction: row; }
  .md\:w-1\/2 { width: 50%; }
  .md\:pr-8 { padding-right: 2rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:mt-0 { margin-top: 0; }
  .md\:h-80 { height: 20rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:block { display: block; }
  .hidden { display: none; } /* For elements initially hidden on mobile */
}

@media (min-width: 1024px) { /* lg: */
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Additional specific styles for interactive elements if needed */
.nav-link {} /* Placeholder for potential nav link specific styles */
.whatsapp-button { /* Base styles for all whatsapp buttons if any generic are needed */
    cursor: pointer;
}

/* Ensure the root element for the page takes up necessary space */
#root {
  max-width: 100%; /* Override the original max-width: 1280px from App.css if going full-width */
  margin: 0 auto;
  padding: 0; /* Remove original padding if sections handle their own */
  text-align: left; /* Reset from original App.css */
}

/* Styles from src/App.css that might be relevant if not overridden by Tailwind */
/* .logo, .logo:hover, .logo.react:hover, @keyframes logo-spin, .card, .read-the-docs */
/* These seem specific to a default Vite+React template and likely not needed for the converted page. */
