.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1; 
  overflow: hidden;
  background: #fafafa;
}

body{
    line-height: 1.7;
}

.full-table {
    display: table;
    height:80vh;
    width: 100%;
    
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.card {
    width: 250px;
    height: 150px;
    padding: 15px 30px 15px 30px;
    color: #541e1e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 20px;
    box-shadow: 12px 12px 16px #bfbfbf,
              -12px -12px 16px #ffffff;
}

/*INICIO DE HOVER*/

.card {
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.card:hover, .card:focus-visible {
  box-shadow: 
    inset 4px 4px 8px #bfbfbf, 
    inset -4px -4px 8px #ffffff;

  background: #f2f2f2; 
  filter: none; 
}


/*FECHAMENTO DE HOVER*/

.clock {
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 100%;
    font-family: "Chonburi", serif;
    font-size: 2.2em;
}

.time {
    display: inline-block;
    min-width: 37px;
    text-align: center;
}

.colon {
    font-size: 1.1em;
    display: inline-block;
}

.group_date {
    width: 100%;
    display: flex;
    justify-content: center;
}

.date {
    display: block;
    min-width: 160px;
    text-align: center;
    font-family: "Domine", serif;
    font-size: 1.3em;
    margin-top: -12px;
}

footer {
    font-family: "Domine", serif;
    color: #541e1e;
    line-height: 1;
    font-size: 0.8em;
    position: fixed;
    bottom: 0;
    height: 30px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.botao-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.botao-flutuante .lista {
    display: none; 
    position: absolute;
    bottom: 60px;
    right: 0;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}

.botao-flutuante .lista.aberto {
    display: flex;
}

.icon {
    color: #541e1e;
}

.item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    background-color: rgba(242, 242, 242, 0.95);
    box-shadow: -8px -8px 15px white, 8px 8px 15px rgba(163,177,198,.35);
    padding: 12px 15px;
    border-radius: 5px;
}

a {
    text-decoration: none;
    color: #541e1e;
    font-family: "Domine", serif;
}

.botao {
   display: flex;
}

button {
    border: none;
    cursor: pointer;
    border-radius: 30px;
    background: #f2f2f2;
    box-shadow: -8px -8px 15px white, 8px 8px 15px rgba(163,177,198,.35);
    transition: filter 0.8s ease, transform 0.2s ease;
    position: relative;
    padding: 5px;
}

button .icon {
    padding: 3px;
    display: flex;
    align-items: center;
}

#butao:active {
    box-shadow: inset -5px -5px 10px white, inset 5px 5px 10px rgba(163,177,198,.35);
}

/* POP UP DE EM CONSTRUÇÃO */
.modal-overlay {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #f8f8f8 32%, #eeeeee 50%, #e1e1e1 77%);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex !important;
}

.modal-content {
      background: white;
      padding: 32px 20px 20px 20px;
      margin: 42px 20px 10px 20px;
      border-radius: 8px;
      position: relative;
      max-width: 300px;
      text-align: center;
      font-family: "Domine", serif;
      line-height: 1.4;
      color: #541e1e;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-close {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 30px;
      height: 30px;
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #541e1e;
      background-color: #eeeeee;
      cursor: default;
}