/* ==========================================================================
   CONFIGURAÇÕES GLOBAIS E VARIÁVEIS DE CORES
   ========================================================================== */
:root {
    --poliBlue: #1a3b6e;
    --poliRed: #E53935;
    --poliDark: #0f254a;
    --whatsapp: #25D366;
    --whatsapp-hover: #16a34a;
    --textGray: #2A2A2A;
}

/* Reset mestre Tailwind */
*, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; border-width: 0; border-style: solid; border-color: #e5e7eb; }

html { scroll-behavior: smooth; font-family: 'Inter', sans-serif; line-height: 1.5; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; color: #1f2937; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: inherit; color: inherit; }
/* button { cursor: pointer; background: transparent; border: none; font-family: inherit; } */
button { cursor: pointer; background: transparent; border: none; font-family: inherit; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

@media (max-width: 1024px) {
    body { padding-bottom: 90px; }
}

/* ==========================================================================
   ESTILOS PERSONALIZADOS
   ========================================================================== */
.hero-bg {
    /* background-image: linear-gradient(rgba(15, 37, 74, 0.85), rgba(15, 37, 74, 0.85)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); */
    background-image: linear-gradient(rgba(15, 37, 74, 0.85), rgba(15, 37, 74, 0.85)), url('../img/bg-hero.avif');
    background-size: cover;
    background-position: center;
}
.scrolled-nav { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); transition: all 0.3s ease-in-out; }
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }


/* ==========================================================================
   MUDANÇAS DE ESTADO, ANIMAÇÕES E FILTROS (REPLICA DO TAILWIND)
   ========================================================================== */
.transform {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-1\/2 { --tw-translate-x: -50%; }
.-translate-y-1\/2 { --tw-translate-y: -50%; }
.translate-y-0 { --tw-translate-y: 0px; }
.rotate-2 { --tw-rotate: 2deg; }

.hover\:rotate-0:hover { --tw-rotate: 0deg; }
.hover\:scale-105:hover { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.group:hover .group-hover\:scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.active\:scale-95:active { --tw-scale-x: 0.95; --tw-scale-y: 0.95; }
details[open] .group-open\:rotate-180 { --tw-rotate: 180deg; transform: rotate(180deg); }

.drop-shadow-md { filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06)); }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1)); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15)); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

@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); }
}
.animate-bounce { animation: bounce 1s infinite; }

/* Transições */
.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; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }


/* ==========================================================================
   CLASSES UTILITÁRIAS DE LAYOUT, TIPOGRAFIA E CORES
   ========================================================================== */
.font-sans { font-family: 'Inter', sans-serif; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.top-full { top: 100%; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.bottom-4 { bottom: 1rem; }
.top-1\/2 { top: 50%; }
.top-\[38\%\] { top: 38%; }
.left-\[50\%\] { left: 50%; }
.-top-6 { top: -1.5rem; }
.left-6 { left: 1.5rem; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }

.container { width: 100%; margin-right: auto; margin-left: auto; }
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1536px; } }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.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-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.-mt-1 { margin-top: -0.25rem; }
.-mt-16 { margin-top: -4rem; }
.ml-0\.5 { margin-left: 0.125rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

.p-2 { padding: 0.5rem; }
.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-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.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-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-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-28 { padding-top: 7rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-4 { padding-left: 1rem; }

.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none !important; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.flex-grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }
.gap-1 { gap: 0.25rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-3 { row-gap: 0.75rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.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; }
.space-y-6 > * + * { margin-top: 1.5rem; }
/*.space-y-12 > * + * { margin-top: 3rem; } */
.space-y-12 > * + * { margin-top: 3rem !important; }

.w-full { width: 100%; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-32 { width: 8rem; }
.w-11\/12 { width: 91.666667%; }
.w-\[70px\] { width: 70px; }
.w-\[220px\] { width: 220px; }
.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[320px\] { max-width: 320px; }

.h-full { height: 100%; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-\[450px\] { height: 450px; }
.min-h-screen { min-height: 100vh; }
.min-h-\[58px\] { min-height: 58px; }

.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-top { object-position: top; }
.object-\[50\%_25\%\] { object-position: 50% 25%; }

/* 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.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-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[16px\] { font-size: 16px; }
.text-\[17px\] { font-size: 17px; }
.text-\[18px\] { font-size: 18px; }
.text-\[20px\] { font-size: 20px; }
.text-\[22px\] { font-size: 22px; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.2\] { line-height: 1.2; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.italic { font-style: italic; }
.underline { text-decoration: underline; }
.whitespace-nowrap { white-space: nowrap; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* CORES E BORDAS */
.text-white { color: #fff; }
.text-gray-100 { color: #f3f4f6; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.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-gray-900 { color: #111827; }
.text-yellow-400 { color: #facc15; }
.text-yellow-500 { color: #eab308; }
.text-green-400 { color: #4ade80; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-amber-600 { color: #d97706; }
.text-amber-800 { color: #92400e; }
.text-poliBlue { color: var(--poliBlue); }
.text-poliRed { color: var(--poliRed); }
.text-textGray { color: var(--textGray); }
.text-whatsapp { color: var(--whatsapp); }

.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-900 { background-color: #111827; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-900 { background-color: #1e3a8a; }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-600 { background-color: #dc2626; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-600 { background-color: #16a34a; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-yellow-500 { background-color: #eab308; }
.bg-purple-600 { background-color: #9333ea; }
.bg-whatsapp { background-color: var(--whatsapp); }
.bg-poliBlue { background-color: var(--poliBlue); }
.bg-poliDark { background-color: var(--poliDark); }
.bg-\[\#0d1b2a\] { background-color: #0d1b2a; }
.bg-\[\#152744\] { background-color: #152744; }
.bg-\[\#9b0000\] { background-color: #9b0000; }
.bg-\[\#0b162c\] { background-color: #0b162c; }

.bg-center { background-position: center; }
.bg-cover { background-size: cover; }

.bg-opacity-60 { --tw-bg-opacity: 0.6; background-color: rgb(0 0 0 / var(--tw-bg-opacity)); }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.border { border-width: 1px; }
.border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-t-4 { border-top-width: 4px; }
.border-\[6px\] { border-width: 6px; }
.border-\[8px\] { border-width: 8px; }
.border-solid { border-style: solid; }

/* Set default borders to solid */
.border, .border-4, .border-t, .border-b, .border-l, .border-t-4, .border-\[6px\], .border-\[8px\] { border-style: solid; }

.border-white { border-color: #fff; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-600 { border-color: #4b5563; }
.border-gray-700 { border-color: #374151; }
.border-gray-800 { border-color: #1f2937; }
.border-gray-900 { border-color: #111827; }
.border-blue-600 { border-color: #2563eb; }
.border-red-500 { border-color: #ef4444; }
.border-green-600 { border-color: #16a34a; }
.border-amber-400 { border-color: #fbbf24; }
.border-\[\#1a2e4c\] { border-color: #1a2e4c; }
.border-\[\#233f6b\] { border-color: #233f6b; }
.border-\[\#3b0918\] { border-color: #3b0918; }

.rounded { border-radius: 0.25rem; }
.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-\[2rem\] { border-radius: 2rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-t-\[2rem\] { border-top-left-radius: 2rem; border-top-right-radius: 2rem; }
.rounded-tr-none { border-top-right-radius: 0; }

.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); }
.shadow-\[0_8px_30px_rgb\(0\,0\,0\,0\.3\)\] { box-shadow: 0 8px 30px rgb(0 0 0 / 0.3); }
.shadow-\[0_0_20px_rgba\(37\,211\,102\,0\.3\)\] { box-shadow: 0 0 20px rgba(37,211,102,0.3); }

/* GRADIENTES */
.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-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-\[\#0a1520\] { --tw-gradient-from: #0a1520; --tw-gradient-to: rgba(10,21,32,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-\[\#122338\] { --tw-gradient-to: #122338; }
.from-\[\#2a0811\] { --tw-gradient-from: #2a0811; --tw-gradient-to: rgba(42,8,17,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-\[\#0d1b2a\] { --tw-gradient-to: #0d1b2a; }
.from-\[\#0d1b2a\] { --tw-gradient-from: #0d1b2a; --tw-gradient-to: rgba(13,27,42,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to); }

/* HOVERS */
.hover\:text-poliBlue:hover { color: var(--poliBlue); }
.hover\:text-poliRed:hover { color: var(--poliRed); }
.hover\:text-white:hover { color: #fff; }
.hover\:text-red-500:hover { color: #ef4444; }
.hover\:text-gray-300:hover { color: #d1d5db; }
.hover\:text-gray-400:hover { color: #9ca3af; }
.hover\:bg-green-600:hover { background-color: var(--whatsapp-hover); }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:bg-blue-800:hover { background-color: #1e40af; }
.hover\:bg-poliBlue:hover { background-color: var(--poliBlue); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.group:hover .group-hover\:bg-green-600 { background-color: var(--whatsapp-hover); }


/* ==========================================================================
   BREAKPOINTS (RESPONSIVO MANTENDO AS CLASSES DO TAILWIND)
   ========================================================================== */

/* sm */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:w-auto { width: auto; }
    .sm\:px-12 { padding-left: 3rem; padding-right: 3rem; }
}

/* md */
@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:items-end { align-items: flex-end; }
    .md\:items-start { align-items: flex-start; }
    .md\:justify-start { justify-content: flex-start; }
    .md\:text-left { text-align: left; }
    
    .md\:border-l-2 { border-left-width: 2px; border-style: solid; }
    .md\:border-l { border-left-width: 1px; }
    .md\:border-t-0 { border-top-width: 0px; }
    .md\:border-\[12px\] { border-width: 12px; }
    .md\:border-gray-300 { border-color: #d1d5db; }
    
    .md\:pl-4 { padding-left: 1rem; }
    .md\:pl-10 { padding-left: 2.5rem; }
    .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    .md\:p-5 { padding: 1.25rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
    .md\:pt-8 { padding-top: 2rem; }
    
    .md\:mt-0 { margin-top: 0px; }
    .md\:ml-8 { margin-left: 2rem; }
    
    .md\:-left-10 { left: -2.5rem; }
    .md\:top-1\/2 { top: 50%; }
    /* .md\:-translate-y-1\/2 { --tw-translate-y: -50%; } */
    .md\:-translate-y-1\/2 { transform: translateY(-50%); }
    
    .md\:w-1\/3 { width: 33.333333%; }
    .md\:w-20 { width: 5rem; }
    .md\:w-\[280px\] { width: 280px; }
    .md\:h-20 { height: 5rem; }
    .md\:h-auto { height: auto; }
    .md\:h-\[550px\] { height: 550px; }
    
    .md\:rounded-l-\[2rem\] { border-top-left-radius: 2rem; border-bottom-left-radius: 2rem; }
    .md\:rounded-tr-none { border-top-right-radius: 0px; }
    
    .md\:bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
    
    .md\:text-xs { font-size: 0.75rem; line-height: 1rem; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .md\:text-\[22px\] { font-size: 22px; }
    
    .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\:inline { display: inline; }
}

/* lg */
@media (min-width: 1024px) {
    .lg\:flex { display: flex !important; }
    .lg\:hidden { display: none !important; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:justify-end { justify-content: flex-end; }
    .lg\:block { display: block !important; }
    
    .lg\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .lg\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .lg\:p-12 { padding: 3rem; }
    .lg\:pt-32 { padding-top: 8rem; }
    
    .lg\:w-1\/2 { width: 50%; }
    .lg\:h-12 { height: 3rem; }
    
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}