html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
}

@import url('https://fonts.cdnfonts.com/css/neuething-sans-test');

/* ---------------- Global Styles --------------------- */

::-webkit-scrollbar {
    width: 5px; 
    height: 5px;
    background-color: #f5f5f5; 
}

::-webkit-scrollbar-thumb {
    background: #821D19 0% 0% no-repeat padding-box;
    border-radius: 5px;
}

html, body {
    overflow-x: hidden;
	overflow-y: auto;
}

::-webkit-scrollbar {
    height: 0;
}

main {
    padding-left: unset !important;
    padding-right: unset !important;
    background-color: #f0ecec;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-family: "Bebas Neue", serif;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas Neue", serif;
    font-weight: 500;
}

p, a, li {
    font-family: "Bebas Neue", serif;
}

/* Estilos para links */
a {
    text-decoration: none !important;
    transition: ease-in-out .3s;
}

a:hover {
    text-decoration: none;
}

.btn {
    background-color: #EF3E40;
    text-decoration: none;
    transition: ease-in-out .3s;
    border-radius: 24px;
    color: #fff;
    padding: 15px 40px;
    box-shadow: 0px 10px 20px 0px #00000040;
}

.btn:hover {
    transform: scale(1.05);
    color: #EF3E40;
}

.btn-inv {
    background-color: #fff;
    color: #EF3E40;
}

.btn-inv:hover {
    background-color: #EF3E40;
    color: #fff;
}

h2 {
    font-size: 32px;
}

/* Estilos para lista não ordenada e ordenada */
ul, ol {
    list-style-type: none;
}

ul li {
    padding: 5px;
}

/* Estilos para elementos de formulário */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

strong {
    font-weight: bold;
}

.title-bold {
    font-family: 'Neuething Sans Test', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 53px;
    color: #000;
}

.title-light {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 61px;
    color: #000;
}

.load-more {
    margin-top: 32px;
    padding: 18px 24px;
    color: #131415;
    background-color: #ffffff;
    border: 1px solid #E5E5E7;
    border-radius: 32px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Neuething Sans', sans-serif;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
  }

  .load-more:hover {
    transform: scale(1.05);
  }

@media (max-width: 768px) {

    .title-bold {
      font-size: 34px;
      line-height: 37.4px;
    }

    .title-light {
      font-size: 40px;
      line-height: 44px;
    }
  }

/* CARDS */

.agenda-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #fff;
    position: relative;

    display: flex;
    flex-direction: column; /* Mantém os elementos internos empilhados */
    height: 100%; /* Faz com que o card ocupe a altura total disponível */
}

.card-image {
    position: relative;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Labels */
.card-labels-agenda {
    position: absolute;
    top: 90%;
    left: 5%;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.label-green,
.label-red {
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 18px;
    letter-spacing: 2.16px;
    line-height: 21.6px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
}

.label-green {
    background-color: #00a651;
}

.label-red {
    background-color: #e30613;
}

.card-content {
    display: flex;
    gap: 10px;
    padding: 30px 24px 24px 24px;
    gap: 24px;
}

.card-date-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 8px; /* Espaçamento entre as datas */
}

.card-date, 
.card-date-continuo {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #333;
}

.card-date-continuo {
    /* Mantém a mesma formatação da data principal */
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.date-number {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    height: 60px;
}

.date-month {
    font-size: 24px;
    color: #8F8F9A;
    font-weight: 700;
}

.date-to {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 4px;
}

.card-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.card-details div, .card-calendar span {
    font-size: 15px;
    color: #000;
    letter-spacing: 0.02em;
    font-weight: 400;
    font-family: 'Neuething Sans', sans-serif;

}

.card-details i {
    margin-right: 8px;
    color: #000;
}

.card-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 24px;
}

.card-footer {
    position: relative;
    background-color: #fff;
    padding: 0 24px 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-footer a.card-footer-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.card-footer .card-title-agenda {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.02em;
    line-height: 35.2px;
}

.card-footer .card-arrow {
    color: #131415;
    font-size: 32px;
}

/* Efeito de hover no card */
.agenda-card:hover .date-number {
    color: #D41726;
}

.agenda-card:hover .card-arrow {
    color: #D41726;
}

.agenda-card:hover .card-title {
    text-decoration: underline;
}

.agenda-card .card-image img {
    object-fit: fill; /* Mantém a proporção da imagem */
    object-position: center; /* Centraliza a imagem */
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out; /* Suaviza o efeito de ampliação e escurecimento */
}

.agenda-card:hover .card-image img {
    transform: scale(1.05); /* Aumenta levemente a imagem */
    filter: brightness(0.5); /* Escurece levemente a imagem */
}

@media (max-width: 768px) {
    section {
        padding: 48px 20px !important;
    }
}

.link-hidden {
        font-family: 'Neuething Sans Test', sans-serif;
        display: none;
        background: #ffffff;
        border-radius: 32px;
        padding: 18px 80px;
        width: 100%;
        text-align: center;
        color: #131415;
        font-size: 16px;
        font-weight: 500;
    }

    @media (max-width: 1024px) {
        .link-hidden {
            display: block;
        }

        .link-hidden i {
            font-size: 16px;
            margin-left: 8px;
        }
    }

/* card-noticia */

.noticia-card {
    background: #ffffff;
    border-bottom: 1px solid #E5E5E7;
    padding-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.noticia-card-link {
    display: block;
    color: inherit; /* Mantém a cor do texto */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noticia-card-link:hover .noticia-card {
    transform: scale(1.05); /* Efeito de zoom */
    text-decoration: none !important; /* Remove sublinhado */
}

.no-thumb .noticia-card-link:hover h3 {
    text-decoration: underline;
}

.noticia-thumb {
    position: relative;
}

.noticia-thumb .noticia-label {
    position: absolute;
    left: 16px;
    bottom: -16px;
}

.noticia-card.no-thumb {
    border-bottom: none;
}

.noticia-thumb img {
    width: 100%;
    border-radius: 16px;
    height: 250px;
    object-fit: cover;
}

.noticia-content h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 35.2px;
    letter-spacing: 0.02em;
    color: #000;
}

.noticia-content h3, .noticia-date {
    text-align: left;
}

.noticia-date {
    color: #55555E;
    font-size: 14px;
    font-family: 'Neuething Sans', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.01em;
    line-height: 21px;
}

.no-thumb h3 {
    font-family: 'Neuething Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 23.8px;
    letter-spacing: 0.02em;
}

.noticia-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.noticia-label {
    font-size: 18px;
    background-color: #D41726;
    color: #ffffff;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 18px;
    display: inline-block;
    letter-spacing: 2.16px;
    line-height: 21.6px;
}

.noticia-date {
    margin-bottom: 0;
}

.noticia-card-link img {
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    width: 100%;
    object-fit: cover;
}

.noticia-card:hover .noticia-card-link img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/* Bloco: Agenda Cultural */

.bloco-agenda-cultural {
    background-color: #D41726;
    padding: 88px 64px 96px 64px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.agenda-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.agenda-content h2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: #FFF2F3;
    margin: 0 !important;
}

.agenda-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    align-items: stretch;
}

/* Layout responsivo */
@media (max-width: 1024px) {

    .agenda-cultural-link {
        display: none;
    }

}

@media (max-width: 768px) {
    
    .agenda-card-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
        align-items: stretch;
    }

    .noticia-label {
        font-size: 15px;
    }

}

@media (max-width: 767px){

  .agenda-card-list{
    grid-template-columns: 1fr;   /* força 1 coluna */
    gap: 24px;                    /* opcional: reduz o espaçamento */
  }

  .agenda-card-list > *{
    grid-column: 1 / -1;
  }
}

@media (max-width: 425px) {

    .agenda-card-list {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .card-title-agenda {
        font-size: 22px;
        letter-spacing: 0.02em;
        line-height: 26.4px;
    }
    
    .card-date .date-number, .card-date-continuo .date-number {
        font-size: 32px;
        line-height: 38.4px;
        letter-spacing: 0.02em;
        height: auto;
    }

}

/* CSS - TAGS/CATEGORIAS */

.post-categories {
    background-color: #fff;

}
.post-tags {
    display: flex;
    gap: 8px;
    border-top: 1px solid #E5E5E7;
    border-bottom: 1px solid #E5E5E7;
    /* margin-bottom: 40px; */
    padding: 40px 0 48px 0;
    flex-wrap: wrap;
}

.tag-item, .category-item {
    background-color: #EFEFF1;
    color: #27272B;
    padding: 9px 20px;
    border-radius: 20px;
    text-decoration: none;
}

.tag-item a, .category-item a {
    color: #27272B;
    text-decoration: none;
    font-family: 'Neuething Sans test', sans-serif;
    font-size: 16px;
    line-height: 21px;
}

/* AUTOR DO POST */ 

.post-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #E5E5E7;
    padding-bottom: 40px;
    margin-top: 40px;
}

.author-image img {
    max-width: 56px;
    max-height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

.author-name {
    font-weight: 500;
    font-size: 24px;
}

.author-bio p {
    font-weight: 500;
    font-size: 16px;
font-family: 'Neuething Sans', sans-serif;
max-width: 500px;
}

/* BUSCA - EXIBIR POSTS */

.show-all {
    padding: 64px;
    background-color: #ffffff;
    text-align: center;
  }

  .show-all h2 {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 64px;
    text-align: left;
  }

  .show-all-container {
    padding: 96px 64px 48px 64px;
    background: linear-gradient(180deg, #FFF2F3 0%, rgba(255, 242, 243, 0) 22.2%);
    border: 1px solid #FFA6AD;
    border-radius: 16px;
  }

  .noticias-all-container {
    display: flex;
    flex-direction: column;
  }

  .noticia-all-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid #DDDDE0;
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .noticia-all-thumb img {
    width: 300px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: ease-in-out .3s;

  }

  .noticia-all-card:hover .noticia-all-thumb img {
        transform: scale(1.05);
        filter: brightness(0.8);
  }

  .noticia-all-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .noticia-all-content h3 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 58.2px;
    color: #000000;
    text-align: left;
    margin: 0;
  }

  @media (max-width: 768px) {

    .show-all {
      padding: 0 !important;
    }

    .show-all-container {
      border-radius: 0;
      padding: 48px 20px;
    }

    .noticia-all-thumb img {
      width: 250px;
      height: 120px;
    }


    .noticia-all-content h3 {
      font-size: 24px;
      letter-spacing: 0.2px;
      line-height: 42px;
    }
  }

  @media (max-width: 500px) {
    .noticia-all-card {
      flex-direction: column;
    }

    .noticia-all-thumb,
    .noticia-all-thumb img {
      width: 100%;
    }
}

    .socials .fa-whatsapp:before{
        font-size: 30px;
    }
    .socials .fa-telegram-plane:before{
        font-size: 30px;
    }
    .socials .fa-facebook:before{
        font-size: 30px;
    }
    .socials .fa-twitter:before{
        font-size: 30px;
    }
    .socials ul li i {
        width: 40px !important;
        height: 50px !important; 
    }


    .navbar-nav .active > a {
        background-color: rgba(255, 192, 203, 0.3); 
        padding: 10px 16px; 
        border-radius: 20px;
        transition: background 0.3s ease; /* Suavizar a transição */
    }

    .nav>li>a:hover {
        background-color: rgba(255, 192, 203, 0.192) !important; 
        padding: 10px 16px; 
        border-radius: 20px; 
    }