* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 80%; /* Melhor para responsividade */
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Estilos para o cabeçalho */
.header {
    background-color: #ffffff; /* Fundo branco */
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave */
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header .logo img {
    
    max-height: 50px; /* Ajuste conforme necessário */
    margin-left: auto;
}

.header .nav {
    flex: 1;
    text-align: right;
}

.header .nav ul {
    list-style-type: none;
}

.header .nav ul li {
    display: inline-block;
    margin-left: 5px;
}

.header .nav ul li:first-child {
    margin-left: 0;
}

.header .nav ul li a {
    text-decoration: none;
    color: #333333; /* Texto escuro */
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.header .nav ul li a:hover {
    color: #87CEEB; /* Azul céu */
}

.nav {
    display: flex;
    justify-content: flex-end;
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    display: inline;
    margin-left: 20px;
}

.nav a {
    color: #0453ff;
    text-decoration: none;
    font-weight: bold;
}

.nav a:hover {
    text-decoration: underline;
}

/* Toggle button */
.toggle-button {
    display: none;
    font-size: 30px;
    color: #000000;
    cursor: pointer;
    margin-left: auto; /* Move o toggle para o canto direito */
}



.post-detalhes {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.post-image {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

h1 {
    color: #2980b9;
    margin-bottom: 10px;
}

h2 {
    color: #34495e;
    margin-top: 20px;
    margin-bottom: 10px;
}

h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #2980b9;
}

h4 {
    margin-top: 15px;
    color: #e74c3c;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

.footer {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Estilos para a seção de compartilhamento */
.share-section {
    margin: 30px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Permite que os botões se alinhem em várias linhas em telas menores */
}

.share-section a {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s;
}

.share-section a.facebook {
    background-color: #3b5998;
}

.share-section a.twitter {
    background-color: #1da1f2;
}

.share-section a.linkedin {
    background-color: #0077b5;
}

.share-section a.whatsapp {
    background-color: #25D366;
}

.share-section a:hover {
    opacity: 0.8;
}

.blog {
    padding: 40px 0;
}

.blog h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
}

.post {
    background-color: white;
    margin: 10px;
    padding: 20px;
    width: 45%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.post h2 {
    font-size: 24px;
    margin-top: 10px;
}

.post p {
    font-size: 16px;
    margin-top: 10px;
}

.post a {
    color: #3498db;
    text-decoration: none;
}

.video-container {
    margin: 20px 0;
}

.video-container iframe {
    width: 560px;
    height: 315px;
}

/* Adicionando padding e margin para o link pai */
.nav ul li a {
    padding: 0;
    margin: 0;
}

/* Estilos para o menu de navegação */
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav ul li {
    margin: 0 10px;
}

.social-follow {
    display: flex;
    align-items: center;
    margin-top: 10px; /* Espaço acima da seção */
}

.social-follow span {
    margin-right: 15px; /* Espaço entre o texto e os ícones */
    font-size: 1.2rem; /* Tamanho da fonte do texto */
    font-weight: bold; /* Deixa o texto em negrito */
}

.social-follow a {
    margin: 0 5px; /* Espaçamento entre os ícones */
}

.social-follow img {
    width: 25px; /* Largura dos ícones */
    height: auto; /* Mantém a proporção do ícone */
    transition: transform 0.3s; /* Efeito de transição para o hover */
}

.social-follow img:hover {
    transform: scale(1.1); /* Aumenta o ícone ao passar o mouse */
}



/* Responsividade */
@media (max-width: 768px) {

    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* Proporção 16:9 */
        height: 0;
        width: 100%;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .post{
        width: 100%;
    }
    .toggle-button {
        display: block;
        position: absolute;
        top: 20px; /* Ajuste a distância do topo conforme necessário */
        right: 20px; /* Ajuste a distância da direita conforme necessário */
        z-index: 1100; /* Garante que o botão esteja acima do menu */
    }

    .nav ul {
        display: none; /* Esconde o menu por padrão no mobile */
        flex-direction: column;
        text-align: center;
    }

    .nav ul.active {
        display: flex; /* Mostra o menu ao clicar no botão */
    }

    .nav ul li {
        margin: 10px 0;
    }

    .share-section {
        flex-direction: column; /* Coloca os botões de compartilhamento em coluna em telas menores */
        align-items: center;
    }

    .post-detalhes {
        padding: 20px; /* Reduz o padding para manter o design compacto */
    }

    h1 {
        font-size: 24px; /* Ajusta o tamanho da fonte para telas menores */
    }

    h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .header .logo img {
        height: 40px; /* Reduz o tamanho do logo em telas muito pequenas */
    }

    .nav ul li {
        font-size: 14px;
    }

    .container {
        width: 100%; /* Usa a largura total da tela em dispositivos muito pequenos */
        padding: 10px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }
}
