* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}



.container{
      max-width: 1200px;
      margin: auto;
      padding: 10px;
}


.block-title-company {
    display: flex;
    justify-self: center;
    width: 70vw;
    max-width: 1530px;
    margin-top: 2rem;
    min-width: 370px;
    height: 284px;
    font-size: 1.2rem;
    text-align: center;
    flex-flow: column;
    margin-bottom: 50px;
    background-color: #2d2d2d;
    color: white;
    align-items: center;
    justify-content: center;
    padding: 1rem; 
    gap: 20px;
}

.decoration-intern {
    display: flex;
    flex-flow: row ;
    align-items: center;
    gap: 20px;
}

img.logo{
    width: 200px;
    padding: 0.3rem;
}

/* Alteração desktop*/

@media (min-width:796px) {

.block-title-company {
    font-size: 1.5rem;
    
    
}


.line-decoration-left {
    max-width: 300px;
    width: 10vw;
    background: linear-gradient(to right, #ffffff, #ffffff00);
    height: 1px;
}

.line-decoration-right {
    max-width: 300px;
    width: 10vw;
    background: linear-gradient(to left, #ffffff, #ffffff00);
    height: 1px;
}

}





    /* IMAGEM PRINCIPAL */
    .featured img{
    
      width: 100%;
      max-height: 460px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.815);
      cursor: pointer;
    }

    /* MINIATURAS */
    .thumbs{
      margin-top: 26px;
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .thumbs img{
      width: 100%;
      height: 230px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 8px 18px rgba(0,0,0,.08);
      cursor: pointer;
      transition: transform .2s;
    }

    .thumbs img:hover{
      transform: scale(1.03);
    }


    /* LIGHTBOX */
    .lightbox{
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.85);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 99;
    }

    .lightbox img{
      max-width: 90%;
      max-height: 80%;
      border-radius: 14px;
      box-shadow: 0 10px 40px rgba(0,0,0,.5);
    }

    .close{
      position: fixed;
      top: 16px;
      right: 22px;
      font-size: 40px;
      color: white;
      cursor: pointer;
      font-weight: bold;
    }

    .arrow{
      position: fixed;
      top: 50%;
      font-size: 52px;
      color: white;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
    }

    .left{
      left: 25px;
    }

    .right{
      right: 25px;
    }