<!DOCTYPE html> <html lang=”pt-BR”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Crie Podcasts de Impacto: Descubra o Estúdio Ideal para Mesacast em São Paulo</title> <link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css”> <style> :root { –primary-color: #0055a4; –accent-color: #ff4500; –text-color: #333; –light-gray: #f5f5f5; –medium-gray: #e0e0e0; –dark-gray: #666; –font-main: ‘Segoe UI’, Roboto, Oxygen, Ubuntu, Cantarell, ‘Helvetica Neue’, sans-serif; –border-radius: 8px; –box-shadow: 0 4px 8px rgba(0,0,0,0.1); –transition: all 0.3s ease; } * { margin: 0; padding: 0; box-sizing: border-box; font-family: var(–font-main); } body { background-color: #f9f9f9; color: var(–text-color); line-height: 1.6; } /* Category Header – Full Width */ .category-header { background: var(–primary-color); background: linear-gradient(90deg, rgba(0,69,158,1) 0%, rgba(0,85,164,1) 50%, rgba(0,105,196,1) 100%); color: white; text-align: center; padding: 18px 0; width: 100%; font-size: 24px; font-weight: bold; letter-spacing: 1.5px; text-transform: uppercase; box-shadow: 0 4px 12px rgba(0,0,0,0.15); position: relative; z-index: 100; margin-bottom: 0; } /* Featured Image */ .featured-image { width: 100%; height: 400px; overflow: hidden; position: relative; margin-bottom: 2rem; } .featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .featured-image:hover img { transform: scale(1.02); } .featured-image::after { content: ”; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%); } /* Article Container */ .article-container { max-width: 1000px; margin: 0 auto; background-color: white; border-radius: var(–border-radius); box-shadow: var(–box-shadow); overflow: hidden; position: relative; margin-top: 30px; z-index: 10; } .article-wrapper { padding: 40px; } /* Article Meta */ .article-meta { display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; text-align: center; } .article-category { display: inline; background-color: transparent; padding: 4px 8px 4px 0; color: #888; font-size: 12px; font-weight: 400; letter-spacing: 0.5px; border: none; } .article-date { color: #888; font-size: 12px; display: inline; font-weight: 400; } .article-date i { margin-right: 5px; color: #888; } /* Article Title */ .article-title { font-size: 2.5rem; line-height: 1.2; margin: 1.5rem 0; color: #222; font-weight: 800; letter-spacing: -0.5px; text-align: center; } /* Byline – Author Info with small avatar */ .article-byline { display: flex; align-items: center; justify-content: center; margin: 15px 0 25px; font-size: 12px; color: #888; } .author-small-avatar { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; margin-right: 10px; border: 1px solid #eee; } .author-small-avatar img { width: 100%; height: 100%; object-fit: cover; } .article-byline strong { font-weight: 600; color: #444; } /* Responsive */ @media (max-width: 992px) { .article-wrapper { padding: 30px; } .featured-image { height: 350px; } .article-title { font-size: 2.2rem; } } @media (max-width: 768px) { .article-wrapper { padding: 25px; } .featured-image { height: 300px; } .article-title { font-size: 1.8rem; } .article-author { flex-direction: column; text-align: center; padding: 15px; } .author-avatar { margin-right: 0; margin-bottom: 15px; } } @media (max-width: 576px) { .article-wrapper { padding: 20px; } .featured-image { height: 250px; } .article-meta { flex-direction: column; align-items: flex-start; } .article-category { margin-bottom: 10px; } .article-date { padding-left: 0; } .article-title { font-size: 1.5rem; margin: 1rem 0; } } </style> </head> <body> <!– Categoria em full width no cabeçalho –> <header class=”category-header”> MARKETING DIGITAL </header> <!– Container do artigo –> <main class=”article-container”> <div class=”article-wrapper”> <!– Meta informações do artigo –> <div class=”article-meta”> <span class=”article-category”>PUBLIEDITORIAL</span> <span class=”article-date”>13 DE MAIO DE 2025 • ATUALIZADO HÁ 2 HORAS</span> </div> <!– Título do artigo –> <h1 class=”article-title”>Crie Podcasts de Impacto: Descubra o Estúdio Ideal para Mesacast em São Paulo</h1> <!– Informações do autor com avatar –> <div class=”article-byline”> <div class=”author-small-avatar”> <img src=”/api/placeholder/32/32″ alt=”Avatar de Rafael Oliveira”> </div> <span>Por <strong>Rafael Oliveira</strong> • 8 min de leitura</span> </div> </div> </main> </body> </html>