/* 
 * Blog Post Styles - RetorneAI
 * Arquivo CSS dedicado à formatação dos artigos do blog
 * Compatível com diversos tamanhos de tela
 */

/* Garantindo que todos os elementos sejam corretamente dimensionados */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #333;
}

/* Estilos Principais do Post */
.blog-post-content {
    padding: 120px 0 50px 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.7;
    overflow-x: visible;
}

/* Para artigos com estrutura de blog-post ao invés de blog-post-content */
.blog-post {
    padding-top: 120px;
}

.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}

/* Estilos específicos para gráficos SVG */
.chart-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 40px 0;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
}

.chart-container .responsive-image {
    padding: 10px 5px;
    max-width: 100%;
    height: auto;
    overflow: visible;
    display: block;
    margin: 0 auto;
}

/* Ajuste para garantir que as imagens SVG sejam visíveis */
svg {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    overflow: visible;
}

img.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* SVG Images specific enhancements */
.responsive-image svg {
    max-width: 100%;
    height: auto;
}

/* Cabeçalho do Artigo */
.post-header {
    margin-bottom: 32px;
    text-align: center;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
    gap: 16px;
}

.post-category {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: #0056b3;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    position: relative;
    padding-left: 12px;
    color: #555;
}

.post-date:before {
    content: '';
    height: 12px;
    width: 1px;
    background: #ddd;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.post-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}

.post-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f1f1;
    background-color: #fff;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.read-time {
    font-size: 13px;
    color: #777;
}

/* Imagens em Destaque - corrigindo as diferentes classes e suas combinações */
.featured-image, .post-featured-image, .post-image {
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px; /* Limitando a altura máxima para evitar tela inteira */
}

.featured-image img, .post-featured-image img, .post-image img {
    width: 100%;
    height: auto;
    max-height: 500px; /* Consistência com o container */
    display: block;
    object-fit: contain; /* Garante que a imagem mantenha a proporção */
    transition: transform 0.3s ease;
}

/* Quando featured-image é usado junto com chart-container, priorize os limites de tamanho */
.featured-image.chart-container {
    max-height: 500px;
    height: auto;
    width: 100%;
    max-width: 100%;
    padding: 20px;
}

.featured-image.chart-container img {
    max-height: 460px; /* Compensa o padding */
    height: auto;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
}

/* Ajustes específicos para mobile */
@media (max-width: 768px) {
    .featured-image, .post-featured-image, .post-image,
    .featured-image.chart-container {
        max-height: 400px;
    }
    
    .featured-image img, .post-featured-image img, .post-image img,
    .featured-image.chart-container img {
        max-height: 380px;
    }
}

@media (max-width: 576px) {
    .featured-image, .post-featured-image, .post-image,
    .featured-image.chart-container {
        max-height: 300px;
    }
    
    .featured-image img, .post-featured-image img, .post-image img,
    .featured-image.chart-container img {
        max-height: 280px;
    }
}

/* Placeholders para imagens que falharam ao carregar */
.image-placeholder {
    width: 100%;
    min-height: 300px;
    background-color: #f0f7ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #0056b3;
    text-align: center;
    border-radius: 6px;
    border: 1px dashed #0056b3;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: "Imagem não disponível";
    display: block;
    position: absolute;
    bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    opacity: 0.8;
}

.image-placeholder i {
    margin-bottom: 30px;
}

.image-with-caption .image-placeholder {
    min-height: 250px;
    margin-bottom: 8px;
    font-size: 40px;
}

/* Índice / Tabela de Conteúdo */
.post-toc {
    margin-bottom: 40px;
    background-color: #f9f9f9;
    padding: 24px 32px;
    border-radius: 8px;
    border-left: 4px solid #0056b3;
}

.post-toc h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.post-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-toc ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
}

.post-toc ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #0056b3;
    font-size: 18px;
    line-height: 1;
}

.post-toc a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.post-toc a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Seções do Post */
.post-section {
    margin-bottom: 70px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.post-section:last-child {
    border-bottom: none;
}

.post-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    padding-bottom: 12px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.post-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0056b3;
    border-radius: 3px;
}

.post-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 32px 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.post-section p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.highlight-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
    border-left: 3px solid #0056b3;
    padding-left: 18px;
    margin: 28px 0;
}

/* Componentes e Caixas */
.stat-box, .info-card, .formula-box, .calculation-box, .tip-box, .warning-box, .strategy-box, .example-box, .key-elements-box, .info-box {
    margin: 40px 0;
    padding: 30px;
    border-radius: 10px;
    background-color: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0056b3;
}

.stat-box {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #0056b3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-right: 25px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-caption {
    font-size: 14px;
    color: #666;
}

.formula-box, .calculation-box {
    background-color: #eef7ff;
    border-left: 4px solid #0056b3;
    padding: 16px 24px;
    font-weight: 600;
    text-align: center;
}

.calculation-box {
    background-color: #f0f9f0;
    border-left: 4px solid #28a745;
}

.warning-box {
    background-color: #fff7f7;
    border-left: 4px solid #e03131;
}

.warning-box h3 {
    color: #e03131;
    margin-top: 0;
}

.warning-box h4 {
    color: #dc3545;
}

/* Containers para elementos gráficos e interativos */
.image-with-caption {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.image-with-caption img {
    width: 100%;
    display: block;
}

.image-caption {
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    background-color: #f8f9fa;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Layout para causas */
.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.cause-item {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cause-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.cause-icon {
    color: #0056b3;
    font-size: 28px;
    margin-bottom: 16px;
}

.cause-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.cause-item p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* CTA e Compartilhamento */
.mid-article-cta {
    background-color: #f0f7ff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mid-article-cta h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #222;
}

.mid-article-cta p {
    font-size: 16px;
    margin-bottom: 24px;
}

.mid-article-cta .btn-primary {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.mid-article-cta .btn-primary:hover {
    background-color: #004494;
}

.social-sharing {
    margin-top: 24px;
}

.social-sharing span {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #555;
    margin: 0 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Cards de Estratégia */
.strategy-card {
    display: flex;
    gap: 30px;
    margin: 35px 0;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    align-items: flex-start;
}

.strategy-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0056b3;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.strategy-content {
    flex-grow: 1;
}

.strategy-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.strategy-content ul, .strategy-content ol {
    padding-left: 20px;
}

.strategy-content li {
    margin-bottom: 10px;
}

/* Sequência de Steps */
.sequence-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 35px 0;
}

.sequence-step {
    display: flex;
    gap: 25px;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0056b3;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 86, 179, 0.2);
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    color: #333;
}

.step-content p {
    margin: 0 0 15px;
    color: #555;
}

/* Grid de Gatilhos */
.triggers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    margin: 28px 0;
}

.trigger-item {
    text-align: center;
    padding: 24px 16px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.trigger-item:hover {
    transform: translateY(-5px);
}

.trigger-icon {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 16px;
}

.trigger-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.trigger-item p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* Comparativo de Experiência */
.experience-upgrade {
    display: flex;
    align-items: stretch;
    margin: 32px 0;
    gap: 20px;
}

.experience-before, .experience-after {
    flex: 1;
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.experience-before h4, .experience-after h4 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
}

.experience-before h4 {
    color: #666;
}

.experience-after h4 {
    color: #0056b3;
}

.experience-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0056b3;
}

/* Blocos IA vs Humano */
.ai-human-balance {
    display: flex;
    gap: 24px;
    margin: 32px 0;
}

.ai-side, .human-side {
    flex: 1;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ai-side h4, .human-side h4 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
}

.ai-side h4 {
    color: #0056b3;
}

.human-side h4 {
    color: #28a745;
}

.ai-side ul, .human-side ul {
    padding-left: 20px;
}

.ai-side li, .human-side li {
    margin-bottom: 10px;
}

/* Caixas de Citação */
.quote-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid #0056b3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.quote-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 40px;
    line-height: 1;
    color: #0056b3;
    opacity: 0.5;
}

.quote-author {
    font-size: 14px;
    color: #666;
    text-align: right;
    font-weight: 600;
}

.highlight-quote {
    background-color: rgba(0, 86, 179, 0.05);
    border-left-color: #0056b3;
}

.highlight-quote .quote-text {
    color: #0056b3;
}

/* Case Study */
.case-study-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.case-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.case-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.case-intro {
    flex-grow: 1;
}

.case-intro h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 24px;
}

.case-intro p {
    margin: 0;
}

.case-challenge {
    margin-bottom: 32px;
}

.before-after-metrics {
    display: flex;
    gap: 24px;
    margin: 28px 0;
}

.before-metrics, .after-metrics {
    flex: 1;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.before-metrics h4, .after-metrics h4 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
}

.before-metrics h4 {
    color: #dc3545;
}

.after-metrics h4 {
    color: #28a745;
}

.before-metrics ul, .after-metrics ul {
    list-style: none;
    padding: 0;
}

.before-metrics li, .after-metrics li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.metric {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-right: 10px;
    min-width: 80px;
    display: inline-block;
}

.after-metrics .metric {
    color: #28a745;
}

.solution-implementation {
    margin-bottom: 32px;
}

.results-visual {
    margin: 32px 0;
    text-align: center;
}

.results-visual img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.key-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.result-item {
    text-align: center;
    padding: 24px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.result-item:hover {
    transform: translateY(-3px);
}

.result-number {
    font-size: 32px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 10px;
}

.result-description {
    font-size: 15px;
    color: #666;
}

.insight-box {
    background-color: #f0f7ff;
    padding: 24px 32px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid #0056b3;
}

.insight-box h4 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #333;
}

.insight-box ul {
    padding-left: 20px;
}

.insight-box li {
    margin-bottom: 12px;
}

/* Guia de Implementação */
.implementation-guide {
    margin: 32px 0;
}

.guide-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.guide-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0056b3;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.guide-content {
    flex-grow: 1;
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.guide-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 20px;
}

.tool-tip, .example-box, .optimization-tip {
    background-color: #f9f9f9;
    padding: 16px 24px;
    border-radius: 6px;
    margin-top: 20px;
}

.tool-tip h4, .example-box h4, .optimization-tip h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.tool-tip p, .example-box p, .optimization-tip p {
    margin-bottom: 0;
}

.options-comparison {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.option {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.option h4 {
    margin-top: 0;
    margin-bottom: 16px;
    text-align: center;
}

.option p {
    margin-bottom: 10px;
}

.option-divider {
    margin: 0 20px;
    font-weight: 700;
    color: #666;
}

.highlight-option {
    background-color: #f0f7ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.highlight-option h4 {
    color: #0056b3;
}

.timeline-box {
    margin: 40px 0;
    padding: 32px;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.timeline-box h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 32px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6px;
    width: 2px;
    background-color: #ddd;
}

.timeline-point {
    position: relative;
    margin-bottom: 32px;
}

.timeline-point:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: -30px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #0056b3;
    box-shadow: 0 0 0 4px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.timeline-content {
    background-color: #fff;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -8px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    transform: rotate(45deg);
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.03);
}

.timeline-content h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #0056b3;
}

.timeline-content p {
    margin: 0;
    color: #666;
}

.cta-box {
    background-color: #0056b3;
    background-image: linear-gradient(135deg, #0056b3, #004494);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 86, 179, 0.3);
}

.cta-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #0056b3;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* Pontos Chave */
.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.key-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.key-point:hover {
    transform: translateY(-5px);
}

.key-content {
    flex-grow: 1;
}

.key-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.key-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.final-thought {
    background-color: #f0f7ff;
    padding: 32px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid #0056b3;
}

.final-thought blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.final-cta {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.final-cta h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
}

.final-cta p {
    font-size: 16px;
    margin-bottom: 24px;
}

.btn-large {
    padding: 14px 40px;
    font-size: 16px;
}

/* Artigos Relacionados */
.related-articles {
    margin: 60px 0 40px;
}

.related-articles h3 {
    margin-bottom: 24px;
    text-align: center;
    font-size: 24px;
}

.related-posts {
    margin: 60px 0 40px;
}

.related-posts h3 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
}

.related-posts-container {
    margin-top: 60px;
    margin-bottom: 40px;
}

.related-posts-container h3 {
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #222;
    text-align: center;
}

.related-posts-container h3:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #0056b3;
    transform: translateX(-50%);
}

.related-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post {
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.related-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #f0f0f0;
}

.related-post h4 {
    font-size: 18px;
    padding: 20px 20px 10px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

.related-post p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #666;
}

.related-post a {
    color: #333;
    text-decoration: none;
}

.related-post a:hover h4 {
    color: #0056b3;
}

/* Sharing section */
.share-section {
    margin: 40px 0;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.share-section p {
    margin-bottom: 15px;
    color: #666;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.facebook {
    background-color: #1877F2;
}

.twitter {
    background-color: #1DA1F2;
}

.linkedin {
    background-color: #0A66C2;
}

.whatsapp {
    background-color: #25D366;
}

/* Media Queries para Responsividade */
@media (max-width: 992px) {
    .post-title {
        font-size: 2.2rem;
    }
    
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .section-divider {
        font-size: 28px;
    }
    
    .stat-box {
        padding: 25px;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .cta-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .post-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .section-divider {
        font-size: 24px;
        margin: 40px 0 25px;
        padding-bottom: 12px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .post-date:before {
        display: none;
    }
    
    .post-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .featured-image, .post-featured-image, .post-image,
    .featured-image.chart-container {
        max-height: 400px;
    }
    
    .featured-image img, .post-featured-image img, .post-image img,
    .featured-image.chart-container img {
        max-height: 380px;
    }
    
    .image-with-caption {
        margin: 30px -15px;
        border-radius: 0;
    }
    
    .chart-container {
        margin: 30px -15px;
        border-radius: 0;
        padding: 10px;
    }
    
    .chart-container .responsive-image {
        padding: 5px 0;
    }
    
    .stat-box {
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .quote-box {
        padding: 25px 20px;
    }
    
    .quote-text {
        font-size: 16px;
        padding-left: 20px;
    }
    
    .related-posts {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .related-post img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .post-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .chart-container,
    .image-with-caption {
        margin: 20px -15px;
    }
    
    .quote-box {
        padding: 20px 15px;
    }
    
    .quote-text {
        font-size: 15px;
    }
    
    .cta-box {
        padding: 30px 20px;
        margin: 40px 0;
        border-radius: 10px;
    }
    
    .cta-box h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .cta-box p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 15px;
        width: 100%;
    }
    
    .quote-text {
        font-size: 15px;
    }
    
    .related-post h4 {
        font-size: 16px;
        padding: 15px 15px 5px;
    }
    
    .related-post p {
        padding: 0 15px 15px;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

/* Grids e layouts de elementos */
.tips-grid, .channels-grid, .value-offers-grid, .key-elements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 35px 0;
}

.tip-item, .channel-item, .offer-item, .element-item {
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-item:hover, .channel-item:hover, .offer-item:hover, .element-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tip-icon, .channel-icon, .offer-icon, .element-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e7f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #0056b3;
    font-size: 24px;
}

.tip-item h3, .channel-item h3, .offer-item h3, .element-item h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 12px;
}

/* Case study containers */
.case-study {
    padding: 30px;
    margin: 40px 0;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0056b3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-study-title {
    font-size: 1.4rem;
    color: #0056b3;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.case-result {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(0, 86, 179, 0.05);
    border-radius: 8px;
    font-weight: 500;
}

/* Challenges container */
.challenges-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.challenge-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.challenge-item h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.challenge-item h4 i {
    color: #0056b3;
}

/* Grid layouts */
.tech-grid, .key-elements-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tech-item, .key-element {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-item:hover, .key-element:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .case-study {
        padding: 25px 20px;
        margin: 30px 0;
        border-radius: 10px;
    }
    
    .challenge-item {
        padding: 20px;
    }
    
    .tech-item, .key-element {
        padding: 20px;
    }
    
    .tech-grid, .key-elements-container {
        gap: 20px;
        margin: 30px 0;
    }
    
    .challenges-container {
        gap: 20px;
        margin: 30px 0;
    }
}

@media (max-width: 576px) {
    .case-study {
        padding: 20px 15px;
        margin: 25px 0;
        border-radius: 8px;
    }
    
    .challenge-item {
        padding: 15px;
    }
    
    .tech-item, .key-element {
        padding: 15px;
    }
    
    .chart-container {
        padding: 15px 10px;
        border-radius: 0;
        margin: 25px -15px;
        width: calc(100% + 30px);
    }
}

/* Journey Steps / Etapas da Jornada */
.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #e7f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0056b3;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.step-content p {
    margin-bottom: 10px;
    color: #555;
}

.step-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .journey-step {
        flex-direction: column;
        padding: 20px;
        align-items: center;
        text-align: center;
    }
    
    .step-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .journey-steps {
        gap: 15px;
    }
    
    .journey-step {
        padding: 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Aspects Container / Contêiner de Aspectos */
.aspects-container {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.aspect-box {
    flex: 1;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #0056b3;
}

.aspect-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.aspect-box h4 i {
    color: #0056b3;
    font-size: 20px;
}

.aspect-box ul.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aspect-box ul.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
}

.aspect-box ul.custom-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0056b3;
    font-weight: bold;
}

@media (max-width: 768px) {
    .aspects-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .aspect-box {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .aspect-box {
        padding: 15px;
    }
    
    .aspect-box h4 {
        font-size: 16px;
    }
}

/* Tech grid item components */
.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e7f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 15px;
}

.tech-content {
    flex: 1;
}

.tech-content h4 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.tech-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

.tech-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .tech-icon {
        margin: 0 auto 15px;
    }
    
    .tech-item {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Custom list styles */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
}

.custom-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #0056b3;
    font-weight: bold;
}

.custom-list li strong {
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    .custom-list li {
        padding-left: 22px;
    }
    
    .custom-list li:before {
        top: 0;
    }
}

/* Element content styles */
.element-content {
    flex: 1;
}

.element-content h4 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.element-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

.element-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .element-content {
        text-align: center;
    }
}

/* Case studies container */
.case-studies-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .case-studies-container {
        gap: 20px;
    }
}

/* Section Divider for Headings */
.section-divider {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 50px 0 30px;
    padding-bottom: 15px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid #eee;
}

.section-divider:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0056b3, #0073e6);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .section-divider {
        font-size: 24px;
        margin: 40px 0 25px;
        padding-bottom: 12px;
    }
}

@media (max-width: 576px) {
    .section-divider {
        font-size: 22px;
        margin: 35px 0 20px;
        padding-bottom: 10px;
    }
} 