
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Roboto', sans-serif;
      background: #ffffff;
      background-image: url('fondo.png');
      color: #333;
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .topbar {
      background: #3021af;
      color: white;
      padding: 10px 20px;
      text-align: right;
      font-size: 0.9rem;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      padding: 5px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .logo {
      font-weight: bold;
      font-size: 1.5rem;
      color: #b71c1c;
      border: 2px solid #b71c1c;
      padding: 4px 10px;
      border-radius: 5px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 20px;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

    header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 1px 1px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-text {
      flex: 1;
      min-width: 280px;
      padding-right: 20px;
    }

    .hero-text h1 {
      font-size: 2.5rem;
      color: #002b5c;
      margin-bottom: 15px;
    }

    .hero-text p {
      font-size: 1.1rem;
      color: #333;
    }

    .hero-img {
      flex: 1;
      min-width: 280px;
      text-align: center;
    }

    .hero-img img {
      max-width: 100%;
      height: auto;
    }

    .credenciales-formales {
      text-align: center;
      background: #f4f4f4;
      padding: 5px;
      margin: 1px auto;
      max-width: 900px;
      border-radius: 12px;
      color: #222;
    }

    .credenciales-formales h2 {
      color: #002b5c;
      margin-bottom: 10px;
    }

    .credenciales-formales .link_wp {
      color: #0232ce;
      text-decoration: none;
    }

    .modules-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin: 30px auto;
      max-width: 1200px;
    }

    .module-card {
      background: white;
      color: #000;
      width: 280px;
      min-height: 180px;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .module-title {
      font-size: 1.2rem;
      font-weight: bold;
      color: #002b5c;
      margin-bottom: 10px;
    }

    .module-desc {
      font-size: 0.95rem;
      color: #444;
    }

    footer {
      background: #3021af;
      color: white;
      text-align: center;
      padding: 15px;
      margin-top: auto;
    }
    canvas {
	width: 100%;
	top: 0;
	left: 0;
}
  