/*
Theme Name: Mi Tema Hacer Dinero
Theme URI: https://tusitio.com
Author: Tu Nombre
Author URI: https://tusitio.com
Description: Tema optimizado para enseñar cómo hacer dinero online.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: hacer-dinero
*/

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}
header, section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}
header {
  background: #2d89ef;
  color: white;
  text-align: center;
}
h1, h2, h3 { margin-bottom: 15px; }
a.button {
  display: inline-block;
  padding: 10px 20px;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
a.button:hover { background: #218838; }
.card {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Animaciones */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
