
body{
    margin:0;
    padding:0;
    color: #ffffff;
    font-family:Arial, 'Helvetica', sans-serif;
    background-color: #484848;
   /*div{border: 5px solid rgb(236, 146, 44);}*/

}
.aptpl{
  text-align: center;
  background-image: url(pics/note.png);
  width:100%;
  background-attachment: fixed;
  background-position:inherit;
  background-repeat: no-repeat;
  background-size:inherit;
  object-fit: scale-down;
  background-size: 100% auto;
  height:50vmin; 
  overflow: hidden;
}
  .divmn{margin:0 0; z-index: 20; width: 100%;height: 80px;background-color: #ffffff;position:sticky;top:0;backface-visibility:hidden;display: flex;align-items: center;justify-content: space-between; padding: 0 20px; box-sizing: border-box; transition: box-shadow 0.3s ease;}

  .divmn.scrolled {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  }

  #imz {
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    background-image: url(pics/zap.webp);
    background-size:cover;
    margin-left:10px;
    margin-right: 20px;
    
  }
  
  #iml {
    width:250px;
    height: 75px;
    margin-top: 25px;
    background-repeat: no-repeat;
    background-image: url(pics/logosoletra3.png);
    background-size: contain;
  }
 #imn {
  width: 150px;
  height: 300px;
 }
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
  a:link { 
    text-decoration: none; 
  } 
  a:visited { 
    text-decoration: none; 

  } 
  a:hover { 
    text-decoration: none; 
  } 
  
  a:active { 
    text-decoration: none; 

  }
  a {
    color: inherit;
    text-decoration: none;
  }
 /*----------------------------------------------------------------------*/
.divnews{
  width:100%;
  height: auto;
  justify-content: center;margin-top: 10px;
  flex-wrap: wrap; 
  display:inline-flex;
}
.posacoes{
  display: flex;
  width: 300px;height: 300px;
  flex-direction:row;
  gap: 5px; 
  flex-wrap: wrap; 
  justify-content: center;


}
.imgnews{
  width: 250px;
  height: 180px;
}
.fatianews{
  display: flex; 
  flex-direction:row; 
  gap: 5px; 
 flex-wrap: wrap;
 justify-content: center; 
}
.fatia {
  margin-top: 10px;
  margin-left: 6px;
}
.linha-branca { 
    border: none;
    background-color: #524dff;
    height: 1px;
    width: 95%; 
    margin: auto;
  }
.contentfoot {
  justify-content: center;
  align-content:center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.news-title {
  width: 250px;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #2825ee;
    font-weight: bold;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background-color: #524dff;
    color: #ffffff;
}

.menu-toggle {
    display: none; 
    background: none;
    border: none;
    font-size: 38px;
    cursor: pointer;
    color: #524dff;
    padding: 0;
}

@media (max-width: 768px) {
    .fatia{
      margin-left: auto;
    }
    .imgnews{
      width: 100%;
      height: auto;
    }

    .news-title {
    width: 100%;
    text-align: center;
    }
  .divmn {
        justify-content: flex-end; 
    }

    .menu-toggle {
        display: block; 
    }

    #iml {
        width: 180px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .main-nav ul {
        flex-direction: column;
        position: absolute;
        top: 80px; 
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(9, 9, 9, 0.1);
        padding: 10px 0;
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    .main-nav ul.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.contact-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #484848;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
    font-family: inherit;
    font-size: 1rem;
}

.btn-submit {
    background-color: #524dff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2825ee;
}

.msg-erro {
    background-color: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #ef9a9a;
    text-align: center;
    display: none; 
    animation: fadeIn 0.5s ease-out;
    justify-content: space-between;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fechar-erro {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 15px;
    line-height: 1;
}
