    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
      background: url('../img/unimind.jpg') no-repeat center center fixed;
      background-size: cover;
      color: #f5f5f5;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      position: relative;
    }

    body::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: #0000004D;    /*rgba(0, 0, 0, 0.3);   THIS IS SHADOW!  */
      z-index: 0;
    }

    header, .services, footer {
      position: relative;
      z-index: 1;
    }

    header {
      text-align: center;
      padding: 1rem 1rem 2rem;
      animation: fadeIn 2s ease;
    }

    header h1 {
      font-size: 2.4rem;
      color: #fff;
      margin-bottom: 0.5rem;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }

    header h2 {
      font-size: 1.3rem;
      color: #ccc;
      font-style: italic;
    }

 .services {
      max-width: 900px;
      margin: 2rem auto;
      padding: 3.5rem;
      background: #ffffff14;
      border-radius: 20px;
      backdrop-filter: blur(10px);
      text-align: center;
      color: #fff;
      animation: slideUp 1.8s ease;
    }

    .services h2 {
      font-size: 2.5rem;
      margin-bottom: 1.2rem;
    }

    .services ul {
      list-style: none;
      padding: 0;
      margin-bottom: 2rem;
    }
    
    .services li {
        font-size: 1.4rem;
    }
    
    .services li::before {
      content: "✨" ;
      position: relative; /* ex absolute */
      left: 0;
    }

    .services li {
      font-size: 1.5rem;
      margin: 0.7rem 0;
      transition: transform 0.3s ease;
    }

    .services li:hover {
      transform: scale(1.05);
    }
    a.link-destaque {
        border-radius: 15px;
    }

    .link-destaque {
      border: 2px solid #999;
      /*border-radius: 15px;      /*****/
      padding: 10px 16px;
      text-decoration: none;
      color: #ffe58a;
      background-color: #ffffff1A;
      font-weight: bold;
      margin: 8px;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .link-destaque:hover {
      background-color: #B4B4B480; 
      border-color: #fff;
      color: #fff;
    }

    main {
      max-width: 900px;
      margin: 2rem auto;
      padding: 2.5rem;
      background: #FFFFFF14;
      border-radius: 20px;
      backdrop-filter: blur(10px);
      color: #fff;
      animation: slideUp 1.5s ease;
      
    }

    main h2 {
      font-size: 2.3rem;
      margin-bottom: 1.5rem;
      color: #ffe58a;
    }

    main p {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }

    main ul {
      list-style-type: none;
      padding-left: 0;
    }

    main li {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      padding-left: 1rem;
      position: relative;
    }

    main li::before {
      content: "🌟" ;
      position: relative;
      left: 0;
    } 

    .link-destaque {
      border: 2px solid #999;
      padding: 10px 16px;
      border-radius: 30px;
      text-decoration: none;
      color: #ffe58a;
      background-color: #FFFFFF1A;
      font-weight: bold;
      margin: 8px 4px;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .link-destaque:hover {
      background-color: #FFFFFF4D;
      border-color: #fff;
      color: #fff;
    }
/*
    footer {
      text-align: center;
      padding: 1.5rem 1rem;
      font-size: 0.9rem;
      color: #fff; 
    }
*/
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 600px) {
     /* header h1 {
        font-size: 2.2rem;
      }
      main h2 {
        font-size: 1.8rem;
      }
    }*/
}