/* --------------------------
   MedETechni Brand CSS
--------------------------- */

/* Tipografía base */
body {
  font-family: Roboto, Arial, sans-serif;
  background: #f8fafc;
  margin: 0;
  color: #333;
}

/* Encabezados */
h1, h2, h3 {
  font-family: TechHead, Roboto, sans-serif;
  color: #009EB5;
  margin-top: 0;
}

/* Header */
header {
  background: #009EB5;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
header img { height: 60px; }
header p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
}

/* Contenedor principal */
.container {
  padding: 30px;
  max-width: 1000px;
  margin: auto;
}

/* Grid de tarjetas */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.card h3 { color: #009EB5; margin-top: 0; }
.card a {
  color: #009EB5;
  font-weight: bold;
  text-decoration: none;
}
.card a:hover { text-decoration: underline; }

/* Botones */
button, .btn {
  background: #009EB5;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
}
button:hover, .btn:hover {
  background: #007a8a;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
  padding: 20px;
}
