/*
Theme Name: Xolido Maintenance
Description: Tema personalizado para colocar un logo en la pantalla de inicio
Version: 1.0
Author: Xolido Systems S.A.
*/
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: arial, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: #f8fafc;
      color: #334155;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 1.5rem;
    }

    .card {
      background: #fff;
      padding: 2rem 2rem;
      border-radius: 16px;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
      max-width: 480px;
      width: 100%;
      text-align: center;
    }

    .brand {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: #0f172a;
      margin-bottom: 2rem;
      text-transform: lowercase;
    }

    .brand span {
      color: #16a34a; /* Tono verde coordinado con el nombre "Monte Avena" */
    }

    .icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 1.5rem;
      background-color: #f0fdf4;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon svg {
      width: 32px;
      height: 32px;
      stroke: #16a34a;
    }

    h1 {
      font-size: 1.75rem;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 0.75rem;
    }

    p {
      color: #64748b;
      line-height: 1.6;
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    .contact-link {
      display: inline-block;
      text-decoration: none;
      color: #16a34a;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.2s ease;
    }

    .contact-link:hover {
      color: #15803d;
      text-decoration: underline;
    }

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

