
    @font-face {
      font-family: outfit-regular;
      src: url(Outfit-Regular.ttf);
    }

    body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f7f6; margin: 0; color: #333; }
    .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
    header { background: #fff; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
    h1, h2, h3 { margin: 0; color: #2c3e50; }
    a { text-decoration: none; color: inherit; }
    
    .search-box { display: flex; gap: 5px; }
    .search-box input { padding: 8px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; width: 200px; }
    .search-box button { padding: 8px 15px; background: #3498db; color: white; border: none; border-radius: 4px; cursor: pointer; }
    .search-box button:hover { background: #2980b9; }
    
    .breadcrumb { font-size: 0.9em; color: #7f8c8d; margin-bottom: 20px; }
    .breadcrumb a { color: #3498db; }

    .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }

    .card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); transition: transform 0.2s; cursor: pointer; text-align: center; padding-bottom: 10px; }
    .card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .card img { width: 100%; height: 200px; object-fit: contain; background: #fafafa; border-bottom: 1px solid #eee; }
    .card-title { font-weight: bold; margin-top: 10px; padding: 0 10px; display: block; }

    .gallery { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
    .gallery img { max-width: 100%; height: auto; border-radius: 4px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
    .btn-back { background: #3498db; color: white; padding: 8px 15px; border-radius: 4px; font-size: 0.9em; }

    /* --- ASSINATURA GABRIEL --- */
    .gabriel-id { 
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 300px; 
        height: 300px;
        margin: 50px auto 20px auto;
     }
     .gabriel-id::before {
        font-family: outfit-regular, sans-serif;
        content: "Desenvolvido por";
        font-size: 22px;
        color: #16c426;
        margin-bottom: -70px;
        margin-left: auto;
        z-index: 10;
     }

     .gabriel-id .logo {
        width: 100%; 
        min-height: 200px;
        background-image: url('./logo_verde.png');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
     }

     body a:first-child, body a:last-child {    
        text-decoration: none;
     }
    
   header .container{
       display: flex;
       align-items: center;
       justify-content: space-evenly;
       width: 100%;
   }
   
   header .container a h1{
       margin-top:-25px;
   }
   
   header .container .gabriel-id{
       width: 175px;
       height: 75px;
       margin: 0 auto;
   }
   header .container .gabriel-id::before{
       margin-bottom: -20px;
       margin-left: auto;
        font-size: 12px;
   }
   header .container .gabriel-id .logo{
       min-height: 75px;
   }
   
   .card{
       margin-top: 50px!important;
   }