  :root {
      --primary-blue: #1e40af;
      --primary-green: #059669;
      --bg-light: #f8fafc;
      --glass-bg: rgba(255, 255, 255, 0.85);
      --glass-border: rgba(255, 255, 255, 0.3);
      --text-primary: #1e293b;
      --text-secondary: #64748b;
  }
  
  /* Estilo base para todos os links */
a {
  text-decoration: none; /* Remove o sublinhado padrão */
  color: inherit; /* Mantém a cor do texto pai */
}

/* Remove efeitos em estados específicos */
a:hover,
a:focus,
a:active {
  text-decoration: none; /* Remove sublinhado ao passar o mouse, focar ou clicar */
  outline: none; /* Remove o contorno azul/laranja em alguns navegadores */
  color: inherit; /* Mantém a cor, ou defina uma cor específica */
}

/* Para links já visitados */
a:visited {
  text-decoration: none;
  color: inherit; /* Ou defina uma cor para links visitados, se desejar */
}

  
  .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      margin-bottom: 12px;
      background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
  }
  
  .section h2 {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      text-align: center;
      margin-bottom: 48px;
      position: relative;
  }
  
  .section h2::after {
      content: '';
      display: block;
      width: 64px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary-green), #047857);
      margin: 16px auto 0;
      border-radius: 2px;
  }
  
  .logo {
      width: 280px;
      height: 140px;
      bottom: 30px;
      right: 25px;
      position: relative;
      display: flex;
      justify-content: left;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
      transition: transform 0.2s ease;
  }
  
  .logo:hover {
      transform: scale(1.05);
  }
  
:root {
    --primary-blue: #3b82f6;
    --primary-green: #10b981;
    --bg-start: #0f172a;
    --bg-end: #1e293b;
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(59, 130, 246, 0.2);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --accent-teal: #14b8a6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
    min-height: 100vh;
    color: var(--text-primary);
}

.launcher-container {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.launcher-header {
    text-align: center;
    margin-bottom: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.logo-svg {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.logo-text h1 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Bento Grid */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 24px;
}

.bento-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: var(--primary-blue);
}

.bento-item.active {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.1));
}

.card-icon {
    width: 56px;
    height: 56px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 8px;
}

.bento-item.active .card-icon {
    color: var(--primary-green);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-sigla {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--primary-green);
    color: white;
}

  .bento-item.developing {
      background: rgba(156, 163, 175, 0.2);
      border-color: rgba(156, 163, 175, 0.4);
      position: relative;
  }
  
  .bento-item.developing::after {
      content: "Em desenvolvimento • chega em breve";
      position: absolute;
      bottom: 16px;
      font-size: 0.9rem;
      color: var(--text-secondary);
      display: none;
  }
  
  .bento-item:hover.developing::after {
      display: flex;
  }

    footer { 
        background: #0f172a; 
        color: #94a3b8; 
        text-align: center; 
        padding: 48px 0; 
    }

/* Layouts */
.bento-item.large-1 { grid-column: span 4; grid-row: span 2; }
.bento-item.large-2 { grid-column: span 4; grid-row: span 1; }
.bento-item.large-3 { grid-column: span 4; grid-row: span 1; }
.bento-item.large-4 { grid-column: span 8; grid-row: span 2; }

/* Responsivo */
@media (max-width: 1024px) {
    .bento { grid-template-columns: repeat(8, 1fr); }
    .bento-item.large-1, .bento-item.large-2, .bento-item.large-3 { grid-column: span 4; }
    .bento-item.large-4 { grid-column: span 8; }
}

@media (max-width: 768px) {
    .bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 20px;
    }
    .bento-item {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        min-height: 160px;
        flex-direction: row;
        align-items: center;
    }
    .launcher-header { margin-bottom: 2rem; }
    .logo { flex-direction: column; }
    .logo-text h1 { font-size: 2.5rem; }
}
