/* ============================================================
   CNE Homepage — Tailwind utilities (subset compilado localmente)
   Substitui o cdn.tailwindcss.com (que é lento e instável em produção)
   ============================================================ */

/* === SVG PROTECTION (sem prefixo #cne-lp — vale em qualquer lugar) === */
.cne-lp-header-wrap svg, .cne-lp-footer-wrap svg,
[id="cne-lp"] svg, #cne-lp svg {
  max-width: 100% !important;
  max-height: 64px !important;
  vertical-align: middle;
}
.cne-lp-header-wrap .icon-btn svg, .cne-lp-footer-wrap .icon-btn svg,
[id="cne-lp"] .icon-btn svg, .icon-btn svg { max-height: 24px !important; max-width: 24px !important; }
.cne-safe-shield { max-width: 22px !important; max-height: 22px !important; width: 22px !important; height: 22px !important; }
.cne-trust-badges svg { max-width: 22px !important; max-height: 22px !important; }
.whatsapp-float svg { max-width: 32px !important; max-height: 32px !important; }
.ai-icon svg { max-width: 28px !important; max-height: 28px !important; }
.video-thumb-wrapper svg { max-width: 32px !important; max-height: 32px !important; }
header img { max-height: 64px !important; width: auto !important; }


/* === RESET BÁSICO === */
*, ::before, ::after { box-sizing: border-box; }

/* === DISPLAY === */
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }

/* === FLEX === */
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0, .shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

/* === GRID === */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.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)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }

/* === GAP === */
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-y-2 { row-gap: 0.5rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

/* === POSITIONING === */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.top-8 { top: 2rem; }
.top-12 { top: 3rem; }
.right-0 { right: 0; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.left-1\/2 { left: 50%; }
.-top-2 { top: -0.5rem; }
.-top-3 { top: -0.75rem; }
.-top-4 { top: -1rem; }
.-top-16 { top: -4rem; }
.-top-20 { top: -5rem; }
.-top-24 { top: -6rem; }
.-bottom-1 { bottom: -0.25rem; }
.-bottom-2 { bottom: -0.5rem; }
.-bottom-3 { bottom: -0.75rem; }
.-bottom-4 { bottom: -1rem; }
.-bottom-16 { bottom: -4rem; }
.-bottom-24 { bottom: -6rem; }
.-bottom-32 { bottom: -8rem; }
.-right-1 { right: -0.25rem; }
.-right-3 { right: -0.75rem; }
.-right-16 { right: -4rem; }
.-right-20 { right: -5rem; }
.-right-24 { right: -6rem; }
.-right-32 { right: -8rem; }
.-left-16 { left: -4rem; }
.-left-20 { left: -5rem; }
.-left-24 { left: -6rem; }
.-left-32 { left: -8rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-0 { transform: translateY(0); }
.-translate-y-0\.5 { transform: translateY(-2px); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-y-4 { transform: translateY(-1rem); }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-60 { z-index: 60; }
.z-100 { z-index: 100; }

/* === SIZES (WIDTH/HEIGHT) === */
.w-0 { width: 0; } .w-1 { width: 0.25rem; } .w-1\.5 { width: 0.375rem; } .w-2 { width: 0.5rem; }
.w-2\.5 { width: 0.625rem; } .w-3 { width: 0.75rem; } .w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; } .w-5 { width: 1.25rem; } .w-6 { width: 1.5rem; } .w-7 { width: 1.75rem; }
.w-8 { width: 2rem; } .w-9 { width: 2.25rem; } .w-10 { width: 2.5rem; } .w-12 { width: 3rem; }
.w-14 { width: 3.5rem; } .w-16 { width: 4rem; } .w-20 { width: 5rem; } .w-24 { width: 6rem; }
.w-28 { width: 7rem; } .w-32 { width: 8rem; } .w-40 { width: 10rem; } .w-44 { width: 11rem; }
.w-48 { width: 12rem; } .w-56 { width: 14rem; } .w-64 { width: 16rem; } .w-72 { width: 18rem; }
.w-80 { width: 20rem; } .w-96 { width: 24rem; }
.w-full { width: 100%; } .w-auto { width: auto; } .w-screen { width: 100vw; }
.w-px { width: 1px; }
.w-1\/2 { width: 50%; } .w-1\/3 { width: 33.333333%; } .w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; } .w-3\/4 { width: 75%; }

.h-0 { height: 0; } .h-1 { height: 0.25rem; } .h-1\.5 { height: 0.375rem; } .h-2 { height: 0.5rem; }
.h-2\.5 { height: 0.625rem; } .h-3 { height: 0.75rem; } .h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; } .h-5 { height: 1.25rem; } .h-6 { height: 1.5rem; } .h-7 { height: 1.75rem; }
.h-8 { height: 2rem; } .h-9 { height: 2.25rem; } .h-10 { height: 2.5rem; } .h-12 { height: 3rem; }
.h-14 { height: 3.5rem; } .h-16 { height: 4rem; } .h-20 { height: 5rem; } .h-24 { height: 6rem; }
.h-28 { height: 7rem; } .h-32 { height: 8rem; } .h-40 { height: 10rem; } .h-44 { height: 11rem; }
.h-48 { height: 12rem; } .h-56 { height: 14rem; } .h-64 { height: 16rem; } .h-72 { height: 18rem; }
.h-80 { height: 20rem; } .h-96 { height: 24rem; }
.h-full { height: 100%; } .h-auto { height: auto; } .h-screen { height: 100vh; }
.h-px { height: 1px; }
.min-h-\[180px\] { min-height: 180px; }

/* === MAX/MIN 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%; } .max-w-none { max-width: none; }
.min-w-0 { min-width: 0; }

/* === ASPECT RATIO === */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }

/* === MARGIN === */
.m-0 { margin: 0; } .m-1 { margin: 0.25rem; } .m-2 { margin: 0.5rem; }
.-m-1 { margin: -0.25rem; } .-m-1\.5 { margin: -0.375rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.mt-0 { margin-top: 0; } .mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; } .mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; } .mt-2\.5 { margin-top: 0.625rem; }
.mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; } .mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; } .mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.-mt-12 { margin-top: -3rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; } .mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-1 { margin-left: 0.25rem; } .ml-2 { margin-left: 0.5rem; } .ml-auto { margin-left: auto; }
.mr-2 { margin-right: 0.5rem; } .mr-3 { margin-right: 0.75rem; } .mr-auto { margin-right: auto; }

/* === PADDING === */
.p-0 { padding: 0; } .p-1 { padding: 0.25rem; } .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-7 { padding: 1.75rem; } .p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.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; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.pt-0 { padding-top: 0; } .pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; } .pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; } .pt-5 { padding-top: 1.25rem; }
.pt-8 { padding-top: 2rem; } .pt-10 { padding-top: 2.5rem; }
.pt-24 { padding-top: 6rem; }
.pb-1 { padding-bottom: 0.25rem; } .pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; } .pb-6 { padding-bottom: 1.5rem; }
.pb-18 { padding-bottom: 4.5rem; }
.pl-3 { padding-left: 0.75rem; } .pl-4 { padding-left: 1rem; } .pl-5 { padding-left: 1.25rem; }
.pr-3 { padding-right: 0.75rem; }

/* === TYPOGRAPHY === */
.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; }
.text-\[8px\] { font-size: 8px; }
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[100px\] { font-size: 100px; }
.text-\[160px\] { font-size: 160px; }
.text-\[180px\] { font-size: 180px; }
.text-\[220px\] { font-size: 220px; }
.text-\[240px\] { font-size: 240px; }
.text-\[260px\] { font-size: 260px; }

.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; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-\[1\.1\] { line-height: 1.1; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.whitespace-nowrap { white-space: nowrap; }
.break-all { word-break: break-all; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* === COLORS — TEXT === */
.text-white { color: #ffffff; }
.text-white\/95 { color: rgba(255,255,255,0.95); }
.text-white\/90 { color: rgba(255,255,255,0.9); }
.text-white\/85 { color: rgba(255,255,255,0.85); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-black { color: #000000; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }
.text-brand-blue { color: #1C3F6E; }
.text-brand-blue-2 { color: #2F5E9A; }
.text-brand-red { color: #E10600; }
.text-amber-300 { color: #fcd34d; }
.text-amber-400 { color: #fbbf24; }
.text-amber-500 { color: #f59e0b; }
.text-amber-600 { color: #d97706; }
.text-amber-700 { color: #b45309; }
.text-amber-800 { color: #92400e; }
.text-amber-900 { color: #78350f; }
.text-emerald-300 { color: #6ee7b7; }
.text-emerald-500 { color: #10b981; }
.text-emerald-600 { color: #059669; }
.text-emerald-700 { color: #047857; }
.text-purple-700 { color: #7e22ce; }
.text-rose-300 { color: #fda4af; }
.text-yellow-500 { color: #eab308; }

/* === COLORS — BACKGROUND === */
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #ffffff; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/8 { background-color: rgba(255,255,255,0.08); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/12 { background-color: rgba(255,255,255,0.12); }
.bg-white\/15 { background-color: rgba(255,255,255,0.15); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.bg-black { background-color: #000000; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-200 { background-color: #e2e8f0; }
.bg-slate-700 { background-color: #334155; }
.bg-slate-900 { background-color: #0f172a; }
.bg-brand-blue { background-color: #1C3F6E; }
.bg-brand-blue-2 { background-color: #2F5E9A; }
.bg-brand-blue-light { background-color: #E6EEF8; }
.bg-brand-red { background-color: #E10600; }
.bg-brand-red-hover { background-color: #B70500; }
.bg-whatsapp { background-color: #25D366; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-amber-200\/30 { background-color: rgba(253,230,138,0.3); }
.bg-amber-300 { background-color: #fcd34d; }
.bg-amber-400 { background-color: #fbbf24; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-amber-500\/15 { background-color: rgba(245,158,11,0.15); }
.bg-emerald-500 { background-color: #10b981; }
.bg-emerald-500\/15 { background-color: rgba(16,185,129,0.15); }
.bg-emerald-600 { background-color: #059669; }
.bg-rose-200\/25 { background-color: rgba(254,205,211,0.25); }
.bg-purple-700 { background-color: #7e22ce; }

/* === GRADIENTS === */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, 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)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-bl { background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); }

/* gradient stops — variáveis CSS para from/to/via */
.from-white { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,255,255,0)); }
.from-slate-50 { --tw-gradient-from: #f8fafc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248,250,252,0)); }
.from-slate-700 { --tw-gradient-from: #334155; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51,65,85,0)); }
.from-slate-900 { --tw-gradient-from: #0f172a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15,23,42,0)); }
.from-brand-blue { --tw-gradient-from: #1C3F6E; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28,63,110,0)); }
.from-brand-blue-light { --tw-gradient-from: #E6EEF8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230,238,248,0)); }
.from-brand-red { --tw-gradient-from: #E10600; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(225,6,0,0)); }
.from-rose-700 { --tw-gradient-from: #be123c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190,18,60,0)); }
.from-amber-50 { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,251,235,0)); }
.from-amber-50\/30 { --tw-gradient-from: rgba(255,251,235,0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,251,235,0)); }
.from-amber-50\/60 { --tw-gradient-from: rgba(255,251,235,0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,251,235,0)); }
.from-amber-300 { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252,211,77,0)); }
.from-amber-500 { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245,158,11,0)); }
.from-amber-600 { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217,119,6,0)); }
.from-emerald-600 { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5,150,105,0)); }
.from-emerald-700 { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4,120,87,0)); }
.from-purple-700 { --tw-gradient-from: #7e22ce; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126,34,206,0)); }
.from-rose-50 { --tw-gradient-from: #fff1f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,241,242,0)); }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0,0,0,0)); }

.via-brand-blue-2 { --tw-gradient-stops: var(--tw-gradient-from), #2F5E9A, var(--tw-gradient-to, rgba(47,94,154,0)); }
.via-brand-red { --tw-gradient-stops: var(--tw-gradient-from), #E10600, var(--tw-gradient-to, rgba(225,6,0,0)); }
.via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255,255,255,0)); }
.via-slate-50 { --tw-gradient-stops: var(--tw-gradient-from), #f8fafc, var(--tw-gradient-to, rgba(248,250,252,0)); }
.via-slate-900 { --tw-gradient-stops: var(--tw-gradient-from), #0f172a, var(--tw-gradient-to, rgba(15,23,42,0)); }
.via-amber-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252,211,77,0)); }
.via-amber-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251,191,36,0)); }
.via-amber-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245,158,11,0)); }
.via-rose-50 { --tw-gradient-stops: var(--tw-gradient-from), #fff1f2, var(--tw-gradient-to, rgba(255,241,242,0)); }
.via-rose-500 { --tw-gradient-stops: var(--tw-gradient-from), #f43f5e, var(--tw-gradient-to, rgba(244,63,94,0)); }
.via-emerald-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4,120,87,0)); }
.via-violet-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109,40,217,0)); }

.to-white { --tw-gradient-to: #ffffff; }
.to-slate-50 { --tw-gradient-to: #f8fafc; }
.to-slate-900 { --tw-gradient-to: #0f172a; }
.to-brand-blue { --tw-gradient-to: #1C3F6E; }
.to-brand-blue-2 { --tw-gradient-to: #2F5E9A; }
.to-brand-blue-light { --tw-gradient-to: #E6EEF8; }
.to-brand-red { --tw-gradient-to: #E10600; }
.to-amber-50\/20 { --tw-gradient-to: rgba(255,251,235,0.2); }
.to-amber-50\/30 { --tw-gradient-to: rgba(255,251,235,0.3); }
.to-amber-400 { --tw-gradient-to: #fbbf24; }
.to-amber-500 { --tw-gradient-to: #f59e0b; }
.to-amber-600 { --tw-gradient-to: #d97706; }
.to-amber-700 { --tw-gradient-to: #b45309; }
.to-blue-50 { --tw-gradient-to: #eff6ff; }
.to-blue-700 { --tw-gradient-to: #1d4ed8; }
.to-emerald-800 { --tw-gradient-to: #065f46; }
.to-emerald-900 { --tw-gradient-to: #064e3b; }
.to-indigo-800 { --tw-gradient-to: #3730a3; }
.to-orange-50 { --tw-gradient-to: #fff7ed; }
.to-orange-700 { --tw-gradient-to: #c2410c; }
.to-orange-800 { --tw-gradient-to: #9a3412; }
.to-purple-900 { --tw-gradient-to: #581c87; }
.to-red-700 { --tw-gradient-to: #b91c1c; }
.to-red-800 { --tw-gradient-to: #991b1b; }
.to-red-900 { --tw-gradient-to: #7f1d1d; }
.to-rose-50\/40 { --tw-gradient-to: rgba(255,241,242,0.4); }
.to-rose-50\/30 { --tw-gradient-to: rgba(255,241,242,0.3); }
.to-rose-600 { --tw-gradient-to: #e11d48; }
.to-slate-700 { --tw-gradient-to: #334155; }
.to-teal-700 { --tw-gradient-to: #0f766e; }
.to-transparent { --tw-gradient-to: transparent; }

/* === BORDERS === */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-t-4 { border-top-width: 4px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-y-4 { border-top-width: 4px; border-bottom-width: 4px; border-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-white { border-color: #ffffff; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/15 { border-color: rgba(255,255,255,0.15); }
.border-white\/18 { border-color: rgba(255,255,255,0.18); }
.border-white\/25 { border-color: rgba(255,255,255,0.25); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-amber-200 { border-color: #fde68a; }
.border-amber-300 { border-color: #fcd34d; }
.border-amber-400\/30 { border-color: rgba(251,191,36,0.3); }
.border-emerald-400\/30 { border-color: rgba(74,222,128,0.3); }
.border-brand-blue { border-color: #1C3F6E; }
.border-brand-red { border-color: #E10600; }

/* === BORDER RADIUS === */
.rounded { border-radius: 0.25rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.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-t-2xl { border-top-left-radius: 1rem; border-top-right-radius: 1rem; }
.rounded-b-2xl { border-bottom-left-radius: 1rem; border-bottom-right-radius: 1rem; }

/* === SHADOWS === */
.shadow-none { box-shadow: 0 0 #0000; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-lg.shadow-amber-500\/30 { box-shadow: 0 10px 15px -3px rgba(245,158,11,0.3); }
.shadow-lg.shadow-emerald-500\/10 { box-shadow: 0 10px 15px -3px rgba(16,185,129,0.1); }

.ring { box-shadow: 0 0 0 3px rgba(59,130,246,0.5); }
.ring-2 { box-shadow: 0 0 0 2px currentColor; }
.ring-4 { box-shadow: 0 0 0 4px currentColor; }
.ring-white { --tw-ring-color: #fff; box-shadow: 0 0 0 4px #fff; }
.ring-white\/30 { box-shadow: 0 0 0 4px rgba(255,255,255,0.3); }
.ring-amber-100 { box-shadow: 0 0 0 4px #fef3c7; }
.ring-brand-blue-light { box-shadow: 0 0 0 4px #E6EEF8; }

/* === OPACITY === */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-15 { opacity: 0.15; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* === OVERFLOW === */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-auto { overflow-x: auto; }

/* === OBJECT FIT === */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* === CURSOR === */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* === BACKDROP === */
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.blur { filter: blur(8px); }
.blur-sm { filter: blur(4px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }

/* === ANIMATIONS === */
.transition-all { transition-property: all; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }

.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* === ROTATE === */
.rotate-3 { transform: rotate(3deg); }
.rotate-90 { transform: rotate(90deg); }

/* === GROUP HOVER === */
.group:hover .group-hover\:from-black\/40 { --tw-gradient-from: rgba(0,0,0,0.4); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }

/* === HOVER === */
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }
.hover\:bg-slate-300:hover { background-color: #cbd5e1; }
.hover\:bg-brand-blue-2:hover { background-color: #2F5E9A; }
.hover\:bg-brand-blue-light:hover { background-color: #E6EEF8; }
.hover\:bg-brand-red:hover { background-color: #E10600; }
.hover\:bg-brand-red-hover:hover { background-color: #B70500; }
.hover\:bg-amber-50:hover { background-color: #fffbeb; }
.hover\:bg-emerald-600:hover { background-color: #059669; }
.hover\:bg-white\/12:hover { background-color: rgba(255,255,255,0.12); }
.hover\:text-white:hover { color: #fff; }
.hover\:text-brand-red:hover { color: #E10600; }
.hover\:text-brand-blue:hover { color: #1C3F6E; }
.hover\:border-white:hover { border-color: #fff; }
.hover\:border-white\/30:hover { border-color: rgba(255,255,255,0.3); }
.hover\:border-amber-300:hover { border-color: #fcd34d; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-2px); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:rotate-90:hover { transform: rotate(90deg); }

/* === BACKGROUND CLIP TEXT === */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }

/* === ACCESSIBILITY === */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* === GRID TEMPLATE PERSONALIZADO === */
.grid-cols-\[1fr_auto_1fr\] { grid-template-columns: 1fr auto 1fr; }
.grid-cols-\[auto_1fr\] { grid-template-columns: auto 1fr; }
.grid-cols-\[auto_1fr\] { grid-template-columns: auto 1fr; }
@media (min-width: 768px) {
  .md\:grid-cols-\[auto_1fr\] { grid-template-columns: auto 1fr; }
}

/* === RESPONSIVE === md = 768px === */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:w-auto { width: auto; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-start { align-items: flex-start; }
  .md\:items-center { align-items: center; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .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\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:text-sm { font-size: 0.875rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .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-\[9px\] { font-size: 9px; }
  .md\:text-\[220px\] { font-size: 220px; }
  .md\:text-\[240px\] { font-size: 240px; }
  .md\:text-\[260px\] { font-size: 260px; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:py-36 { padding-top: 9rem; padding-bottom: 9rem; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-5 { gap: 1.25rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-7 { gap: 1.75rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:p-7 { padding: 1.75rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
  .md\:pt-28 { padding-top: 7rem; }
  .md\:mt-3 { margin-top: 0.75rem; }
  .md\:w-7 { width: 1.75rem; }
  .md\:w-14 { width: 3.5rem; }
  .md\:w-20 { width: 5rem; }
  .md\:w-32 { width: 8rem; }
  .md\:w-44 { width: 11rem; }
  .md\:h-7 { height: 1.75rem; }
  .md\:h-14 { height: 3.5rem; }
  .md\:h-20 { height: 5rem; }
  .md\:h-32 { height: 8rem; }
  .md\:h-44 { height: 11rem; }
  .md\:max-w-\[200px\] { max-width: 200px; }
  .md\:max-w-\[210px\] { max-width: 210px; }
  .md\:max-w-none { max-width: none; }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:flex-none { flex: 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\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:text-4xl { font-size: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-7xl { font-size: 4.5rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-14 { gap: 3.5rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:py-44 { padding-top: 11rem; padding-bottom: 11rem; }
  .lg\:justify-center { justify-content: center; }
}
