ACONTECIMENTOS DA REPÚBLICA DO CAPIM MARINHO

De Micropedia
Revisão de 03h46min de 28 de agosto de 2026 por GabrielPelaes (discussão | contribs) (Criou página com '<!DOCTYPE html> <html lang="pt-BR"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>História Política do Capim M...')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para navegação Ir para pesquisar

<!DOCTYPE html> <html lang="pt-BR"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>História Política do Capim Marinho — 2026 | Micropedia</title>

<meta name="description" content="Cronologia política, econômica, militar e eleitoral do Reino do Capim Marinho entre março e julho de 2026.">

<style>

root {
   --bg: #f4f6f8;
   --card: #ffffff;
   --text: #202122;
   --muted: #667085;
   --primary: #263238;
   --secondary: #455a64;
   --accent: #1976d2;
   --gold: #c79a2b;
   --green: #218739;
   --red: #c62828;
   --border: #d9dee3;
   --shadow: 0 4px 16px rgba(0,0,0,.08);

}

  • {
   box-sizing: border-box;

}

html {

   scroll-behavior: smooth;

}

body {

   margin: 0;
   font-family: Arial, Helvetica, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.65;

}

/* CABEÇALHO */

header {

   background: linear-gradient(135deg, #172027, #37474f);
   color: white;
   padding: 42px 20px;
   border-bottom: 5px solid var(--gold);

}

.header-content {

   max-width: 1200px;
   margin: auto;

}

.badge {

   display: inline-block;
   background: var(--gold);
   color: white;
   padding: 6px 13px;
   border-radius: 20px;
   font-size: 13px;
   font-weight: bold;
   margin-bottom: 12px;

}

header h1 {

   font-size: clamp(28px, 5vw, 48px);
   margin: 0 0 12px;

}

header p {

   max-width: 850px;
   color: #e5e7eb;
   font-size: 17px;

}

/* MENU */

nav {

   position: sticky;
   top: 0;
   z-index: 100;
   background: #ffffff;
   border-bottom: 1px solid var(--border);
   box-shadow: 0 2px 8px rgba(0,0,0,.06);

}

.nav-inner {

   max-width: 1200px;
   margin: auto;
   display: flex;
   gap: 8px;
   overflow-x: auto;
   padding: 10px 15px;

}

nav a {

   color: var(--primary);
   text-decoration: none;
   white-space: nowrap;
   font-size: 14px;
   font-weight: bold;
   padding: 9px 13px;
   border-radius: 6px;

}

nav a:hover {

   background: #eef2f5;
   color: var(--accent);

}

/* CONTEÚDO */

.container {

   max-width: 1200px;
   margin: 30px auto;
   padding: 0 18px;

}

article {

   background: var(--card);
   border: 1px solid var(--border);
   border-radius: 10px;
   padding: clamp(20px, 4vw, 40px);
   box-shadow: var(--shadow);

}

h2 {

   margin-top: 45px;
   border-bottom: 2px solid var(--border);
   padding-bottom: 10px;
   color: var(--primary);

}

h3 {

   color: var(--secondary);
   margin-top: 30px;

}

/* RESUMO */

.infobox {

   border-left: 5px solid var(--gold);
   background: #faf8f1;
   padding: 20px;
   margin: 25px 0;
   border-radius: 5px;

}

.infobox strong {

   color: var(--primary);

}

/* CARDS */

.cards {

   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
   gap: 15px;
   margin: 25px 0;

}

.card {

   background: white;
   border: 1px solid var(--border);
   border-radius: 9px;
   padding: 20px;
   box-shadow: 0 2px 8px rgba(0,0,0,.05);

}

.card .number {

   font-size: 27px;
   font-weight: bold;
   color: var(--accent);

}

.card .label {

   color: var(--muted);
   font-size: 14px;

}

/* INDICADORES */

.green {

   color: var(--green);

}

.red {

   color: var(--red);

}

.gold {

   color: var(--gold);

}

/* TABELAS */

.table-wrapper {

   overflow-x: auto;
   margin: 22px 0;

}

table {

   width: 100%;
   border-collapse: collapse;
   min-width: 650px;

}

th {

   background: var(--primary);
   color: white;
   text-align: left;

}

th, td {

   padding: 12px 14px;
   border: 1px solid var(--border);

}

tr:nth-child(even) {

   background: #f7f8f9;

}

/* TIMELINE */

.timeline {

   position: relative;
   margin: 35px 0;
   padding-left: 30px;
   border-left: 4px solid var(--gold);

}

.timeline-item {

   position: relative;
   margin-bottom: 35px;
   background: #fafafa;
   padding: 18px 20px;
   border: 1px solid var(--border);
   border-radius: 8px;

}

.timeline-item::before {

   content: "";
   position: absolute;
   left: -41px;
   top: 22px;
   width: 15px;
   height: 15px;
   background: var(--gold);
   border: 4px solid white;
   border-radius: 50%;
   box-shadow: 0 0 0 1px var(--gold);

}

.timeline-date {

   font-weight: bold;
   color: var(--accent);

}

/* ALERTAS */

.alert {

   padding: 18px 20px;
   margin: 20px 0;
   border-radius: 7px;
   border-left: 5px solid;

}

.alert.warning {

   background: #fff8e1;
   border-color: #f9a825;

}

.alert.danger {

   background: #ffebee;
   border-color: var(--red);

}

.alert.success {

   background: #eaf7ed;
   border-color: var(--green);

}

/* BOTÃO */

button {

   border: none;
   background: var(--primary);
   color: white;
   padding: 11px 16px;
   border-radius: 6px;
   cursor: pointer;
   font-weight: bold;

}

button:hover {

   background: var(--accent);

}

/* RODAPÉ */

footer {

   margin-top: 40px;
   background: #202a30;
   color: #d8dde0;
   padding: 35px 20px;
   text-align: center;

}

footer strong {

   color: white;

}

/* MOBILE */

@media (max-width: 650px) {

   header {
       padding: 30px 17px;
   }
   article {
       padding: 18px;
   }
   h2 {
       font-size: 23px;
   }
   .timeline {
       padding-left: 22px;
   }
   .timeline-item::before {
       left: -33px;
   }

} </style> </head>

<body>

<header>

       MICROPEDIA • ARQUIVO HISTÓRICO

O Reino do Capim Marinho em 2026

Ascensão, crise econômica, rearticulação política, eleições e transformações militares entre março e julho de 2026.

</header>

<nav>

</nav>

<main class="container">

<article>

<section id="visao-geral">

Visão geral

Período analisado: 21 de março a 6 de julho de 2026
Regime: Monarquia do Reino do Capim Marinho
Principal personagem: Paola Vitória
Temas centrais: política, economia, defesa, eleições e sucessão.