/* =================================================================
   ASUMAPA LANDING - SIMPLE & CLEAN DESIGN
   Back to the original spirit: simple, authentic, and fun
   ================================================================= */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* =================================================================
   CSS RESET & BASE STYLES
   ================================================================= */
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

::before,
::after {
  --tw-content: '';
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-feature-settings: normal;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: inherit;
}

/* Remove list bullets */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/* Remove default link styles */
a {
  color: inherit;
  text-decoration: inherit;
}

/* Remove default button styles */
button {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

/* Remove default form styles */
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

/* Remove default table styles */
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

/* Remove default heading margins */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* Remove default paragraph margins */
p {
  margin: 0;
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

/* Display utilities */
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* Position utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

/* Top/Bottom/Left/Right */
.top-0 { top: 0; }
.top-full { top: 100%; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

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

/* Width utilities */
.w-full { width: 100%; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-6xl { max-width: 72rem; }

/* Height utilities */
.h-auto { height: auto; }
.h-5 { height: 1.25rem; }
.h-16 { height: 4rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }

/* Margin utilities */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-3 { margin-left: 0.75rem; }

/* Padding utilities */
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.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-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-20 { padding-top: 5rem; }
.pb-12 { padding-bottom: 3rem; }
.p-4 { padding: 1rem; }
.p-10 { padding: 2.5rem; }

/* Flex utilities */
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Grid utilities */
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.gap-8 { gap: 2rem; }

/* Typography */
.font-inter { font-family: 'Inter', sans-serif; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-center { text-align: center; }

/* Colors */
.text-gray-900 { color: #111827; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-400 { color: #9ca3af; }
.text-white { color: #ffffff; }
.text-blue-600 { color: #2563eb; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-pink-600 { background-color: #db2777; }

/* Hover states */
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:bg-pink-600:hover { background-color: #db2777; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:grayscale-0:hover { filter: grayscale(0); }

/* Border utilities */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-gray-800 { border-color: #1f2937; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow utilities */
.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-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* Transform utilities */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.scale-110 { --tw-scale-x: 1.1; --tw-scale-y: 1.1; }
.-translate-y-1\/2 { --tw-translate-y: -50%; }

/* Transition utilities */
.transition-all { transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* Filter utilities */
.grayscale { filter: grayscale(100%); }

/* Object utilities */
.object-contain { object-fit: contain; }

/* Overflow utilities */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* Opacity utilities */
.opacity-60 { opacity: 0.6; }

/* Cursor utilities */
.cursor-pointer { cursor: pointer; }

/* Antialiasing */
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Tracking */
.tracking-tight { letter-spacing: -0.025em; }

/* =================================================================
   CUSTOM STYLES
   ================================================================= */

/* Navigation scrolled state */
#navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

/* No underline utility */
.no-underline {
  text-decoration: none !important;
}

/* Group hover effects */
.group:hover .group-hover\:grayscale-0 {
  filter: grayscale(0);
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

/* PARTNERS GRID - FULLY RESPONSIVE */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
  }
}
.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.partner:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transform: scale(1.04);
  background: #fff;
}
.partner-logo {
  max-width: 100px;
  width: 100%;
  height: 48px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.2s, transform 0.2s;
}
.partner:hover .partner-logo {
  filter: grayscale(0%);
  transform: scale(1.1);
}
@media (min-width: 480px) {
  .partner-logo {
    max-width: 120px;
    height: 56px;
  }
}
@media (min-width: 768px) {
  .partner-logo {
    max-width: 140px;
    height: 64px;
  }
}
