/* ==========================================================================
   EL MUNDO DEL CONECTOR - MASTER STYLESHEET
   100% Offline & File:// Compatible, Modern Design System
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    --brand-blue: #1B638F;
    --brand-blue-dark: #0E354D;
    --brand-blue-darker: #092232;
    --brand-blue-light: #E8F4FA;
    --brand-blue-glow: rgba(27, 99, 143, 0.35);
    
    --brand-orange: #F05A28;
    --brand-orange-hover: #D84817;
    --brand-orange-light: #FFF0EB;
    --brand-orange-glow: rgba(240, 90, 40, 0.4);

    --brand-red: #D62828;
    
    --brand-black: #0B1118;
    --brand-gray-900: #161F2B;
    --brand-gray-800: #243040;
    --brand-gray-700: #384659;
    --brand-gray-600: #506175;
    --brand-gray-500: #6B7C91;
    --brand-gray-400: #96A5B8;
    --brand-gray-300: #CBD5E1;
    --brand-gray-200: #E2E8F0;
    --brand-gray-100: #F1F5F9;
    --brand-gray-50: #F8FAFC;
    --brand-white: #FFFFFF;

    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #1EBE5D;
    --whatsapp-glow: rgba(37, 211, 102, 0.45);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow-orange: 0 8px 24px var(--brand-orange-glow);
    --shadow-glow-blue: 0 8px 24px var(--brand-blue-glow);
}

/* --- Base CSS Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--brand-white);
    color: var(--brand-gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, video, iframe {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Container & Sizing Utilities --- */
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 28rem; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-60 { width: 15rem; }
.w-64 { width: 16rem; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-60 { height: 15rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }
.min-h-screen { min-height: 100vh; }
.max-h-\[90vh\] { max-height: 90vh; }

.min-w-\[280px\] { min-width: 280px; }
.max-w-\[280px\] { max-width: 280px; }

.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }

/* --- Padding & Margin Utilities --- */
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-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; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.ml-2 { margin-left: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.-top-6 { top: -1.5rem; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.-right-6 { right: -1.5rem; }
.-left-20 { left: -5rem; }
.-right-20 { right: -5rem; }

/* --- Flexbox & Grid --- */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.grid { display: 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)); }

/* --- Display & Positioning --- */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }

.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-4 { top: 1rem; }
.top-10 { top: 2.5rem; }
.top-1\/4 { top: 25%; }
.top-1\/2 { top: 50%; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.bottom-1\/4 { bottom: 25%; }
.bottom-20 { bottom: 5rem; }
.right-4 { right: 1rem; }
.right-10 { right: 2.5rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.left-10 { left: 2.5rem; }
.left-1\/2 { left: 50%; }

.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[9999\] { z-index: 9999; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.pointer-events-none { pointer-events: none; }

/* Default hidden (will be overridden by responsive classes) */
.hidden { display: none; }

/* --- Colors & Backgrounds --- */
.bg-white { background-color: var(--brand-white); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-black { background-color: #000000; }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-black\/90 { background-color: rgba(0, 0, 0, 0.9); }

.bg-gray-50 { background-color: var(--brand-gray-50); }
.bg-gray-100 { background-color: var(--brand-gray-100); }
.bg-gray-200 { background-color: var(--brand-gray-200); }
.bg-gray-300 { background-color: var(--brand-gray-300); }
.bg-gray-800 { background-color: var(--brand-gray-800); }

.bg-brand-blue { background-color: var(--brand-blue); }
.bg-brand-blue\/5 { background-color: rgba(27, 99, 143, 0.05); }
.bg-brand-blue\/10 { background-color: rgba(27, 99, 143, 0.1); }
.bg-brand-blue\/20 { background-color: rgba(27, 99, 143, 0.2); }

.bg-brand-orange { background-color: var(--brand-orange); }
.bg-brand-orange\/5 { background-color: rgba(240, 90, 40, 0.05); }
.bg-brand-orange\/10 { background-color: rgba(240, 90, 40, 0.1); }
.bg-brand-orange\/20 { background-color: rgba(240, 90, 40, 0.2); }

.bg-brand-red { background-color: var(--brand-red); }
.bg-brand-red\/10 { background-color: rgba(214, 40, 40, 0.1); }

.bg-brand-black { background-color: var(--brand-black); }
.bg-green-100 { background-color: #DCFCE7; }
.bg-green-500 { background-color: var(--whatsapp-green); }
.bg-green-600 { background-color: var(--whatsapp-green-dark); }
.bg-blue-600 { background-color: #2563EB; }
.bg-gradient-to-r { background-image: linear-gradient(to right, #A855F7, #EC4899); }
.bg-gradient-to-t { background-image: linear-gradient(to top, rgba(27, 99, 143, 0.2), transparent); }

/* --- Text Colors & Typography --- */
.text-white { color: var(--brand-white); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-black { color: #000000; }
.text-gray-300 { color: var(--brand-gray-300); }
.text-gray-400 { color: var(--brand-gray-400); }
.text-gray-600 { color: var(--brand-gray-600); }
.text-gray-700 { color: var(--brand-gray-700); }
.text-gray-900 { color: var(--brand-gray-900); }
.text-brand-blue { color: var(--brand-blue); }
.text-brand-blue-dark { color: var(--brand-blue-dark); }
.text-brand-orange { color: var(--brand-orange); }
.text-brand-red { color: var(--brand-red); }
.text-brand-black { color: var(--brand-black); }
.text-green-600 { color: #16A34A; }

.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.15; }
.text-6xl { font-size: 3.75rem; line-height: 1.1; }
.text-7xl { font-size: 4.5rem; line-height: 1.05; }

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.leading-tight { line-height: 1.2; }
.leading-relaxed { line-height: 1.625; }

/* --- Borders & Radius --- */
.border { border: 1px solid var(--brand-gray-200); }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top: 1px solid var(--brand-gray-200); }
.border-gray-200 { border-color: var(--brand-gray-200); }
.border-gray-700 { border-color: var(--brand-gray-700); }
.border-white { border-color: var(--brand-white); }
.border-brand-blue { border-color: var(--brand-blue); }
.border-brand-orange { border-color: var(--brand-orange); }

.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-3xl { border-radius: var(--radius-3xl); }
.rounded-full { border-radius: var(--radius-full); }
.rounded-t-2xl { border-top-left-radius: var(--radius-2xl); border-top-right-radius: var(--radius-2xl); }
.rounded-b-2xl { border-bottom-left-radius: var(--radius-2xl); border-bottom-right-radius: var(--radius-2xl); }

/* --- Shadows, Blurs & Rings --- */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }
.drop-shadow-sm { filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)); }

.backdrop-blur-sm { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.blur-sm { filter: blur(4px); }
.blur-xl { filter: blur(24px); }
.blur-2xl { filter: blur(40px); }

.ring-4 { box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35); }
.ring-white\/20 { box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2); }

/* --- Opacity --- */
.opacity-15 { opacity: 0.15; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* --- Transitions & Animations --- */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transform {
    transform: translateZ(0);
}

/* Hover Utilities */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:-translate-y-1:hover { transform: translateY(-4px); }

.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl); }
.hover\:shadow-2xl:hover { box-shadow: var(--shadow-2xl); }
.hover\:bg-gray-50:hover { background-color: var(--brand-gray-50); }
.hover\:bg-gray-100:hover { background-color: var(--brand-gray-100); }
.hover\:bg-gray-400:hover { background-color: var(--brand-gray-400); }
.hover\:bg-gray-800:hover { background-color: var(--brand-gray-800); }
.hover\:bg-white:hover { background-color: var(--brand-white); }
.hover\:bg-orange-600:hover { background-color: var(--brand-orange-hover); }
.hover\:bg-green-600:hover { background-color: var(--whatsapp-green-dark); }
.hover\:bg-blue-700:hover { background-color: #1D4ED8; }
.hover\:bg-black\/70:hover { background-color: rgba(0, 0, 0, 0.7); }

.hover\:text-brand-blue:hover { color: var(--brand-blue); }
.hover\:text-brand-orange:hover { color: var(--brand-orange); }
.hover\:text-orange-600:hover { color: var(--brand-orange-hover); }
.hover\:text-red-700:hover { color: #B91C1C; }
.hover\:text-brand-black:hover { color: var(--brand-black); }

/* --- HERO SECTION STYLING --- */
#hero {
    position: relative;
    background: linear-gradient(135deg, #0d2a3d 0%, #13415e 40%, #1b638f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 5rem 1rem;
    color: var(--brand-white);
    overflow: hidden;
}

/* Background image overlay in hero */
.hero-bg-texture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: blur(1px) contrast(1.2);
    pointer-events: none;
}

/* Hero Centered Logo Card */
.hero-logo-box {
    width: 13rem;
    height: 13rem;
    background-color: var(--brand-white);
    border-radius: 2rem;
    padding: 1.5rem;
    margin: 0 auto 2rem auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-logo-box:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(255, 255, 255, 0.35);
}

.hero-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- NAVBAR STYLING --- */
#navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-link {
    font-weight: 500;
    color: var(--brand-gray-700);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-md);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
    color: var(--brand-blue);
    background-color: var(--brand-gray-50);
}

.nav-link.active {
    color: var(--brand-orange) !important;
    font-weight: 600;
}

/* --- CAROUSEL STYLING --- */
.carousel-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0.5rem 1.5rem 0.5rem;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    scroll-snap-align: start;
    flex: 0 0 280px;
    width: 280px;
    background: var(--brand-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--brand-gray-100);
}

.carousel-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.carousel-item img {
    width: 100%;
    height: 12.5rem;
    object-fit: cover;
    background-color: var(--brand-gray-100);
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.carousel-item img:hover {
    transform: scale(1.04);
    filter: brightness(1.03);
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: var(--whatsapp-green);
    border-radius: var(--radius-full);
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 16px var(--whatsapp-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-wpp 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wpp {
    0%, 100% {
        box-shadow: 0 4px 16px var(--whatsapp-glow);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.25), 0 4px 16px var(--whatsapp-glow);
    }
}

/* --- LIGHTBOX MODAL --- */
#image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeInModal 0.25s ease-out;
}

#image-lightbox.hidden {
    display: none !important;
}

#lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

@keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Small Devices (>= 640px) */
@media (min-width: 640px) {
    .sm\:flex, [class*="sm:flex"] { display: flex !important; }
    .sm\:hidden, [class*="sm:hidden"] { display: none !important; }
    .sm\:flex-row, [class*="sm:flex-row"] { flex-direction: row !important; }
    .sm\:px-6, [class*="sm:px-6"] { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
    .sm\:grid-cols-2, [class*="sm:grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

/* Medium Devices / Tablets & Desktops (>= 768px) */
@media (min-width: 768px) {
    .md\:flex, [class*="md:flex"] { display: flex !important; }
    .md\:hidden, [class*="md:hidden"] { display: none !important; }
    .md\:block, [class*="md:block"] { display: block !important; }
    .md\:w-14, [class*="md:w-14"] { width: 3.5rem !important; }
    .md\:h-14, [class*="md:h-14"] { height: 3.5rem !important; }
    .md\:w-56, [class*="md:w-56"] { width: 14rem !important; }
    .md\:h-56, [class*="md:h-56"] { height: 14rem !important; }
    .md\:p-8, [class*="md:p-8"] { padding: 2rem !important; }
    .md\:text-xl, [class*="md:text-xl"] { font-size: 1.25rem !important; line-height: 1.75rem !important; }
    .md\:text-2xl, [class*="md:text-2xl"] { font-size: 1.5rem !important; line-height: 2rem !important; }
    .md\:text-3xl, [class*="md:text-3xl"] { font-size: 1.875rem !important; line-height: 2.25rem !important; }
    .md\:text-4xl, [class*="md:text-4xl"] { font-size: 2.25rem !important; line-height: 2.5rem !important; }
    .md\:text-6xl, [class*="md:text-6xl"] { font-size: 3.75rem !important; line-height: 1.1 !important; }
    .md\:grid-cols-2, [class*="md:grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .md\:grid-cols-3, [class*="md:grid-cols-3"] { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

/* Large Devices / Desktops (>= 1024px) */
@media (min-width: 1024px) {
    .lg\:flex, [class*="lg:flex"] { display: flex !important; }
    .lg\:hidden, [class*="lg:hidden"] { display: none !important; }
    .lg\:grid, [class*="lg:grid"] { display: grid !important; }
    .lg\:grid-cols-2, [class*="lg:grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-3, [class*="lg:grid-cols-3"] { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-4, [class*="lg:grid-cols-4"] { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
    .lg\:gap-12, [class*="lg:gap-12"] { gap: 3rem !important; }
    .lg\:items-center, [class*="lg:items-center"] { align-items: center !important; }
    .lg\:px-8, [class*="lg:px-8"] { padding-left: 2rem !important; padding-right: 2rem !important; }
    .lg\:w-64, [class*="lg:w-64"] { width: 16rem !important; }
    .lg\:h-64, [class*="lg:h-64"] { height: 16rem !important; }
    .lg\:h-full, [class*="lg:h-full"] { height: 100% !important; }
    .lg\:p-10, [class*="lg:p-10"] { padding: 2.5rem !important; }
    .lg\:text-7xl, [class*="lg:text-7xl"] { font-size: 4.5rem !important; line-height: 1.05 !important; }
    .lg\:mb-0, [class*="lg:mb-0"] { margin-bottom: 0 !important; }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
