/* ============================================
   RESET E BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --color-text: #0f172a;
    --color-surface: #ffffff;
    --brand-600: #0284c7;
    --brand-700: #0369a1;
    --brand-800: #075985;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    line-height: 1.55;
    color: var(--color-text);
    background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 48%, #e2e8f0 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.app-body {
    font-family: var(--font-sans);
    color: var(--color-text);
    min-height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .plan-card:hover,
    .plan-card.selected {
        transform: none !important;
    }
}

/* ============================================
   FONTE INTER (Fallback para system fonts)
   ============================================ */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Inter Regular'), local('Inter-Regular');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Inter Medium'), local('Inter-Medium');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Inter SemiBold'), local('Inter-SemiBold');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Inter Bold'), local('Inter-Bold');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Inter ExtraBold'), local('Inter-ExtraBold');
}

/* ============================================
   UTILITÁRIOS GERAIS
   ============================================ */
[x-cloak] {
    display: none !important;
}

/* ============================================
   UTILITÁRIOS DE LAYOUT
   ============================================ */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-stretch {
    align-items: stretch;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

/* ============================================
   UTILITÁRIOS DE ESPAÇAMENTO
   ============================================ */
.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-1\.5 {
    padding: 0.375rem;
}

.p-8 {
    padding: 2rem;
}

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.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-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pb-72 {
    padding-bottom: 18rem;
}

.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;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.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;
}

.mb-16 {
    margin-bottom: 4rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-8 {
    margin-left: 2rem;
}

.ml-auto {
    margin-left: auto;
}

.mr-4 {
    margin-right: 1rem;
}

/* ============================================
   UTILITÁRIOS DE CORES
   ============================================ */
.bg-white {
    background-color: #FFFFFF;
}

.bg-gray-50 {
    background-color: #F9FAFB;
}

.bg-gray-100 {
    background-color: #F3F4F6;
}

.bg-blue-50 {
    background-color: #EFF6FF;
}

.bg-emerald-50 {
    background-color: #ECFDF5;
}

.bg-gray-200 {
    background-color: #E5E7EB;
}

.bg-gray-600 {
    background-color: #4B5563;
}

.bg-gray-700 {
    background-color: #374151;
}

.bg-gray-800 {
    background-color: #1F2937;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-blue-50 {
    background-color: #f0f9ff;
}

.bg-sky-50 {
    background-color: #f0f9ff;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.bg-blue-600 {
    background-color: var(--brand-700);
}

.bg-green-50 {
    background-color: #F0FDF4;
}

.bg-green-100 {
    background-color: #DCFCE7;
}

.bg-green-600 {
    background-color: #16A34A;
}

.bg-yellow-50 {
    background-color: #FEFCE8;
}

.bg-yellow-600 {
    background-color: #CA8A04;
}

.bg-orange-500 {
    background-color: #F97316;
}

.bg-red-500 {
    background-color: #EF4444;
}

.text-white {
    color: #FFFFFF;
}

.text-gray-500 {
    color: #6B7280;
}

.text-gray-600 {
    color: #4B5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1F2937;
}

.text-gray-900 {
    color: #111827;
}

.text-blue-600 {
    color: var(--brand-600);
}

.text-blue-800 {
    color: var(--brand-800);
}

.text-slate-500 {
    color: #64748b;
}

.text-slate-600 {
    color: #475569;
}

.text-slate-800 {
    color: #1e293b;
}

.text-slate-900 {
    color: #0f172a;
}

.text-green-500 {
    color: #10B981;
}

.text-green-600 {
    color: #16A34A;
}

.text-green-800 {
    color: #166534;
}

.text-green-900 {
    color: #14532D;
}

.text-yellow-800 {
    color: #854D0E;
}

.text-red-500 {
    color: #EF4444;
}

.text-red-600 {
    color: #DC2626;
}

.text-orange-600 {
    color: #EA580C;
}

.text-emerald-500 {
    color: #10B981;
}

.text-gray-400 {
    color: #9CA3AF;
}

.text-gray-500 {
    color: #6B7280;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1F2937;
}

/* ============================================
   UTILITÁRIOS DE TIPOGRAFIA
   ============================================ */
.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.6;
}

.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;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

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

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

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

.whitespace-nowrap {
    white-space: nowrap;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-tight {
    line-height: 1.25;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-widest {
    letter-spacing: 0.12em;
}

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

.uppercase {
    text-transform: uppercase;
}

.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* ============================================
   UTILITÁRIOS DE BORDAS
   ============================================ */
.border {
    border-width: 1px;
    border-style: solid;
    border-color: #E5E7EB;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
    border-color: #E5E7EB;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #E5E7EB;
}

.border-t-2 {
    border-top-width: 2px;
    border-top-style: solid;
    border-top-color: #E5E7EB;
}

.border-dashed {
    border-style: dashed;
}

.border-transparent {
    border-color: transparent;
}

.border-gray-100 {
    border-color: #F3F4F6;
}

.border-gray-200 {
    border-color: #E5E7EB;
}

.border-blue-200 {
    border-color: #bae6fd;
}

.border-blue-400 {
    border-color: #38bdf8;
}

.border-blue-500 {
    border-color: #0ea5e9;
}

.border-slate-200 {
    border-color: #e2e8f0;
}

.border-emerald-200 {
    border-color: #A7F3D0;
}

.border-gray-300 {
    border-color: #D1D5DB;
}

.border-yellow-200 {
    border-color: #FDE047;
}

.border-green-200 {
    border-color: #BBF7D0;
}

.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;
}

/* ============================================
   UTILITÁRIOS DE SOMBRA
   ============================================ */
.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.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);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* ============================================
   UTILITÁRIOS DE POSICIONAMENTO
   ============================================ */
.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.sticky {
    position: sticky;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-6 {
    top: 1.5rem;
}

.top-8 {
    top: 2rem;
}

.right-2 {
    right: 0.5rem;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

/* ============================================
   UTILITÁRIOS DE DISPLAY
   ============================================ */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.hidden {
    display: none;
}

/* ============================================
   UTILITÁRIOS DE OVERFLOW
   ============================================ */
.overflow-y-auto {
    overflow-y: auto;
}

.max-h-40 {
    max-height: 10rem;
}

/* ============================================
   UTILITÁRIOS DE GRID
   ============================================ */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.gap-x-8 {
    column-gap: 2rem;
}

.gap-y-4 {
    row-gap: 1rem;
}

/* ============================================
   UTILITÁRIOS DE INTERAÇÃO
   ============================================ */
.cursor-pointer {
    cursor: pointer;
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.hover\:bg-gray-100:hover {
    background-color: #F3F4F6;
}

.hover\:bg-blue-700:hover {
    background-color: var(--brand-800);
}

.hover\:bg-green-700:hover {
    background-color: #15803D;
}

.hover\:bg-yellow-700:hover {
    background-color: #A16207;
}

.hover\:bg-orange-600:hover {
    background-color: #EA580C;
}

.hover\:bg-gray-700:hover {
    background-color: #374151;
}

.hover\:bg-gray-800:hover {
    background-color: #1F2937;
}

.hover\:underline:hover {
    text-decoration-line: underline;
}

.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);
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:-translate-y-0\.5:hover {
    --tw-translate-y: -0.125rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* ============================================
   COMPONENTES ESPECÍFICOS
   ============================================ */

/* Modal */
.modal {
    background-color: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
}

.backdrop-scrim {
    background-color: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Plan Card — hover sem salto de layout (só sombra) */
.plan-card {
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.plan-card:hover {
    transform: none;
    box-shadow: 0 12px 28px -10px rgba(15, 23, 42, 0.14);
}

.plan-card.selected {
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px -12px rgba(14, 165, 233, 0.22);
    transform: none;
}

/* Card de melhor custo-benefício */
.best-value-card {
    border-width: 2px;
    border-color: #0284c7;
    background-image: linear-gradient(165deg, #e0f2fe 0%, #f0f9ff 40%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Plan Badges (selos dos planos) */
.plan-badge {
    display: inline-block;
    padding: 0.15rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.plan-badge-primary {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.35);
}

.plan-badge-secondary {
    background-color: #F97316;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}

.plan-badges-top {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 2rem;
    margin-bottom: 0.5rem;
}

/* Summary Value */
.summary-value {
    font-weight: 600;
    color: #1F2937;
}

/* Form Input */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    transition: ring 0.2s, border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.35);
}

.form-input.text-center {
    text-align: center;
}

/* Module Row */
.module-row:focus,
.module-row.focused {
    outline: none;
    background-color: #f0f9ff;
    box-shadow: 0 0 0 2px #0284c7;
}

/* Slider */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 0.5rem;
    background: #E5E7EB;
    border-radius: 0.5rem;
    outline: none;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0284c7;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0284c7;
    cursor: pointer;
    border: none;
}

/* Inputs e Checkboxes */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"],
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    border: 1px solid #D1D5DB;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: #0284c7;
    border-color: #0284c7;
}

input[type="radio"] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

/* Focus States */
input:focus,
textarea:focus,
button:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.focus\:ring-blue-500:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.focus\:border-blue-500:focus {
    border-color: #3B82F6;
}

/* ============================================
   ESTILOS PARA EQUIPAMENTOS.HTML
   ============================================ */
.equip-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #F9FAFB;
    color: #1F2937;
    padding: 2rem;
    line-height: 1.6;
}

/* Header */
.cabeça {
    background-color: #FFFFFF;
    border-bottom: 2px solid #E5E7EB;
    padding: 1rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.menu-contain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.menu-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.links-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.itens-menu-nav {
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: background-color 0.2s, color 0.2s;
    font-weight: 500;
}

.itens-menu-nav:hover {
    background-color: #F3F4F6;
    color: #2563EB;
}

/* Equipamentos Content */
#equip-div-imp-termica {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.equip-h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2563EB;
}

.equip-h1:first-child {
    margin-top: 0;
}

.equip-h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.equip-h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #4B5563;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.equip-ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.equip-li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.equip-li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
}

.copiar-equip-impressora {
    display: inline-block;
    margin-left: 1rem;
    padding: 0.25rem 0.75rem;
    background-color: #2563EB;
    color: #FFFFFF;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.copiar-equip-impressora:hover {
    background-color: #1D4ED8;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (min-width: 640px) {
    .sm\:p-6 {
        padding: 1.5rem;
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .sm\:text-5xl {
        font-size: 3rem;
        line-height: 1.05;
    }

    .sm\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .sm\:mb-16 {
        margin-bottom: 4rem;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:items-stretch {
        align-items: stretch;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:w-auto {
        width: auto;
    }

    .md\:text-right {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .lg\:p-8 {
        padding: 2rem;
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .lg\:gap-12 {
        gap: 3rem;
    }

    .lg\:ml-6 {
        margin-left: 1.5rem;
    }

    .lg\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ============================================
   UTILITÁRIOS ADICIONAIS
   ============================================ */
.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-grow {
    flex-grow: 1;
}

.pr-2 {
    padding-right: 0.5rem;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.w-20 {
    width: 5rem;
}

.w-5 {
    width: 1.25rem;
}

.w-4 {
    width: 1rem;
}

.w-6 {
    width: 1.5rem;
}

.w-7 {
    width: 1.75rem;
}

.w-12 {
    width: 3rem;
}

.h-2 {
    height: 0.5rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-7 {
    height: 1.75rem;
}

.h-12 {
    height: 3rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

/* Classes com caracteres especiais usando seletores de atributo */
[class*="left-2.5"] {
    left: 0.625rem;
}

[class*="top-1/2"] {
    top: 50%;
}

[class*="-translate-y-1/2"] {
    transform: translateY(-50%);
}

.hover\:bg-orange-600:hover {
    background-color: #EA580C;
}

/* Background colors adicionais */
.bg-green-50 {
    background-color: #F0FDF4;
}

/* Text colors adicionais */
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

/* Background Opacity */
.bg-opacity-75 {
    background-color: rgba(17, 24, 39, 0.75);
}

/* Code */
code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    background-color: #F3F4F6;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

/* HR */
hr {
    border: 0;
    border-top: 1px solid #E5E7EB;
    margin: 1rem 0;
}

/* SVG Icons */
svg {
    display: inline-block;
    vertical-align: middle;
}

/* Transitions Alpine.js */
[x-transition] {
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Gradients */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-blue-600 {
    --tw-gradient-from: #0284c7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 132, 199, 0));
}

.to-blue-800 {
    --tw-gradient-to: #075985;
}

.to-slate-900 {
    --tw-gradient-to: #0f172a;
}

.from-white {
    --tw-gradient-from: #FFFFFF;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-gray-50 {
    --tw-gradient-to: #F9FAFB;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
}

.text-transparent {
    color: transparent;
}

/* Ring utilities */
.ring-2 {
    box-shadow: 0 0 0 2px var(--tw-ring-color, rgba(59, 130, 246, 0.5));
}

.ring-4 {
    box-shadow: 0 0 0 4px var(--tw-ring-color, rgba(59, 130, 246, 0.5));
}

.ring-blue-100 {
    --tw-ring-color: rgba(219, 234, 254, 0.5);
}

.ring-offset-1 {
    box-shadow: 0 0 0 1px var(--tw-ring-offset-color, #fff), 0 0 0 3px var(--tw-ring-color, rgba(59, 130, 246, 0.5));
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px var(--tw-ring-color, rgba(59, 130, 246, 0.5));
}

.focus\:ring-blue-100:focus {
    --tw-ring-color: rgba(219, 234, 246, 0.5);
}

.focus\:ring-blue-500:focus {
    --tw-ring-color: rgba(59, 130, 246, 0.5);
}

/* Inline utilities */
.inline-flex {
    display: inline-flex;
}

.max-w-2xl {
    max-width: 42rem;
}

/* Hover utilities adicionais */
.hover\:bg-blue-50:hover {
    background-color: #EFF6FF;
}

.hover\:border-blue-200:hover {
    border-color: #BFDBFE;
}

.hover\:text-gray-700:hover {
    color: #374151;
}

.hover\:text-blue-700:hover {
    color: var(--brand-800);
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.group:hover .group-hover\:text-blue-700 {
    color: var(--brand-800);
}

.group:hover .group-hover\:bg-sky-50 {
    background-color: #f0f9ff;
}

.hover\:border-blue-300:hover {
    border-color: #7dd3fc;
}

/* UI: seções e painéis */
.section-eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #0f172a;
}

/** Espaço interno consistente — evita texto colado na borda do card */
.panel-body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 640px) {
    .panel-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/** Botões mercado Food / Varejo — tamanho padrão, conteúdo centralizado */
.market-row-bottom {
    margin-bottom: 15px;
}

.market-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 10px;
    min-width: 9.75rem;
    box-sizing: border-box;
}

/** Famílias Food — rótulos longos (Planos Delivery + Balcão) */
.plan-family-pill {
    min-width: min(100%, 10.5rem);
    max-width: 20rem;
    flex: 1 1 10.5rem;
    padding-left: 12px;
    padding-right: 12px;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.625rem;
    }
}

.card-elevated {
    box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.1);
}

.summary-panel {
    box-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.12);
}

.footer-bar {
    position: relative;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -10px 40px -16px rgba(15, 23, 42, 0.14);
}

.max-h-90vh {
    max-height: 90vh;
}

.focus-visible\:ring-4:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.45);
}

.min-h-12 {
    min-height: 3rem;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

