/* ==========================================
   TAILWIND CSS OPTIMIZADO - TETRAKTYS
   Solo clases utilizadas en el proyecto
   Generado para rendimiento óptimo (~50KB)
   ========================================== */

/* Custom Colors */
:root {
  --tetraktys-verdeoscuro: #1b3d2f;
  --tetraktys-verde: #2e593f;
  --tetraktys-verdeacent: #4caf50;
  --tetraktys-menta: #9deede;
  --tetraktys-mentaclaro: #d4f6bb;
  --tetraktys-cyan: #8ae7eb;
}

/* Animación fadeInUp */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 1s ease-out forwards; }

/* Animación float para logo */
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}
.animate-float { animation: float 4s ease-in-out infinite; }

/* Animación pulse para iconos */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(76, 175, 80, 0.3); }
  50% { box-shadow: 0 0 15px rgba(76, 175, 80, 0.6); }
}
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* Glassmorphism Base */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Glassmorphism Oscuro para fondos verdes */
.glass-dark {
  background: rgba(27, 61, 47, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(157, 238, 222, 0.2);
}

/* Glow Effects */
.glow-green {
  box-shadow: 0 0 30px rgba(76, 175, 80, 0.4), 0 0 60px rgba(76, 175, 80, 0.2);
}

.glow-menta {
  box-shadow: 0 0 30px rgba(157, 238, 222, 0.4), 0 0 60px rgba(157, 238, 222, 0.2);
}

/* Borde brillante */
.border-shine {
  position: relative;
}
.border-shine::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ==========================================
   CLASES DE UTILIDAD PRINCIPALES
   ========================================== */

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

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-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-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }

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

/* Espaciado */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.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; }
.mb-16 { margin-bottom: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.-mt-20 { margin-top: -5rem; }

/* Width & Height */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-3 { width: 0.75rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.min-h-screen { min-height: 100vh; }

/* Max Width */
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }

/* Fondos */
.bg-none { background-image: none; }
.bg-white { background-color: #fff; }
.bg-transparent { background-color: transparent; }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.bg-white\/40 { background-color: rgba(255,255,255,0.4); }
.bg-white\/80 { background-color: rgba(255,255,255,0.8); }
.bg-white\/90 { background-color: rgba(255,255,255,0.9); }
.bg-white\/95 { background-color: rgba(255,255,255,0.95); }
.bg-black\/20 { background-color: rgba(0,0,0,0.2); }
.bg-black\/30 { background-color: rgba(0,0,0,0.3); }

/* Gradientes */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }

.from-tetraktys-verdeoscuro { --tw-gradient-from: #1b3d2f; }
.from-tetraktys-verde { --tw-gradient-from: #2e593f; }
.from-tetraktys-verdeacent { --tw-gradient-from: #4caf50; }
.from-tetraktys-menta { --tw-gradient-from: #9deede; }
.from-tetraktys-menta\/20 { background-color: rgba(157,238,222,0.2); }
.from-tetraktys-menta\/30 { background-color: rgba(157,238,222,0.3); }
.from-tetraktys-verde\/5 { background-color: rgba(46,89,63,0.05); }
.from-tetraktys-verde\/10 { background-color: rgba(46,89,63,0.1); }
.from-tetraktys-verdeoscuro\/5 { background-color: rgba(27,61,47,0.05); }
.from-red-500 { --tw-gradient-from: #ef4444; }
.from-blue-100 { --tw-gradient-from: #dbeafe; }
.from-green-100 { --tw-gradient-from: #dcfce7; }
.from-purple-100 { --tw-gradient-from: #f3e8ff; }
.from-orange-100 { --tw-gradient-from: #ffedd5; }
.from-gray-50 { --tw-gradient-from: #f9fafb; }
.from-yellow-50 { --tw-gradient-from: #fffbeb; }

.to-tetraktys-verdeoscuro { --tw-gradient-to: #1b3d2f; }
.to-tetraktys-verde { --tw-gradient-to: #2e593f; }
.to-tetraktys-verdeacent { --tw-gradient-to: #4caf50; }
.to-tetraktys-menta { --tw-gradient-to: #9deede; }
.to-tetraktys-mentaclaro { --tw-gradient-to: #d4f6bb; }
.to-tetraktys-cyan { --tw-gradient-to: #8ae7eb; }
.to-tetraktys-verdeacent\/10 { background-color: rgba(76,175,80,0.1); }
.to-tetraktys-verdeacent\/20 { background-color: rgba(76,175,80,0.2); }
.to-tetraktys-menta\/20 { background-color: rgba(157,238,222,0.2); }
.to-red-700 { --tw-gradient-to: #b91c1c; }
.to-blue-400 { --tw-gradient-to: #60a5fa; }
.to-green-700 { --tw-gradient-to: #15803d; }
.to-white { --tw-gradient-to: #fff; }
.to-gray-100 { --tw-gradient-to: #f3f4f6; }

/* Opacidad */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }
.opacity-100 { opacity: 1; }

/* Bordes */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-l-4 { border-left-width: 4px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.border-white\/40 { border-color: rgba(255,255,255,0.4); }
.border-tetraktys-menta { border-color: #9deede; }
.border-tetraktys-menta\/40 { border-color: rgba(157,238,222,0.4); }
.border-tetraktys-verdeacent { border-color: #4caf50; }
.border-tetraktys-verdeacent\/40 { border-color: rgba(76,175,80,0.4); }
.border-tetraktys-verde { border-color: #2e593f; }
.border-tetraktys-verdeoscuro { border-color: #1b3d2f; }
.border-tetraktys-verdeoscuro\/10 { border-color: rgba(27,61,47,0.1); }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-yellow-400 { border-color: #fbbf24; }
.border-red-100 { border-color: #fee2e2; }
.border-blue-400 { border-color: #60a5fa; }
.border-green-400 { border-color: #4ade80; }
.border-purple-100 { border-color: #f3e8ff; }
.border-orange-100 { border-color: #ffedd5; }

/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-b-2xl { border-bottom-right-radius: 1rem; border-bottom-left-radius: 1rem; }
.rounded-t-xl { border-top-right-radius: 0.75rem; border-top-left-radius: 0.75rem; }

/* Sombras */
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-none { box-shadow: none; }
.drop-shadow-2xl { filter: drop-shadow(0 25px 50px rgba(0,0,0,0.25)); }

/* Texto */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.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; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.italic { font-style: italic; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Colores de texto */
.text-white { color: #fff; }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/90 { color: rgba(255,255,255,0.9); }
.text-black { color: #000; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-tetraktys-verdeoscuro { color: #1b3d2f; }
.text-tetraktys-verde { color: #2e593f; }
.text-tetraktys-verdeacent { color: #4caf50; }
.text-tetraktys-menta { color: #9deede; }
.text-tetraktys-mentaclaro { color: #d4f6bb; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-red-700 { color: #b91c1c; }
.text-red-800 { color: #991b1b; }
.text-yellow-500 { color: #eab308; }
.text-yellow-600 { color: #ca8a04; }
.text-yellow-700 { color: #a16207; }
.text-blue-400 { color: #60a5fa; }
.text-blue-500 { color: #3b82f6; }
.text-blue-800 { color: #1e40af; }
.text-purple-800 { color: #6b21a8; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-tetraktys-verde\/40 { color: rgba(46,89,63,0.4); }
.uppercase { text-transform: uppercase; }
.whitespace-nowrap { white-space: nowrap; }

/* Filtros */
.blur { filter: blur(20px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }
.grayscale { filter: grayscale(100%); }
.grayscale-0 { filter: grayscale(0); }
.backdrop-blur { backdrop-filter: blur(8px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

/* Transiciones */
.transition { transition: all 0.15s ease; }
.transition-all { transition: all 0.15s ease; }
.transition-colors { transition: color 0.15s, background-color 0.15s, border-color 0.15s; }
.transition-opacity { transition: opacity 0.15s; }
.transition-transform { transition: transform 0.15s; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-out { transition-timing-function: cubic-bezier(0,0,0.2,1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }

/* Transform */
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.scale-95 { transform: scale(0.95); }
.scale-x-0 { transform: scaleX(0); }
.scale-x-100 { transform: scaleX(1); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.translate-y-0 { transform: translateY(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-x-1\/2 { transform: translateX(50%); }
.rotate-45 { transform: rotate(45deg); }
.-rotate-45 { transform: rotate(-45deg); }
.rotate-180 { transform: rotate(180deg); }
.origin-left { transform-origin: left; }

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

/* Visibilidad */
.visible { visibility: visible; }
.invisible { visibility: hidden; }
.block { display: block; }
.hidden { display: none; }
.inline-block { display: inline-block; }
.shrink-0 { flex-shrink: 0; }
.group { }

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

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

/* Select */
.select-none { user-select: none; }
.select-text { user-select: text; }

/* Hover */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:bg-tetraktys-mentaclaro\/30:hover { background-color: rgba(212,246,187,0.3); }
.hover\:bg-white\/30:hover { background-color: rgba(255,255,255,0.3); }
.hover\:bg-white\/40:hover { background-color: rgba(255,255,255,0.4); }
.hover\:text-tetraktys-verdeoscuro:hover { color: #1b3d2f; }
.hover\:text-white:hover { color: #fff; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0,0,0,0.1); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.hover\:grayscale-0:hover { filter: grayscale(0); }
.focus\:outline-none:focus { outline: none; }
.active\:scale-95:active { transform: scale(0.95); }

/* Group Hover */
.group:hover .group-hover\:scale-x-100 { transform: scaleX(1); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:opacity-0 { opacity: 0; }

/* Aspect Ratio */
.aspect-3\/4 { aspect-ratio: 3 / 4; }

/* Before/After */
.before\:content-\[\'\'\]::before { content: ''; }
.after\:content-\[\'\'\]::after { content: ''; }

/* Responsive - Mobile First */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:block { display: block; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:text-center { text-align: center; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-center { justify-content: center; }
  .md\:text-center { text-align: center; }
  .md\:text-left { text-align: left; }
  .md\:p-6 { padding: 1.5rem; }
  .md\:px-0 { padding-left: 0; padding-right: 0; }
  .md\:w-auto { width: auto; }
  .md\:max-w-lg { max-width: 32rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-xl { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:max-w-xl { max-width: 36rem; }
  .lg\:max-w-lg { max-width: 32rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
}

@media (min-width: 1280px) {
  .xl\:max-w-2xl { max-width: 42rem; }
  .xl\:max-w-xl { max-width: 36rem; }
  .xl\:text-6xl { font-size: 3.75rem; }
}

