 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

 :root{
  --Primary-color:  #FFC544;
  --Primary-color-border:  rgb(0, 0, 0);
  --Secundary-color:#FFD984;
  --Tertiary-color: #379090;

  --FontSizeMenu: 1rem;
}
 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
  }
  header{
    z-index: 1000;
  }
  main{
    max-width: 100dvw;
    height: 86dvh;
    margin: 1rem;
    display: flex;
    gap: 1rem;
    overflow: hidden;
  }

   main .island{
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  background-color: var(--Secundary-color);
  box-shadow:2px 2px 2px 2px rgba(189, 78, 78, 0.354);
  } 

  main .colum1{
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    width: 30%;
  }

  main .colum2{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 100%;
    width: 70%;
    max-width: 100%;
  }
  main .colum1 >*,
  main .colum2 > *{
    max-width: 100%;
    max-height: 100%;
  }

  main .colum2 > *{
    max-height: 50%;
    height: 50%;
    overflow: hidden;
  }
  main .container_profile{
    height: 100%;
    justify-content: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  main .container_profile .image-profile{
    width: 100%;
  }
  .image-profile{
    width: 80px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 50%;
  }
  .image-profile img{
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  main .container_profile h3{
    font-size: 2rem;
    text-align: center;
  }
  main .colum2 .acessos-recentes,
  main .colum2 .proximas-aulas{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 100%;
    max-width: 100%;
  }

    main .colum2 .acessos-recentes h3,
  main .colum2 .proximas-aulas h3{
    font-size: 1.5rem;
  }
  main .colum2 .content{

    display: flex;
    height: 100%;
    overflow: scroll;
    overflow-y: hidden;
    gap: .8rem;
    padding: 1rem;
    background-color: rgb(255, 255, 255);
    border-radius: 1rem;
  }
  .content::-webkit-scrollbar-track {
    background-color: transparent;
}
  .content::-webkit-scrollbar {
    height: .6rem;
}
  .content::-webkit-scrollbar-thumb {
    background: #868686;
    border-radius: 8px;
    height: 2px;
}

  main .colum2 .content .card{
    background-color: var(--Secundary-color);
    box-shadow: 3px 3px 3px 1px rgba(0, 0, 0, 0.32);
    min-width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .6rem;
    gap: .5rem;
    cursor: pointer;
     text-decoration: none; 
  color: inherit
  }
   main .colum2 .content .turma{
    justify-content: center;
  }
  main .colum2 .content .aulas{
    min-width: 35%;
  }

  main .colum2 .content .card:first-child{
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  main .colum2 .content .card:last-child{
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }


.aulas.card span:last-child {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1.5rem;
  text-align: right;
}