* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #f5f5f7; /* Cinza Apple */
  color: #1d1d1f;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.dashboard-container {
  max-width: 900px;
  width: 90%;
  padding: 40px 0;
}

.header {
  text-align: center;
  margin-bottom: 50px;
}

.badge {
  background: #e8e8ed;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #36cfee;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 15px;
  letter-spacing: -1px;
}

.header p {
  color: #86868b;
  margin-top: 10px;
}

/* Grid de Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  padding: 30px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e5e7;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #36cfee;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.blue {
  background: #e3f2fd;
}
.indigo {
  background: #e8eaf6;
}

.card:hover .icon-box {
  transform: scale(1.1);
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  color: #6e6e73;
  line-height: 1.5;
  font-size: 0.95rem;
}

.arrow {
  margin-top: 20px;
  color: #36cfee;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.footer {
  text-align: center;
  margin-top: 60px;
  font-size: 0.85rem;
  color: #86868b;
}

/* Responsividade */
@media (max-width: 600px) {
  .header h1 {
    font-size: 1.8rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.logohome {
  width: 350px;
  height: auto;
  margin-bottom: 10px;
}
