/*
Theme Name: WebUtilidades
Theme URI: https://webutilidades.com.br
Author: Ismael Silva
Description: Um portal de ferramentas online simples e moderno.
Version: 1.0
License: GPLv2 or later
Text Domain: webutilidades
*/

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f6f8;
  margin: 0;
  padding: 0;
}

header {
  background: #0066ff;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.03);
}

.card a {
  text-decoration: none;
  color: #0066ff;
  font-weight: 600;
}