
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
      background-color: #f6f8fa;
      color: #333;
    }

    /* === Navbar === */
    .navbar {
      width: 100%;
      height: 60px;
      background-color: #071233;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      box-shadow: 0 2px 6px rgba(7,18,51,.30);
    }

    .navbar-title {
      display: flex;
      align-items: center;
      font-size: 18px;
    }

    .navbar-title img {
      height: 28px;
      margin-right: 10px;
    }

    .navbar-buttons {
      display: flex;
      gap: 10px;
    }

    .navbar-buttons button {
      background-color: #071233;
      border: none;
      color: white;
      padding: 8px 14px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
    }

    .navbar-buttons button:hover {
      background-color: #c11b1b;
    }

    /* === Sidebar === */
    .sidebar {
      width: 240px;
      background-color: #0d1e3d;
      color: white;
      display: flex;
      flex-direction: column;
      padding: 80px 20px 20px; /* Ajustado por navbar */
      gap: 20px;
      position: fixed;
      height: 100%;
      top: 0;
      left: 0;
    }

    .nav-link {
      background: rgba(255,255,255,.08);
      padding: 12px 16px;
      border-radius: 8px;
      text-decoration: none;
      color: white;
      transition: background 0.3s;
      font-size: 15px;
    }

    .nav-link:hover {
      background: #c11b1b;
    }

    /* === Main Content === */
    .main {
      margin-left: 240px;
      padding: 100px 30px 30px; /* Ajustado por navbar */
    
    }

    .header {
      margin-bottom: 20px;
    }

    .header h1 {
      font-size: 24px;
      margin-bottom: 5px;
      
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .card {
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 18px;
    }

    .card p {
      font-size: 14px;
      color: #666;
    }

    .footer {
      margin-top: 40px;
      text-align: center;
      color: #999;
      font-size: 13px;
    }

    .footer {
  margin-top: 600px;
  background-color: #071233;
  color: #ccc;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #c11b1b;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
}