@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    transition: 0.2s linear;
}

.container {
    height: 100vh;
    width: 100vw;
    overflow: hidden; 
    position: relative; 
    box-sizing: border-box;
}

video {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: -1;
}

.info{
    display: grid;
    padding: 0 5.5%;
    position: absolute;
    z-index: 2;
}

.box { 
    display: flex;
    position: absolute;
    z-index: 1;
    width: 100%;
    justify-content: space-between;
    padding: 25rem 9%;
}

.bloco .logo {
    height: 30px;
    width: auto;
    border-radius: 5px;
}

.titulo {
    height: 300px;
    width: auto;
}

.bloco {
    position: relative;
    font-family: "Roboto Slab", serif;
    padding: 12.5px;
    width: 325px;
    height: 140px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
    display: grid;
    margin: 10px;
}

.box h3{
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.box p {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 15px;
    color: black;
    text-align: justify;
}

.box footer {
    text-align: right;
}

.box footer .rodape{
    position: absolute;
    top: 54%;
    left: 71%;
    height: 100px;
    width: auto;
    opacity: 0;
}

.bloco:hover{
    transform: scale(1.2);
    background-color: #153267;
    box-shadow: 0.75em 0.75em 10px rgba(0, 0, 0, 0.6);
}

.bloco:hover p{
  color: white;
  padding-left: 10px;
  border-left: 3px solid white;
}

.bloco:hover footer .rodape{
  opacity: 1;
}

@media (max-width:844px){
  video{
    height: 100%;
    width: auto;
  }
  
  .container {
    display: flex;
    justify-content: center;
  }
  
  .info {
    width: 100vw;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  
  .box{
    width: 100vw;
    padding: 15rem 0;
    display: grid;
    justify-content: center;
  }
  
  .bloco {
    margin-bottom: 10px;
  }
  
  .bloco:hover{
    transform: scale(1.1);
  }
}