:root {
    --primary-color: #20495d;
    /* Azul claro */
    --secondary-color: #fab13d;
    /* Laranja/Amarelo */
    --accent-color: #c22b62;
    /* Rosa/Vermelho */
    --white: #ffffff;
    --light-gray: #f5f5f5;
}

/* Importando a fonte Chusten Bullgis */
@font-face {
    font-family: 'Chusten Bullgis';
    src: url('./Assets/fonts/Chusten\ Bullgis\ TTF.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* Reset básico */
body {
    margin: 0;
    font-family: 'Chusten Bullgis', sans-serif;
    padding-top: 40px;
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
a {
    font-family: 'Chusten Bullgis', sans-serif;
}

h4,
p {
    font-family: 'Montserrat', sans-serif;
}

/* Para a página de Política de Privacidade */
main.planos h2,
main.planos h3,
main.politicas h1,
main.politicas h2,
main.politicas h3 {
    font-family: 'Chusten Bullgis', sans-serif;
}

main.politicas p {
    font-family: 'Montserrat', sans-serif;
}

main.planos p {
    font-family: 'Montserrat', sans-serif;
}

/* Cabeçalho geral */
header {
    background-color: var(--primary-color);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Organização do conteúdo dentro do nav */
nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    /* ajusta conforme o visual */
    width: auto;
}

/* Menu */
.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: var(--secondary-color);
}

.menu a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.menu a:hover::after {
    width: 100%;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s;
}



/* Estilo Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #f0f8ff;
    gap: 60px;
    margin-top: 0;
}

/* Estilo do texto */
.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 36px;
    color: #4ca3c2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-text .btn {
    display: inline-block;
    background-color: #4ca3c2;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-text .btn:hover {
    background-color: #388ca3;
    transform: scale(1.05);
}

.btn i {
    margin-left: 10px;
    font-size: 16px;
    color: #25D366;
}

/* Estilo da imagem */
.hero-image img {
    width: 500px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-image img {
        max-width: 300px;
        margin-top: 20px;
    }
}

/* Fim Hero Section */

/* Estilo geral da seção de serviços */
.services-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-header h2 {
    font-size: 32px;
    color: #4ca3c2;
    margin-bottom: 10px;
    max-width: 800px;
    /* Limita a largura do h2 */
    margin-left: auto;
    margin-right: auto;
}

.services-header p {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    /* Limita a largura do parágrafo */
    line-height: 1.6;
    /* Melhora o espaçamento entre as linhas */
    margin-left: auto;
    margin-right: auto;
}

/* Estilo do texto destacado */
.highlight {
    font-weight: bold;
    background-color: var(--secondary-color);
    padding: 2px 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.planos .highlight {
    font-weight: bold;
    background-color: #6bc8ea;
    padding: 2px 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

/* Grid dos cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo de cada card */
.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.service-card h3 {
    font-size: 30px;
    color: #4ca3c2;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Botão "Saiba mais" */
.service-btn {
    display: inline-flex;
    align-items: center;
    background-color: #4ca3c2;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-btn i {
    margin-left: 10px;
    font-size: 16px;
    color: #25D366;
}

.service-btn:hover {
    background-color: #388ca3;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilo geral da seção */
.palestras {
    background-color: #f0f8ff;
    padding: 50px 20px;
    text-align: center;
}

/* Estilo do título */
.palestras h2 {
    font-size: 2rem;
    color: #4ca3c2;
    margin-bottom: 20px;
}

/* Estilo do parágrafo */
.palestras p {
    color: #555;
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Grid dos cards */
.palestras-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Estilo dos cards */
.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);

}

/* Estilo das imagens */
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}


/* Título do card */
.card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Texto do card */
.card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

/* Estilo geral da seção */
.publicacoes {
    background-color: var(--light-gray);
    padding: 50px 20px;
    text-align: center;
}

/* Título da seção */
.publicacoes h2 {
    font-size: 2rem;
    color: #4ca3c2;
    margin-bottom: 30px;
}

/* Grid dos cards */
.publicacoes-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Estilo dos cards */
.publicacoes .card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.publicacoes .card:hover {
    transform: translateY(-10px);
}

/* Estilo das imagens */
.publicacoes .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Estilo do título da publicação */
.publicacoes .card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

/* Estilo do tempo da publicação */
.publicacoes .card p {
    font-size: 0.9rem;
    color: #666;
}

/* Estilo do botão */
.ver-publicacoes-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #4ca3c2;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.ver-publicacoes-btn:hover {
    background-color: #3b91a8;
}

/*Início Seção Avaliações*/
.testimonials-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2px 20px;
    background-color: #f0f8ff;

}

.testimonials-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: #2563eb;
    opacity: 0.2;
    font-family: serif;
}

.testimonial-text {
    color: #4b5563;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 18px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    gap: 0.75rem;
}

.testimonial-photo {
    width: 100px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid #4ca3c2;
}

.testimonial-author {
    color: #4ca3c2;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

/*Final Seção Avaliações*/

/* Estilo geral do rodapé */
.rodape {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: center;
    gap: 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* Políticas no lado esquerdo */
.rodape .politicas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 200px;
    margin-top: 20px;
}

/* Links das políticas */
.rodape .politicas a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.rodape .politicas a:hover {
    color: var(--secondary-color);
}

/* Seção de contato */
.rodape .contato {
    flex: 1;
    min-width: 250px;
}

.rodape .contato h3,
.rodape .redes-sociais h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.rodape .contato p {
    margin: 5px 0;
    font-size: 1rem;
    color: #fff;
}

/* Redes sociais */
.rodape .redes-sociais {
    min-width: 200px;
}

.rodape .redes-sociais .icones {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.rodape .redes-sociais .icones a i {
    font-size: 22px;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.rodape .redes-sociais .icones a:hover i {
    color: var(--secondary-color);
    transform: scale(1.2);
}

/* Direitos reservados */
.rodape .direitos {
    font-size: 0.85rem;
    color: #fff;
    margin-top: 15px;
    opacity: 0.9;
}

/* Desenvolvido por */
.rodape .desenvolvedor {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #fff;
    margin-top: 15px;
}

.rodape .desenvolvedor strong {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.rodape .desenvolvedor strong:hover {
    color: #fff;
}



/* Estilo geral do cabeçalho do Blog (reaproveitado da página principal) */
header {
    background-color: var(--primary-color);
    padding: 20px 0;
    text-align: center;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.menu li {
    display: inline;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

/* Efeito hover nos links */
.menu a:hover {
    color: var(--secondary-color);
}

/* Barra animada ao passar o mouse */
.menu a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.menu a:hover::after {
    width: 100%;
}

/* Estilo do link ativo */
.menu .active {
    color: var(--secondary-color);
}

.menu .active::after {
    width: 100%;
    background-color: var(--secondary-color);
}

/* Estilo da seção principal do título */
.blog-header {
    text-align: center;
    background-color: #fff4e3;
    padding: 40px 20px;
    color: #785d56;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.blog-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
    
}

/* Estilo do grid para layout vertical */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
    background-color: #f9f5ef;
}


.blog-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h2 {
    font-size: 1.5rem;
    color: #785d56;
    margin: 15px;
}

.blog-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 15px 15px;
}

.blog-card .btn-read-more {
    display: block;
    text-align: center;
    background-color: #785d56;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    margin: 0 15px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.blog-card .btn-read-more:hover {
    background-color: #9a756d;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Estilo geral da seção */
.blog-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 20px;
    text-align: center;
    background-color: #4ca3c2;
    border-radius: 10px;
    color: #fff;
}

/* Título da seção */
.blog-section h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

/* Estilo dos cards */
.publication-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 20px;
}

/* Imagem do card */
.publication-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* Conteúdo do card */
.publication-content {
    flex: 1;
    text-align: left;
}

/* Informação da publicação */
.publication-info {
    font-size: 14px;
    color: #e0f7fa;
    margin-bottom: 10px;
}

/* Título da publicação */
.publication-title {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin: 0;
}

.publication-link {
    text-decoration: none;
    color: inherit;
}

.publication-link:hover h3 {
    color: var(--light-gray);
    text-decoration: underline;
}

.publication-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.publication-details h4 {
    font-size: 1rem;
    color: #4ca3c2;
    margin-bottom: 10px;
}

.publication-details h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.publication-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

.publication-image-vertical {
    max-height: 800px;
    /* Limita a altura para evitar que fique muito grande */
    object-fit: cover;
    /* Ajusta para manter uma boa proporção visual */
}

.publication-details p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.btn-back-to-blog {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4ca3c2;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-back-to-blog:hover {
    background-color: #3b92a7;
}

.publication-details h3 {
    color: #4ca3c2;
    margin-top: 20px;
    font-size: 1.5rem;
}

.publication-details ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
}

.publication-details blockquote {
    font-style: italic;
    background-color: #e6f7ff;
    padding: 10px 20px;
    border-left: 5px solid #4ca3c2;
    margin: 20px 0;
}

.publication-details ul li {
    line-height: 1.8;
}

/* Padronização das listas */
.publication-container ol,
.publication-container ul {
    font-family: Montserrat;
    /* Mantém a mesma fonte do corpo do texto */
    font-size: 16px;
    /* Ajuste conforme necessário */
    color: #333;
    /* Cor do texto */
    line-height: 1.6;
    margin-left: 20px;
    /* Espaçamento lateral */
    padding-left: 20px;
    /* Espaçamento interno */
}

/* Estilo dos itens da lista */
.publication-container li {
    margin-bottom: 10px;
    /* Espaçamento entre os itens */
}

.highlight {
    background-color: var(--secondary-color);
    padding: 0 5px;
    /* Um pouco de espaçamento nas laterais */
    border-radius: 3px;
    /* Para dar um efeito mais suave */
}

main.politicas {
    padding: 100px 20px 20px 20px;
    /* 100px no topo para "empurrar" o conteúdo abaixo do header */
    line-height: 1.6;
}


.politicas h2 {
    color: #4ca3c2;
}

.planos h3 {
    color: #4ca3c2;
}

main.planos {
    padding: 100px 20px 20px 20px;
    /* top right bottom left */
    line-height: 1.6;
}


/* Responsividade para o rodapé */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-left,
    footer .footer-center,
    footer .footer-right {
        margin-top: 10px;
    }
}

/* Media query para telas menores */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
    }

    .menu.active {
        display: flex;
    }

    /* Animação do hambúrguer */
    .hamburger.active .line:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 6px);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -6px);
    }

    .rodape {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        position: relative;
    }

    .rodape .politicas {
        align-items: center;
        width: 100%;
    }

    .rodape .contato {
        width: 100%;
    }

    .rodape .redes-sociais {
        width: 100%;
    }

    .rodape .desenvolvedor {
        width: 100%;
        margin-top: 20px;
    }
}

/* Ajustes para telas muito pequenas */
@media screen and (max-width: 480px) {
    .rodape {
        padding: 30px 15px;
    }

    .rodape .contato h3,
    .rodape .redes-sociais h3 {
        font-size: 1.2rem;
    }

    .rodape .politicas a,
    .rodape .contato p {
        font-size: 0.85rem;
    }

    .rodape .direitos {
        font-size: 0.8rem;
    }
}