/* src/main/resources/templates/landing-solucoes.html */

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Outfit', sans-serif;
      background: #020306; min-height: 100vh; color: #fff; overflow-x: hidden;
    }
    
    .hero-container {
      max-width: 1200px; margin: 0 auto; padding: 120px 40px 60px; text-align: center; position: relative; z-index: 10;
    }
    .hero-title {
      font-size: 4.5rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -3px; font-style: italic; line-height: 1;
    }
    .hero-subtitle {
      font-size: 1.3rem; color: rgba(255,255,255,0.6); max-width: 700px; margin: 0 auto 80px; line-height: 1.6;
    }

    .solutions-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 120px;
    }
    .sol-card {
      background: rgba(255,255,255,0.02); backdrop-filter: blur(40px); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 40px; padding: 60px; text-align: left; transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
      display: flex; flex-direction: column; gap: 30px; position: relative; overflow: hidden;
    }
    .sol-card:hover {
      background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); transform: translateY(-10px) scale(1.02);
      box-shadow: 0 40px 100px rgba(0,0,0,0.7);
    }
    .sol-icon {
      width: 80px; height: 80px; border-radius: 24px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
      font-size: 40px; color: #fff; border: 1px solid rgba(255,255,255,0.1); transition: all 0.5s;
    }
    .sol-card:hover .sol-icon { background: #fff; color: #000; transform: rotate(10deg); }
    
    .sol-info h3 { font-size: 2.2rem; font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; }
    .sol-info p { font-size: 1.15rem; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 500; }

    .glow-blob {
      position: absolute; width: 300px; height: 300px; background: rgba(255,255,255,0.05); filter: blur(100px); border-radius: 50%; z-index: -1;
    }

    .starfield { position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 0; }
    .star { position: absolute; width: 2px; height: 2px; background: rgba(255, 255, 255, 0.4); border-radius: 50%; animation: twinkle var(--dur, 4s) var(--delay, 0s) infinite; }
    @keyframes twinkle { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.8; } }

    @media (max-width: 992px) {
      .rj-topbar {
        position: sticky !important; flex-direction: column; align-items: stretch; gap: 12px;
        padding: 14px 18px; width: 100%; overflow: visible;
      }
      .rj-topbar-brand { justify-content: center; }
      .rj-topbar-actions {
        display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; width: 100%;
      }
      .rj-topbar-actions .rj-subnav-tab,
      .rj-topbar-actions .rj-btn-reservar {
        width: 100%; min-height: 48px; margin: 0; padding: 10px 8px !important; border-radius: 8px;
        display: flex; align-items: center; justify-content: center; text-align: center;
        font-size: 0.84rem; line-height: 1.05; white-space: normal; letter-spacing: 0;
      }
      .rj-topbar-actions .rj-btn-reservar { grid-column: 1 / -1; font-size: 0.96rem; }
      .hero-container { padding: 54px 24px 48px; }
      .hero-title { font-size: 2.75rem; line-height: 1.02; letter-spacing: 0; }
      .hero-subtitle { font-size: 1.08rem; margin-bottom: 54px; line-height: 1.55; }
      .solutions-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 64px; }
      .sol-card { padding: 36px 32px; border-radius: 28px; gap: 24px; }
      .sol-icon { width: 78px; height: 78px; border-radius: 8px; }
      .sol-info h3 { font-size: 1.9rem; letter-spacing: 0; }
      .sol-info p { font-size: 1.04rem; line-height: 1.65; }
      .reveal { opacity: 1; transform: none; }
    }

    @media (max-width: 480px) {
      .rj-topbar { padding: 12px 16px; }
      .rj-topbar-actions { gap: 7px; }
      .rj-topbar-actions .rj-subnav-tab { font-size: 0.78rem; padding: 9px 6px !important; }
      .hero-container { padding: 42px 22px 42px; }
      .hero-title { font-size: 2.15rem; }
      .hero-subtitle { font-size: 1rem; margin-bottom: 42px; }
      .sol-card { padding: 32px 28px; border-radius: 24px; }
      .sol-info h3 { font-size: 1.6rem; }
      .sol-info p { font-size: 0.98rem; }
    }
  

