/* CSS Crítico - Solo lo esencial para evitar FOUC */
:root {
    --background: 0 0% 100%;
    --foreground: 0 0% 3.9%;
    --primary: 0 0% 9%;
    --primary-foreground: 0 0% 98%;
    --radius: 0.5rem;
    --addi-blue: #1C67D8;
    --addi-cyan: #86FEF5;
}
html {
    line-height: 1.5;
    font-family: ui-sans-serif, system-ui, sans-serif;
    -webkit-tap-highlight-color: transparent;
}
body {
    font-family: 'inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    background: #EFF3FB;
    color: #000;
    margin: 0;
    padding: 0;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}
.block { display: block; }
.flex { display: flex; }
.hidden { display: none; }
.grid { display: grid; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.p-0 { padding: 0; }
.p-4 { padding: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.bg-white { background-color: #fff; }
.text-white { color: #fff; }
.text-foreground { color: hsl(var(--foreground)); }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: 0 1px 3px 0 #0001, 0 1px 2px -1px #0001; }
.transition { transition: all 0.15s cubic-bezier(.4,0,.2,1); }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }
/* FOUC helpers */
.js-loading { opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.js-loaded { opacity: 1; visibility: visible; }
/* Indicador de carga */
.loading-indicator { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #EFF3FB; display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.3s; }
.loading-indicator.hidden { opacity: 0; pointer-events: none; }
.spinner { width: 40px; height: 40px; border: 4px solid #f3f3f3; border-top: 4px solid #1c67d8; border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 1rem; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Clases críticas para home.blade.php */
.min-h-screen { min-height: 100vh; }
.overflow-hidden { overflow: hidden; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-0 { z-index: 0; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.object-left { object-position: left; }
.opacity-30 { opacity: 0.3; }
.opacity-100 { opacity: 1; }
.pt-20 { padding-top: 5rem; }
.lg\:pt-24 { padding-top: 6rem; }
.pb-4 { padding-bottom: 1rem; }
.sm\:pb-6 { padding-bottom: 1.5rem; }
.lg\:pb-8 { padding-bottom: 2rem; }
.pt-2 { padding-top: 0.5rem; }
.sm\:pt-4 { padding-top: 1rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
.rounded-xl { border-radius: 0.75rem; }
.sm\:rounded-2xl { border-radius: 1rem; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.transition-transform { transition-property: transform; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.transform { transform: translateZ(0); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.lg\:text-5xl { font-size: 3rem; line-height: 1; }
.xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.text-white { color: #ffffff; }
.text-\[#86FEF5\] { color: #86FEF5; }
.text-\[#1C67D8\] { color: #1C67D8; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.xl\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-semibold { font-weight: 600; }
.leading-relaxed { line-height: 1.625; }
.font-black { font-weight: 900; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.xl\:text-5xl { font-size: 3rem; line-height: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }
.h-auto { height: auto; }
.sm\:h-24 { height: 6rem; }
.md\:h-28 { height: 7rem; }
.lg\:h-36 { height: 9rem; }
.xl\:h-40 { height: 10rem; }
.hidden { display: none; }
.sm\:block { display: block; }
.block { display: block; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.sm\:space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.max-w-full { max-width: 100%; }
.sm\:max-w-xl { max-width: 36rem; }
.md\:max-w-2xl { max-width: 42rem; }
.lg\:max-w-3xl { max-width: 48rem; }
.flex-col { flex-direction: column; }
.sm\:flex-row { flex-direction: row; }
.gap-6 { gap: 1.5rem; }
.sm\:gap-6 { gap: 1.5rem; }
.lg\:gap-8 { gap: 2rem; }
.xl\:gap-12 { gap: 3rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.sm\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.lg\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.justify-start { justify-content: flex-start; }
.items-center { align-items: center; }
.items-md-start { align-items: flex-start; }
.text-left { text-align: left; }
.mb-3 { margin-bottom: 0.75rem; }
.pt-0 { padding-top: 0; }
.pt-md-4 { padding-top: 1rem; }
.text-center { text-align: center; }
.text-md-left { text-align: left; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-md-0 { padding-bottom: 0; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-md-0 { margin-bottom: 0; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.whitespace-nowrap { white-space: nowrap; }
.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 { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
.focus-visible\:ring-ring:focus-visible { --tw-ring-opacity: 1; --tw-ring-color: hsl(var(--ring) / var(--tw-ring-opacity)); }
.focus-visible\:ring-offset-2:focus-visible { --tw-ring-offset-width: 2px; }
.disabled\:pointer-events-none:disabled { pointer-events: none; }
.disabled\:opacity-50:disabled { opacity: 0.5; }
.\[&_svg\]\:pointer-events-none svg { pointer-events: none; }
.\[&_svg\]\:size-4 svg { width: 1rem; height: 1rem; }
.\[&_svg\]\:shrink-0 svg { flex-shrink: 0; }
.h-10 { height: 2.5rem; }
.bg-\[#86FEF5\] { background-color: #86FEF5; }
.hover\:bg-\[#86FEF5\]\/90:hover { background-color: rgba(134, 254, 245, 0.9); }
.text-\[#1C67D8\] { color: #1C67D8; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
.lg\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
.lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.font-bold { font-weight: 700; }
.rounded-xl { border-radius: 0.75rem; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.transform { transform: translateZ(0); }
.hover\:scale-105:hover { transform: scale(1.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-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.ml-2 { margin-left: 0.5rem; }
.absolute { position: absolute; }
.bottom-4 { bottom: 1rem; }
.sm\:bottom-6 { bottom: 1.5rem; }
.right-4 { right: 1rem; }
.sm\:right-6 { right: 1.5rem; }
.cursor-pointer { cursor: pointer; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-end { align-items: flex-end; }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.rounded-full { border-radius: 9999px; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.sm\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.border { border-width: 1px; }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.mb-2 { margin-bottom: 0.5rem; }
.sm\:mb-3 { margin-bottom: 0.75rem; }
.hover\:bg-white\/30:hover { background-color: rgba(255, 255, 255, 0.3); }
.duration-200 { transition-duration: 200ms; }
.gap-1 { gap: 0.25rem; }
.sm\:gap-2 { gap: 0.5rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.font-medium { font-weight: 500; }
.hidden { display: none; }
.sm\:inline { display: inline; }
.sm\:hidden { display: none; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.sm\:w-4 { width: 1rem; }
.sm\:h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.sm\:w-6 { width: 1.5rem; }
.sm\:h-6 { height: 1.5rem; }
.animate-bounce { animation: bounce 1s infinite; }
@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
    50% { transform: none; animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}
.bg-white { background-color: #ffffff; }
.text-gray-700 { color: #374151; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gap-6 { gap: 1.5rem; }
.max-w-6xl { max-width: 72rem; }
.group { }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.overflow-hidden { overflow: hidden; }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.rounded-3xl { border-radius: 1.5rem; }
.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-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-500 { transition-duration: 500ms; }
.transform { transform: translateZ(0); }
.hover\:scale-105:hover { transform: scale(1.05); }
.h-48 { height: 12rem; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.transition-transform { transition-property: transform; }
.duration-500 { transition-duration: 500ms; }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-black\/60 { --tw-gradient-from: rgba(0, 0, 0, 0.6); --tw-gradient-to: rgba(0, 0, 0, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-black\/20 { --tw-gradient-via: rgba(0, 0, 0, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }
.top-3 { top: 0.75rem; }
.left-3 { left: 0.75rem; }
.bg-\[#86FEF5\] { background-color: #86FEF5; }
.text-\[#1C67D8\] { color: #1C67D8; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.rounded-full { border-radius: 9999px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-bold { font-weight: 700; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: 0.25rem; }
.p-6 { padding: 1.5rem; } 