/* ==========================================================
   ALMIGHTI S.A. — CSS PURO (CERO Tailwind, CERO dependencias)
   Usa @layer para replicar el sistema de prioridad de Tailwind:
   base < components < utilities (utilities SIEMPRE ganan)
   ========================================================== */

/* === LAYER: BASE (reset) === */
@layer base {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; line-height: 1.5; }
  body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: #ffffff; }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { cursor: pointer; font: inherit; background: none; border: none; }
  input, select, textarea { font: inherit; }
}

/* === LAYER: COMPONENTS (custom styles — overridden by utilities) === */
@layer components {
  .font-elegant {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, "Helvetica Neue", sans-serif;
    color: #D4AF37; font-weight: 600; letter-spacing: 0.05em;
  }

  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: #1A293F; }
  ::-webkit-scrollbar-thumb { background-color: #D4AF37; border-radius: 10px; border: 2px solid #1A293F; }
  ::-webkit-scrollbar-thumb:hover { background-color: #F5CC7F; }

  .body-glow {
    background: linear-gradient(135deg, #1a2c49 0%, #2a3e69 50%, #1e3155 100%);
    position: relative; overflow-x: hidden; min-height: 100vh;
  }
  .body-glow::before {
    content: ''; position: fixed; inset: 0;
    background: linear-gradient(180deg, rgba(212,175,55,0.05) 0%, rgba(180,180,180,0.07) 25%, rgba(212,175,55,0.1) 50%, rgba(180,180,180,0.07) 75%, rgba(212,175,55,0.05) 100%);
    background-size: 100% 400%; opacity: 0.8; pointer-events: none;
    animation: metallic-shine 40s ease infinite;
  }
  .body-glow::after {
    content: ''; position: fixed; inset: 0;
    background: repeating-linear-gradient(0deg, transparent 0%, transparent 49.5%, rgba(212,175,55,0.03) 50%, transparent 50.5%, transparent 100%), repeating-linear-gradient(90deg, transparent 0%, transparent 49.5%, rgba(212,175,55,0.03) 50%, transparent 50.5%, transparent 100%);
    background-size: 200px 200px; opacity: 0.5; pointer-events: none;
  }
  @keyframes metallic-shine { 0% { background-position: 0% 0%; } 50% { background-position: 0% 100%; } 100% { background-position: 0% 0%; } }

  .btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F5CC7F 50%, #D4AF37 100%);
    color: #121212; border: none; border-radius: 4px; font-weight: 600;
    transition: all 0.3s ease; position: relative; overflow: hidden; z-index: 1;
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
  }
  .btn-gold::before {
    content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg); transition: all 0.7s ease; opacity: 0; z-index: -1;
  }
  .btn-gold:hover::before { animation: shine 1.5s ease; }
  @keyframes shine { 0% { opacity: 0; left: -50%; } 50% { opacity: 0.7; } 100% { opacity: 0; left: 150%; } }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.4); }
  .btn-gold:active { transform: translateY(0); }

  .card-premium {
    background: linear-gradient(135deg, rgba(26,41,63,0.8) 0%, rgba(30,46,70,0.9) 100%);
    backdrop-filter: blur(10px); border: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 0 10px rgba(212,175,55,0.1);
    transition: all 0.5s ease; transform-style: preserve-3d; position: relative; height: 100%;
  }
  .card-premium .card-inner { height: 100%; width: 100%; position: relative; z-index: 1; }
  .card-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15), 0 0 15px rgba(212,175,55,0.2);
    border: 1px solid rgba(212,175,55,0.5);
  }

  .floating { animation: float 6s ease-in-out infinite; }
  @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

  .logo-title-container { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 2rem; }
  .logo-large {
    width: 150px; height: auto; filter: drop-shadow(0 0 15px rgba(212,175,55,0.3));
    margin-bottom: 1rem; animation: pulse-glow 4s ease-in-out infinite;
  }
  @keyframes pulse-glow {
    0% { filter: drop-shadow(0 0 15px rgba(212,175,55,0.3)); }
    50% { filter: drop-shadow(0 0 25px rgba(212,175,55,0.5)); }
    100% { filter: drop-shadow(0 0 15px rgba(212,175,55,0.3)); }
  }

  .menu-backdrop {
    background: rgba(26,41,63,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); border-bottom: none; transition: all 0.3s ease;
  }
  .menu-backdrop.scrolled {
    background: rgba(26,41,63,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  }

  .wave-animation { animation: wave 30s linear infinite; background-repeat: repeat-x; background-size: 200% 100%; will-change: transform; transform: translateZ(0); }
  .wave-animation-reverse { animation: wave 25s linear reverse infinite; background-repeat: repeat-x; background-size: 200% 100%; will-change: transform; transform: translateZ(0); }
  @keyframes wave { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  .transition-main { position: relative; }
  .transition-main::before {
    content: ''; position: absolute; top: 20px; left: 0; width: 100%; height: 40px;
    background: linear-gradient(to bottom, rgba(26,41,63,0.4), transparent); z-index: -1; pointer-events: none;
  }

  #mobile-menu, #services-submenu-mobile, #services-submenu-desktop { transition: all 0.3s ease-in-out; }
  .menu-transition { transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; }
  #services-icon-mobile, #services-icon-desktop { transition: transform 0.3s ease-in-out; }
  #services-icon-mobile.rotate-180, #services-icon-desktop.rotate-180 { transform: rotate(180deg); }

  .header-transition { transition: background 0.5s ease, box-shadow 0.5s ease; position: fixed; top: 0; left: 0; right: 0; }
  .header-transition::after {
    content: ''; position: absolute; bottom: -20px; left: 0; width: 100%; height: 20px;
    background: linear-gradient(to bottom, rgba(26,41,63,0.6), transparent); pointer-events: none; z-index: -1;
  }

  .menu-container { position: relative; z-index: 30; }
  .services-container-desktop, .services-container-mobile { position: relative; }
  .services-container-desktop::after { content: ''; position: absolute; bottom: -15px; left: 0; width: 100%; height: 15px; background: transparent; }
  .horizontal-menu { background: rgba(26,41,63,0.4); border-radius: 0.5rem; padding: 0.25rem; }

  .menu-btn {
    background: rgba(26,41,63,0.4); border: none; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden; position: relative; transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .menu-btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, transparent, rgba(212,175,55,0.2), transparent);
    transform: translateX(-100%); transition: transform 0.6s ease;
  }
  .menu-btn:hover::after { transform: translateX(100%); }
  .menu-btn:hover { background: rgba(26,41,63,0.7); }

  .menu-dropdown {
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); z-index: 20;
  }
  .menu-dropdown a, .menu-dropdown button, .horizontal-menu a, .horizontal-menu button {
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; overflow: hidden; font-size: 0.95rem;
  }
  .menu-dropdown a::before, .menu-dropdown button::before, .horizontal-menu a::before, .horizontal-menu button::before {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
    background: rgba(212,175,55,0.5); transition: width 0.3s ease;
  }
  .menu-dropdown a:hover::before, .menu-dropdown button:hover::before, .horizontal-menu a:hover::before, .horizontal-menu button:hover::before { width: 100%; }
  .menu-dropdown a.active, .horizontal-menu a.active { background-color: rgba(212,175,55,0.1); font-weight: 500; }
  .services-container-desktop { padding-bottom: 25px; margin-bottom: -25px; }
  #services-submenu-desktop { padding-top: 20px; margin-top: -15px; padding-bottom: 10px; margin-bottom: -10px; }
  .menu-dropdown a, .horizontal-menu a, .menu-dropdown button, .horizontal-menu button {
    padding: 0.7rem 1.5rem; margin: 0.2rem 0; border-radius: 6px;
  }

  footer { position: relative; overflow: hidden; }
  .footer-transition {
    border-top: none; background: rgba(26,41,63,0.6); backdrop-filter: blur(8px); position: relative;
  }
  .footer-transition::before {
    content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(26,41,63,0.6)); pointer-events: none;
  }
  footer::after {
    content: ''; inset: 0; position: absolute;
    background: linear-gradient(90deg, rgba(212,175,55,0) 0%, rgba(212,175,55,0.05) 50%, rgba(212,175,55,0) 100%);
    opacity: 0; animation: shimmer 8s infinite; pointer-events: none;
  }
  footer a { position: relative; transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94); }
  footer a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
    background-color: rgba(212,175,55,0.5); transition: width 0.3s ease;
  }
  footer a:hover::after { width: 100%; }
  @keyframes shimmer { 0% { opacity: 0; transform: translateX(-100%); } 50% { opacity: 0.5; } 100% { opacity: 0; transform: translateX(100%); } }

  .footer-shimmer {
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
    background-size: 200% 100%; animation: shimmer-footer 3s ease-in-out infinite;
  }
  @keyframes shimmer-footer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

  .metallic-card {
    background: linear-gradient(145deg, #1e293b, #0f172a); box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .metallic-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.6); }

  .btn-primary {
    background: linear-gradient(to right, #d4af37, #f5df4d); color: #0f172a; font-weight: 600;
    padding: 0.75rem 2rem; border-radius: 0.5rem; transition: all 0.3s ease;
    text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(212,175,55,0.3);
  }
  .btn-primary:hover {
    background: linear-gradient(to right, #f5df4d, #d4af37); transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212,175,55,0.4);
  }

  .text-gold { color: #D4AF37; }
  .group { position: relative; }
}

/* === LAYER: UTILITIES (HIGHEST priority — always overrides components) === */
@layer utilities {
  /* LAYOUT / DISPLAY */
  .flex { display: flex; }
  .inline-block { display: inline-block; }
  .block { display: block; }
  .hidden { display: none; }
  .grid { display: grid; }
  .relative { position: relative; }
  .absolute { position: absolute; }
  .fixed { position: fixed; }
  .flex-col { flex-direction: column; }
  .flex-1 { flex: 1 1 0%; }
  .flex-wrap { flex-wrap: wrap; }
  .flex-shrink-0 { flex-shrink: 0; }
  .items-center { align-items: center; }
  .items-start { align-items: flex-start; }
  .justify-center { justify-content: center; }
  .justify-between { justify-content: space-between; }
  .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

  /* SIZING */
  .w-full { width: 100%; }
  .w-4 { width: 1rem; }
  .w-6 { width: 1.5rem; }
  .w-8 { width: 2rem; }
  .w-10 { width: 2.5rem; }
  .w-16 { width: 4rem; }
  .w-20 { width: 5rem; }
  .w-56 { width: 14rem; }
  .w-72 { width: 18rem; }
  .h-full { height: 100%; }
  .h-px { height: 1px; }
  .h-4 { height: 1rem; }
  .h-5 { height: 1.25rem; }
  .h-6 { height: 1.5rem; }
  .h-8 { height: 2rem; }
  .h-10 { height: 2.5rem; }
  .h-16 { height: 4rem; }
  .h-20 { height: 5rem; }
  .min-h-screen { min-height: 100vh; }
  .max-w-xs { max-width: 20rem; }
  .max-w-sm { max-width: 24rem; }
  .max-w-md { max-width: 28rem; }
  .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; }

  /* SPACING */
  .p-2 { padding: 0.5rem; }
  .p-6 { padding: 1.5rem; }
  .p-8 { padding: 2rem; }
  .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
  .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-8 { padding-left: 2rem; padding-right: 2rem; }
  .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .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-6 { padding-top: 1.5rem; }
  .pt-20 { padding-top: 5rem; }
  .pb-2 { padding-bottom: 0.5rem; }
  .pb-20 { padding-bottom: 5rem; }
  .mx-auto { margin-left: auto; margin-right: auto; }
  .mt-auto { margin-top: auto; }
  .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; }
  .mr-2 { margin-right: 0.5rem; }
  .mt-0\.5 { margin-top: 0.125rem; }
  .mt-1 { margin-top: 0.25rem; }
  .mt-2 { margin-top: 0.5rem; }
  .mt-6 { margin-top: 1.5rem; }
  .mt-8 { margin-top: 2rem; }
  .mt-12 { margin-top: 3rem; }
  .gap-1 { gap: 0.25rem; }
  .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; }
  .gap-16 { gap: 4rem; }
  .space-y-2 > * + * { margin-top: 0.5rem; }
  .space-y-3 > * + * { margin-top: 0.75rem; }
  .space-y-6 > * + * { margin-top: 1.5rem; }
  .inset-0 { inset: 0; }
  .-inset-4 { inset: -1rem; }
  .top-0 { top: 0; }
  .top-4 { top: 1rem; }
  .right-0 { right: 0; }
  .right-4 { right: 1rem; }
  .left-0 { left: 0; }
  .bottom-0 { bottom: 0; }
  .z-10 { z-index: 10; }
  .z-40 { z-index: 40; }
  .z-50 { z-index: 50; }

  /* TYPOGRAPHY */
  .text-xs { font-size: 0.75rem; line-height: 1rem; }
  .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .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-6xl { font-size: 3.75rem; line-height: 1; }
  .text-center { text-align: center; }
  .font-bold { font-weight: 700; }
  .font-semibold { font-weight: 600; }
  .font-medium { font-weight: 500; }
  .tracking-wide { letter-spacing: 0.025em; }
  .leading-relaxed { line-height: 1.625; }

  /* COLORS — TEXT */
  .text-white { color: #ffffff; }
  .text-black { color: #000000; }
  .text-gray-200 { color: #e5e7eb; }
  .text-gray-300 { color: #d1d5db; }
  .text-gray-400 { color: #9ca3af; }
  .text-gray-500 { color: #6b7280; }
  .text-amber-400 { color: #fbbf24; }

  /* COLORS — BACKGROUND */
  .bg-\[\#111827\] { background-color: #111827; }
  .bg-\[\#0d1117\]\/95 { background-color: rgba(13,17,23,0.95); }
  .bg-\[\#1a2332\] { background-color: #1a2332; }
  .bg-\[\#1a1f2e\]\/95 { background-color: rgba(26,31,46,0.95); }
  .bg-black\/80 { background-color: rgba(0,0,0,0.8); }
  .bg-amber-500\/10 { background-color: rgba(245,158,11,0.1); }
  .bg-amber-900\/10 { background-color: rgba(120,53,15,0.1); }
  .bg-amber-400\/20 { background-color: rgba(251,191,36,0.2); }

  /* GRADIENTS */
  .bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent));
  }
  .bg-gradient-to-r[class*="via-"] {
    background-image: linear-gradient(to right, var(--tw-gradient-from, transparent), var(--tw-gradient-via, transparent), var(--tw-gradient-to, transparent));
  }
  .bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent));
  }
  .from-amber-400 { --tw-gradient-from: #fbbf24; }
  .from-amber-300 { --tw-gradient-from: #fcd34d; }
  .from-amber-900\/5 { --tw-gradient-from: rgba(120,53,15,0.05); }
  .to-yellow-600 { --tw-gradient-to: #ca8a04; }
  .to-yellow-500 { --tw-gradient-to: #eab308; }
  .to-amber-900\/5 { --tw-gradient-to: rgba(120,53,15,0.05); }
  .via-amber-500\/5 { --tw-gradient-via: rgba(245,158,11,0.05); }

  /* BORDERS */
  .border { border-width: 1px; border-style: solid; border-color: rgba(120,53,15,0.2); }
  .border-t { border-top-width: 1px; border-top-style: solid; }
  .border-b { border-bottom-width: 1px; border-bottom-style: solid; }
  .border-l { border-left-width: 1px; border-left-style: solid; }
  .border-amber-900\/20 { border-color: rgba(120,53,15,0.2); }
  .border-amber-900\/30 { border-color: rgba(120,53,15,0.3); }
  .border-amber-400 { border-color: #fbbf24; }
  .border-gray-800 { border-color: #1f2937; }
  .rounded-md { border-radius: 0.375rem; }
  .rounded-lg { border-radius: 0.5rem; }
  .rounded-xl { border-radius: 0.75rem; }
  .rounded-full { border-radius: 9999px; }

  /* EFFECTS */
  .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); }
  .blur-xl { filter: blur(24px); }
  .backdrop-blur-md { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
  .backdrop-blur-sm { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
  .overflow-hidden { overflow: hidden; }
  .overflow-x-hidden { overflow-x: hidden; }
  .opacity-0 { opacity: 0; }
  .opacity-100 { opacity: 1; }
  .invisible { visibility: hidden; }
  .visible { visibility: visible; }
  .translate-x-full { transform: translateX(100%); }

  /* TRANSITIONS */
  .transition-all { transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
  .transition-colors { transition: color 0.3s, background-color 0.3s, border-color 0.3s; }
  .transition-transform { transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
  .duration-200 { transition-duration: 200ms; }
  .duration-300 { transition-duration: 300ms; }

  /* HOVER / FOCUS / INTERACTIVE */
  .hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
  .hover\:text-amber-400:hover { color: #fbbf24; }
  .hover\:text-amber-300:hover { color: #fcd34d; }
  .hover\:text-white:hover { color: #ffffff; }
  .hover\:bg-amber-900\/10:hover { background-color: rgba(120,53,15,0.1); }
  .hover\:border-amber-400:hover { border-color: #fbbf24; }
  .hover\:scale-105:hover { transform: scale(1.05); }
  .group:hover .group-hover\:scale-110 { transform: scale(1.1); }
  .cursor-pointer { cursor: pointer; }
  .accent-amber-400 { accent-color: #fbbf24; }
  .focus\:border-amber-400:focus { border-color: #fbbf24; }
  .focus\:outline-none:focus { outline: none; }
  .resize-none { resize: none; }
  .first\:rounded-t-lg:first-child { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
  .last\:rounded-b-lg:last-child { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }

  /* RESPONSIVE (md = 768px) */
  @media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .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\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  }

  @media (max-width: 640px) {
    #mobile-menu { width: 80%; max-width: 280px; }
  }
}
