/* Importação das fontes do Google */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700&display=swap');

/* Variáveis de Cor (bom para manutenção) */
:root {
    --primary-color: #28a745; /* Verde Sucesso do Bootstrap */
    --secondary-color: #343a40; /* Cinza Escuro */
    --light-gray: #f8f9fa;
    --text-color: #212529;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Lato', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--heading-font);
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Estilo para o CTA (chamada para ação) do infoproduto */
.cta-infoproduct {
    background-color: var(--light-gray);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.cta-infoproduct .btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Placeholder para anúncios do AdSense */
.adsense-placeholder {
    width: 100%;
    min-height: 100px;
    background-color: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #ced4da;
    border-radius: 5px;
    color: #6c757d;
    font-size: 1rem;
    margin: 20px 0;
}

.adsense-placeholder small {
    background-color: #6c757d;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
}


/* Deixa a barra lateral fixa ao rolar a página */
.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 80px; /* Ajuste baseado na altura do seu header */
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
/* =================================== */
/* ESTILOS DO AVISO DE COOKIES         */
/* =================================== */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #212529; /* Cor escura, similar ao rodapé */
    color: #f8f9fa; /* Texto claro */
    padding: 15px 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none; /* Começa escondido */
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

#cookie-banner a {
    color: #ffffff;
    text-decoration: underline;
}

#cookie-banner a:hover {
    color: #dddddd;
}

#cookie-banner button {
    background-color: var(--primary-color); /* Usa a cor verde que definimos */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap; /* Impede que o texto do botão quebre a linha */
}

#cookie-banner button:hover {
    background-color: #218838; /* Um tom de verde um pouco mais escuro */
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    #cookie-banner button {
        margin-top: 10px;
        width: 100%;
    }
}