iframe {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: 100vw;
    border: none;
}

#logo {
    max-width: 80px;
    max-height: 80px;
}

#login_button {
    background-color: #ed3c39;
    color: white;
    border: 2px solid #ed3c39;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

#login_button:hover {
    background-color: transparent;
    color: #ed3c39;
    border: 2px solid #ed3c39;
}

.card_main {
    width: 400px; 
  
    @media (max-width: 576px) {
      width: 100%; 
    }
}

.card_links {
    position: relative;
    padding-left: 30px;
    padding-top: 30px;
    padding-bottom: 10px;
    padding-right: 0px;
    height: 150px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.295);
    background-color: rgb(231, 229, 229);
    border-radius: 5px; 
}

.icon-wrapper {
    position: absolute;
    right: 3%;
    top: 35%;
}

.custom-icon-links {
    display: block;
}

.card_links h2 {
    margin-top: 0;
    color: darkorange;
}

@media (max-width: 600px) {
    .card_links p {
      font-size: 16px;
    }
}
.card_links p {
    margin-top: 10px;
    color: #bf1820;
    font-size:larger;
    max-width: 80%;
    height: 10%;
    overflow-wrap: break-word;
}

.card_links:hover {
    cursor: pointer;
    background-color: #ECECEC;
}

.menu li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration-skip-ink: none;
    text-underline-offset: 4px;
}

.menu li a:hover {
    text-decoration: underline;
    text-decoration-color: #bf1820;
    text-decoration-thickness: 2px;
}

.menu li.active a {
    text-decoration: underline;
    text-decoration-color: #bf1820;
    text-decoration-thickness: 2px;
  }

.class_blog {
    background-image: url("../images/site_banner.png");
    background-repeat: repeat;
    background-size: cover;
}

.contact-info {
    margin-top: 20px;
    padding: 20px;
}

.gray-panel {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.295);
    padding:20px;
    border-radius: 5px; 
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-contact {
    padding:20px;
    height: 100%; 
    display: flex;
    background-color: #bf1820;
    flex-direction: column;
    justify-content: center;
    color: #fff
}


.border-radius-left {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.border-radius-right {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.align-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin-left: 15%;
    margin-right: 15%;
}


.frase_wellcome {
    font-size: 150%;
    font-family: 'Roboto', Bold 700;
}

.main_sentence {
    font-size: 200%;
    font-family: 'Roboto', Bold 700;
}

.align-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

.text_links {
    width: 30%;
}

.text_button_links {
    font-size: 80%;
    font-weight: bold;
}

.container_contact {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
}


.container_categorias {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    grid-gap: 20px;
    justify-content: center; 
    margin-left: 40%; 
    margin-right: 40%;
    margin-top: 25px; 
    height: auto; 
    cursor: pointer;
}

.elemento_categorias {
    border: 0px solid #000;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
}

.elemento_categorias:hover {
    cursor: pointer;
    background-color: #dbdbdb;
}

.elemento_categorias img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px; 
}

.text-category_name {
    font-size: 20px; 
    width: 100%;
    margin-top: 10px; 
    text-align: center; 
    text-decoration: solid;
    color: black;
}

.gray-panel-categories {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.295);
    padding:20px;
    background-color: rgb(240, 240, 240);
    border-radius: 5px; 
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-icon{
    color: #bf1820;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pagination-link {
    display: inline-block;
    margin-right: 5px;
    padding: 5px 10px;
    background-color: #f1f1f1;
    color: #333;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.current-page {
    font-weight: bold;
    padding: 5px 10px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
}

.post {
    display: grid;
}
  
.post-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.post-content p {
    margin: 0;
}

.post-content::-webkit-scrollbar {
    width: 10px;
    position: absolute;
    top: 0;
}

.scrollable::-webkit-scrollbar {
    width: 10px;
}

.scrollable::-webkit-scrollbar-track {
    background-color: #f1f1f1; 
}

.scrollable::-webkit-scrollbar-thumb {
    background-color: #888; 
    border-radius: 5px;
}

.scrollable::-webkit-scrollbar-thumb:hover {
    background-color: #555; 
}

.title-post h2 {
    text-align: center;
    margin-top: 10px;
}

.page_specific_category {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 10px;
}

.text_post_list {
    margin-top: 15px;
}

.link {
    color: black;
}

.card_links {
    text-decoration: none; /* Remove o sublinhado */
}

.card_links:hover {
    cursor: pointer;
    background-color: #ECECEC;
    text-decoration: none; /* Garante que o sublinhado não apareça ao passar o mouse */
}
