:root {
    --md-primary-fg-color: #3b82f6;
    --md-accent-fg-color: #8b5cf6;
  }
  
  .md-typeset h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 1rem;
  }
  
  .md-typeset > p {
    font-size: 1rem;
    color: #a4c2e3;
    margin-bottom: 1rem;
  }
  
  .md-typeset h2 {
    color: #93c5fd;
    margin-top: 1.2rem;
  }
  
  .md-typeset ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
  }
  
  .md-typeset ul li::before {
    content: "✨ ";
    color: #8b5cf6;
    margin-right: 0.5rem;
  }
  
  .md-button {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    color: white !important;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .md-button:hover {
    opacity: 0.9;
  }
  
  .md-main__inner {
/*    max-width: 900px;*/
    margin: auto;
  }


  /* Navbar con gradiente Patrimoney */
.md-header {
    background: linear-gradient(to right, #3b82f6, #8b5cf6) !important;
    color: white !important;
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .md-header__title,
  .md-header__topic,
  .md-header a {
    color: white !important;
  }
  
  .md-header__button.md-icon {
    color: white !important;
  }
  

  .md-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  

