:root {
  --bg: #f5f7fa;
  --card: #ffffff;
  --text: #0d2742;
  --primary: #3aa0f3;
  --border: #e2e8f0;
}

/* Base */
body {
  margin: 0;
  font-family: Inter, system-ui;
  background: var(--bg);
  color: var(--text);
}

.page {
  max-width: 1000px;
  margin: auto;
  padding: 30px 15px;
}

h1 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #5c6f86;
  margin-bottom: 30px;
}

/* Sections */
.section {
  margin-top: 30px;
}

.section h2 {
  font-size: 18px;
  margin-bottom: 15px;
}

/* Grid */
.grid {
  display: grid;
  gap: 15px;
}

.partners {
  grid-template-columns: repeat(2, 1fr);
}

.cloud {
  grid-template-columns: repeat(3, 1fr);
}

/* Card compacta */
.card {
  background: var(--card);
  border-radius: 12px;
  padding: 15px;
  border: 1px solid var(--border);
  text-align: center;
}

/* Logo */
.logo {
  height: 40px;
  margin-bottom: 10px;
}

/* Status */
.status {
  font-size: 13px;
  margin-bottom: 8px;
}

.status span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
}

/* Botón chico */
.btn {
  display: inline-block;
  font-size: 12px;
  background: var(--primary);
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .partners,
  .cloud {
    grid-template-columns: 1fr;
  }
}
