/* Custom CSS for PDF Viewer */

/* Set background color and font style */
body {
  font-family: 'Verdana', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("FOTO.JPG");
}
/* teste */

/* Style the header */
header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("fundo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 5px solid  white;
  background-clip: padding-box;
  color: #fff;
  position: fixed;
  top: 0;
  margin: 0;
  z-index: 1;
  width: 100%;
}
.seta{
  width: 30px;
  text-align: left;
  align-items: left;
  justify-content: left;
  margin-top: 10px;
  margin-left: 15px;
}
main{
  margin-top: 150px;
}

h1 {
  margin: 0;
  font-weight: 700;
}
h2 {
  margin: 0;
  font-weight: 700;
}
.container {
  padding: 100;
  margin: 100;
}


/* Style the card container */
section#card-container {
  margin: auto;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: space-around;
  align-content: space-around;
  justify-content: center;
}
  
  /* Style the cards */
  .card {
    position: relative;
    margin-bottom: 20px;
    border: none;
    transition: all 0.3s ease-in-out;
    width: 400px;
    background-color: #f9f9f900;
    
  }
  @media (min-width: 619px){
    .card{
    margin-left: 15px;
  }
  }
  
  /* Add a hover effect to the cards */
  .card-body:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Style the card image */
  .card-img {
    position: relative;
    height: 0;
    padding-bottom: 100%;

  }
  
  /* Style the card icon */
  .card-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 60px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    
  }
  
  /* Add a hover effect to the card icon */
  .card:hover .card-body {
    opacity: 1;
  }
  
  /* Style the card title */
  .card-title {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }
  
  /* Style the card subtitle */
  .card-subtitle {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
  }
  .oi {
    width: 300px;
    flex-basis: 56%; 

  }
.card, .oi {
    margin-bottom: 10px; /* Espaço entre as cartas, ajuste conforme necessário */
    
}
  /* Add padding to the card body */
  .card-body {
    padding: 10px;
    color: #ffffff;
    justify-content: center;
    text-align: center;
    align-items: center;
    background: linear-gradient(to bottom, #4726ff, #1800a3) ;
    border: 5px solid #0300bd;
    border-radius: 25px;
    height: 160px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .card-body2 {
    padding: 10px;
    color: #ffffff;
    justify-content: center;
    text-align: center;
    align-items: center;
    background: linear-gradient(to bottom, #26ffff, #00a39b) ;
    border: 5px solid #00bda4;
    border-radius: 25px;
    height: 160px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  /* Style the PDF viewer modal */
  .modal-body {
    padding: 0;
  }

  .card-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    /* set the background size to slightly smaller than the card-img height */
    background-size: calc(100% - 20px) calc(100% - 20px);
    /* add a small border */
    border: 5px solid #ccc;
  }
  a {
    text-decoration: none;
  }
  #video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100vh - 100px);
  }
  
  /* Estilos CSS para o player de vídeo */
  #video {
    max-width: 100%;
    border: none;
    border-top: none;
    border-bottom: 60px solid black;
  }
  
  /* Estilos CSS para tornar a página responsiva */
  @media screen and (max-width: 800px) {
    #video {
      border-bottom: 40px solid black;
    }
  }
  
  @media screen and (max-width: 600px) {
    #video {
      border-bottom: 20px solid black;
    }
  }