body {
    font-family: Montserrat, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}
header {
    background-color: #e5edff;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.logo img {
    width: 100px;
}
.search {
    position: relative;
}
#search-input {
    display: none;
    width: 200px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    outline: none;
}
#search-icon {
    cursor: pointer;
}
main {
    padding: 20px;
}

.author {
    margin: 0; /* Remove a margem padrão */
    line-height: 1.2; /* Ajusta a altura da linha para diminuir o espaçamento vertical */
    font-weight: 600; /* Define o texto em negrito suave */
    display: flex;
    align-items: center;
    font-size: 14px;
}

.update {
    margin: 0; /* Remove a margem padrão */
    margin-top: 0.2rem; /* Pequeno espaço entre o nome do autor e a mensagem de atualização */
    line-height: 1.2; /* Mantém a altura da linha consistente */
    font-weight: normal; /* Garante que a atualização não esteja em negrito */
    font-family: Montserrat, sans-serif;
    font-size: 13px;
}


.post {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.post h2 {
color: #ed1651;
text-align: justify; /* Alinhamento justificado por padrão */
font-weight: bold;
font-size: 2.2rem;
margin-bottom: 20px;
}

.logo {
    background-color: #0b1337;
}

.footer-logo {
    background-color: #0b1337;
}
.content p {
    margin-top: 20px;
}

/* Media query para dispositivos móveis */
@media (max-width: 576px) {
.post h2 {
text-align: left; /* Alinhamento à esquerda para telas pequenas */
font-size: 25px;
}
.h4, h4 {
    font-size: 10px;
    font-weight: bold;

}

}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 12px;
}

.h4, h4 {
    font-size: 15px;
    font-weight: bold;

}

.subtitle-container {
    display: flex;          /* Define um contêiner flexível */
    align-items: center;    /* Centraliza verticalmente os itens */
    
  }
  
  .icon {
    margin-right: 8px;      /* Espaço entre o ícone e o texto */
    color: #ed1651;         /* Cor do ícone */
  }
  

.author-image {
    width: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.follow-btn {
    margin-left: auto;
    background-color: #007bff;
    border: none;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.follow-btn i {
    margin-right: 5px;
}
.content p {
    color: #161616;
    text-align: justify;
    font-size: 1rem; /* Usar rem em vez de px para tamanhos flexíveis */
    line-height: 1.5; /* Para melhorar a legibilidade em telas menores */
}

@media only screen and (max-width: 600px) {
    .h4, h4 {
       /* font-size: 17px;  */
        font-weight: bold;
    }
}

@media (max-width: 1200px) {
.content p {
font-size: 0.9rem; 
}/* Ajuste o tamanho do texto para telas grandes */

}




@media (max-width: 992px) {
.content p {
font-size: 0.85rem; /* Ajuste o tamanho do texto para telas médias */
}

}

@media (max-width: 768px) {
.content p {
font-size: 0.8rem; /* Ajuste o tamanho do texto para tablets */
}
}

@media (max-width: 576px) {
.content p {
font-size: 1rem; /* Ajuste o tamanho do texto para smartphones */
}
}

.embed, .embed-responsive {
    position: relative;
    z-index: 1;
    display: block;
    height: 0;
    padding: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 30px;
    overflow: hidden;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Estilo geral Footer*/
/* Estilo geral */
/* Estilo geral */
/* Estilo geral */
/* Estilo geral */
/* Estilo geral */
.custom-footer {
    background-color: #0b1337; /* Cor de fundo para o footer */
    color: white;
    padding: 20px;
    text-align: center;
}

.custom-footer-info {
    margin-bottom: 20px;
}

.custom-social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: color 0.3s; /* Transição suave de cor ao passar o mouse */
}

.custom-social-icons a:hover {
    color: #ed1651; /* Altera a cor ao passar o mouse */
}

.custom-footer-info p {
    margin: 5px 0;
}

/* Estilo para dispositivos móveis */
@media (max-width: 768px) {
    .custom-footer {
        background-color: #0b1337; /* Cor de fundo para o footer */
    }

    .custom-footer-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .custom-footer-info {
        width: 100%;
    }

    .custom-footer-info p {
        text-align: center;
       
    }

    .custom-social-icons {
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }
    a {
        color:  #ed1651;
        text-decoration: none;
        background-color: transparent;
}
}

/* Estilo para desktop */
@media (min-width: 769px) {
    .custom-footer-desktop {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }

    .custom-footer-section {
        flex: 1;
        text-align: center;
    }

    .custom-footer-section p {
        margin: 10px 0;
    }

    .custom-social-icons {
        text-align: center;
    }

    .custom-footer-info:first-child .custom-social-icons {
        text-align: center;
    }

    .custom-footer-info:first-child {
        text-align: center;
    }

    .custom-footer-info:nth-child(2) {
        text-align: center;
    }

    .custom-footer-info:nth-child(3) {
        text-align: center;
    }

    .custom-footer-info p {
        text-align: center;
    }
}

/* Estilo adicional para desktop */
@media (min-width: 1024px) {
    .custom-footer-info p {
        font-size: 18px;
    }

    .custom-social-icons a {
        font-size: 28px;
    }

    .custom-footer-info p:last-child {
        margin-top: 20px;
    }

    .whatsapp-links a {
        color: #ed1651; /* Altera a cor dos links de WhatsApp */
    }
}
