/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
    color: #333;
}

button {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: none;
}


/* Faixa slider deslizante */

.slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    user-select: none;
    border-radius: 50%;
}

.next {
    right: 20px;
}

.prev {
    left: 20px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    }


/* Menu */
header {
    background-color: #252424;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo a {
    color: #f1f2f5;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Arial', serif;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #f0f1f4;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #0f7303;
}

a:active {
    color: green;
}

/* Menu Mobile */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: #f5f2f2;
    margin: 5px 0;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: right;
        background-color: #151414;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    /*background: linear-gradient(135deg, #1e3a8a, #3b82f6);*/
    color: #fff;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 24px;
    font-weight: 300;
}

/* Seções de conteúdo */
.content {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 20px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: green;
}

.content h3 {
    color: green;
    font-size: 24px;
    margin-bottom: 15px;
}

.content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}


/* Botões */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #1e3a8a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #0f7303;
}

/* Estilos da Página de Downloads */

.downloads h2 {
    color: #007AFF; /* Azul Apple */
    font-size: 2rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f0f8ff; /* Fundo azul claro */
    border-left: 5px solid #007AFF; /* Borda lateral azul */
    border-radius: 5px;
}

.download ul {
    margin: 0px;
    padding: 10px;
    color: #fff;
    text-align: left;
    font-weight: bold;
    
}

.downloads h2:hover {
    background-color: #e0f7ff; /* Cor de fundo ao passar o mouse */
    transition: background-color 0.3s ease;
}

.download a {
    color: #007AFF;
    text-decoration: none;
    list-style: none;
    font-size: 20px;
    padding: 2px;
    margin: 10px;
}

.download a:hover {
    background-color: #e0f7ff;
    transition: background-color 0.3s ease;
}

/*-------------Pop-up------------------*/

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 400px;
    width: 100%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.social-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.youtube {
    background-color: #ff0000;
}

.youtube:hover {
    background-color: #cc0000;
}

.whatsapp {
    background-color: #25d366;
}

.whatsapp:hover {
    background-color: #128c7e;
}

.telegram {
    background-color: #0088cc;
}

.telegram:hover {
    background-color: #006699;
}


  

/*Baner promoção*/

.promocao-banner {
  background-color: #ffcc00; /* Cor de fundo */
  padding: 20px;
  margin: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.promocao-banner h1 {
  font-size: 2.5em;
  color: #333;
}

.promocao-banner p {
  font-size: 1.2em;
  color: #555;
}

.botao-promocao {
  display: inline-block;
  background-color: #ff5722; /* Cor do botão */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  margin-top: 10px;
}

.botao-promocao:hover {
  background-color: #e64a19; /* Cor do botão ao passar o mouse */
}

/*site em construção*/
.construcao-container {
  text-align: center;
  padding: 50px;
  background-color: #f9f9f9;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.construcao-container h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

.construcao-container p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 20px;
}

.redes-sociais a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 20px;
  background-color: #0073e6;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
}

.redes-sociais a:hover {
  background-color: #005bb5;
}

.form-email input {
  padding: 10px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.form-email button {
  padding: 10px 20px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

.form-email button:hover {
  background-color: #e64a19;
}


/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.newsletter-form input {
    padding: 10px;
    width: 70%;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    padding: 10px;
    border: none;
    background-color: #007BFF;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #444;
}

/* Contato */
.contact-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.contact-container h1 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
    font-weight: bold;
}

.contact-container p {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button.whatsapp {
    background-color: #25D366;
}

.contact-button.telegram {
    background-color: #0088cc;
}

.contact-button.instagram {
    background-color: #E1306C;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-button i {
    margin-right: 10px;
    font-size: 20px;
}


/* Estilos para o conteúdo formatado */
.post {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.post h2 {
    color: #007AFF; /* Azul Apple */
    font-size: 2rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f0f8ff; /* Fundo azul claro */
    border-left: 5px solid #007AFF; /* Borda lateral azul */
    border-radius: 5px;
}

.post h2:hover {
    background-color: #e0f7ff; /* Cor de fundo ao passar o mouse */
    transition: background-color 0.3s ease;
}

.post h3 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.post p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.post img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-content {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    text-align: left;
    line-height: 1.6;
    color: #555;
}

.post-content strong {
    font-weight: bold;
    color: #333;
}

.post-content em {
    font-style: italic;
}

.post-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.post-content ul,
.post-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.post-content ul li,
.post-content ol li {
    margin-bottom: 10px;
}

.post-content code {
    background-color: #f4f4f4;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    color: #333;
}

.post-content pre {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.5;
    margin: 15px 0;
}


/* Lista de Postagens */
.post-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.post-card {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.post-card h3 {
    margin: 15px;
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.post-card a {
    text-decoration: none;
    color: inherit;
}

.post-card p {
    margin: 0 15px 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Estilo para a postagem destacada */
.post-card.featured {
    border: 2px solid #007BFF; /* Borda azul */
    background-color: #f0f8ff; /* Fundo azul claro */
    transform: scale(1.05); /* Aumenta ligeiramente o tamanho */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animação suave */
}

.post-card.featured:hover {
    transform: scale(1.07); /* Efeito de zoom ao passar o mouse */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Sombra mais intensa */
}

.post-card.featured h3 {
    color: #007BFF; /* Cor do título */
    font-size: 1.5em; /* Tamanho maior do título */
}

.post-card.featured img {
    border-radius: 10px; /* Bordas arredondadas na imagem */
}


