

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a050f 0%, #1a0f2a 30%, #2d1a3f 70%, #1f0f2f 100%);
    color: #f0e6ff;
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Efeito de fundo com ametistas e brilho */
body::before {
    content: "💜";
    font-size: 250px;
    position: fixed;
    top: 10%;
    right: -50px;
    opacity: 0.03;
    transform: rotate(25deg);
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 20px #9b59b6);
}

body::after {
    content: "CLARA ZETKIN";
    font-size: 150px;
    font-weight: 900;
    position: fixed;
    bottom: 5%;
    right: -100px;
    opacity: 0.02;
    transform: rotate(-15deg);
    letter-spacing: 15px;
    color: #c39bd3;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: 'Cormorant Garamond', serif;
}

/* Partículas roxas flutuando */
@keyframes flutuarParticulas {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-20vh) scale(1) rotate(360deg);
        opacity: 0;
    }
}

.particula {
    position: fixed;
    font-size: 1.2rem;
    animation: flutuarParticulas linear infinite;
    z-index: 1;
    pointer-events: none;
    color: rgba(155, 89, 182, 0.3);
    text-shadow: 0 0 15px #9b59b6;
}

.particula:nth-child(1) { left: 5%; animation-duration: 15s; animation-delay: 0s; }
.particula:nth-child(2) { left: 15%; animation-duration: 18s; animation-delay: 2s; }
.particula:nth-child(3) { left: 25%; animation-duration: 20s; animation-delay: 4s; }
.particula:nth-child(4) { left: 35%; animation-duration: 16s; animation-delay: 1s; }
.particula:nth-child(5) { left: 45%; animation-duration: 22s; animation-delay: 3s; }
.particula:nth-child(6) { left: 55%; animation-duration: 17s; animation-delay: 5s; }
.particula:nth-child(7) { left: 65%; animation-duration: 19s; animation-delay: 2.5s; }
.particula:nth-child(8) { left: 75%; animation-duration: 21s; animation-delay: 4.5s; }
.particula:nth-child(9) { left: 85%; animation-duration: 16s; animation-delay: 6s; }
.particula:nth-child(10) { left: 95%; animation-duration: 23s; animation-delay: 1.5s; }

/* Cabeçalho com gradiente roxo luxuoso */
header {
    background: linear-gradient(135deg, #2e1b45 0%, #4a266a 40%, #6b3f8c 70%, #8e5cb1 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(155, 89, 182, 0.5);
    border-bottom: 3px solid #d4af37;
}

/* Efeito de estrelas cintilantes */
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 40% 50%, rgba(155, 89, 182, 0.2) 0%, transparent 30%);
    animation: cintilar 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cintilar {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Flores roxas caindo */
@keyframes cairFloresRoxas {
    0% {
        transform: translateY(-20%) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(720deg) scale(1.2);
        opacity: 0;
    }
}

.flor-caindo {
    position: absolute;
    font-size: 2rem;
    animation: cairFloresRoxas linear infinite;
    z-index: 5;
    filter: drop-shadow(0 0 10px #d4af37);
    opacity: 0;
}

.flor-caindo:nth-child(1) { left: 2%; animation-duration: 12s; animation-delay: 0s; content: "🌸"; color: #c39bd3; }
.flor-caindo:nth-child(2) { left: 8%; animation-duration: 14s; animation-delay: 1.5s; content: "🌺"; color: #b39ddb; }
.flor-caindo:nth-child(3) { left: 15%; animation-duration: 16s; animation-delay: 2.8s; content: "🌷"; color: #ce93d8; }
.flor-caindo:nth-child(4) { left: 22%; animation-duration: 13s; animation-delay: 4.2s; content: "🌼"; color: #e1bee7; }
.flor-caindo:nth-child(5) { left: 30%; animation-duration: 18s; animation-delay: 1.2s; content: "🌹"; color: #ba68c8; }
.flor-caindo:nth-child(6) { left: 38%; animation-duration: 15s; animation-delay: 3.5s; content: "🌸"; color: #ab47bc; }
.flor-caindo:nth-child(7) { left: 45%; animation-duration: 17s; animation-delay: 5s; content: "🌺"; color: #9c27b0; }
.flor-caindo:nth-child(8) { left: 52%; animation-duration: 14s; animation-delay: 2.2s; content: "🌷"; color: #8e24aa; }
.flor-caindo:nth-child(9) { left: 60%; animation-duration: 19s; animation-delay: 3.8s; content: "🌼"; color: #7b1fa2; }
.flor-caindo:nth-child(10) { left: 68%; animation-duration: 16s; animation-delay: 4.5s; content: "🌹"; color: #6a1b9a; }
.flor-caindo:nth-child(11) { left: 75%; animation-duration: 13s; animation-delay: 1.8s; content: "🌸"; color: #c39bd3; }
.flor-caindo:nth-child(12) { left: 82%; animation-duration: 18s; animation-delay: 3.2s; content: "🌺"; color: #b39ddb; }
.flor-caindo:nth-child(13) { left: 90%; animation-duration: 15s; animation-delay: 5.5s; content: "🌷"; color: #ce93d8; }
.flor-caindo:nth-child(14) { left: 95%; animation-duration: 17s; animation-delay: 2.5s; content: "🌼"; color: #e1bee7; }
.flor-caindo:nth-child(15) { left: 12%; animation-duration: 20s; animation-delay: 4.8s; content: "🌹"; color: #ba68c8; }

.cabecalho-container {
    position: relative;
    z-index: 20;
}

.cabecalho-container h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 700;
    color: #f8f0ff;
    text-shadow: 
        3px 3px 0 #4a266a,
        6px 6px 0 #2e1b45,
        9px 9px 20px rgba(0,0,0,0.6),
        0 0 30px #d4af37;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: brilhoRoxo 3s ease-in-out infinite;
}

@keyframes brilhoRoxo {
    0%, 100% { text-shadow: 3px 3px 0 #4a266a, 6px 6px 0 #2e1b45, 9px 9px 20px rgba(0,0,0,0.6), 0 0 30px #d4af37; }
    50% { text-shadow: 3px 3px 0 #6b3f8c, 6px 6px 0 #4a266a, 9px 9px 30px rgba(0,0,0,0.8), 0 0 50px #f1c40f; }
}

.subtitulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: #e6d9ff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
    background: rgba(46, 27, 69, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    border: 1px solid #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.subtitulo::before,
.subtitulo::after {
    content: "💜";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    animation: pulsarRoxo 2s ease-in-out infinite;
}

.subtitulo::before {
    left: -30px;
}

.subtitulo::after {
    right: -30px;
}

@keyframes pulsarRoxo {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.8; }
    50% { transform: translateY(-50%) scale(1.2); opacity: 1; color: #d4af37; }
}

/* Menu de navegação roxo elegante */
nav {
    background: linear-gradient(90deg, #1a0f1f, #2d1a35, #1a0f1f);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 5px 25px rgba(0,0,0,0.6), 0 0 20px rgba(155, 89, 182, 0.3);
}

.menu-navegacao {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.menu-navegacao a {
    color: #e6d9ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(46, 27, 69, 0.3);
    backdrop-filter: blur(5px);
}



.menu-navegacao a:hover::before,
.menu-navegacao a.active::before {
    left: 0;
}

.menu-navegacao a:hover,
.menu-navegacao a.active {
    color: #fff;
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4), 0 0 20px #d4af37;
}

/* Conteúdo principal */
main {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Estilos específicos para a página de legado */
.conteudo-legado {
    background: rgba(26, 15, 31, 0.6);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.6),
        inset 0 0 50px rgba(155, 89, 182, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.conteudo-legado::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1), transparent 30%),
                radial-gradient(circle at 70% 70%, rgba(155, 89, 182, 0.1), transparent 30%);
    animation: rotacaoLenta 20s linear infinite;
    z-index: -1;
}

@keyframes rotacaoLenta {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Seção de introdução do legado */
.legado-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(46, 27, 69, 0.3);
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .legado-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Imagem do legado */
.imagem-legado {
    position: relative;
    overflow: hidden;
    border-radius: 30px 30px 30px 0;
}

.imagem-legado::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid #d4af37;
    border-radius: 30px 30px 30px 0;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: brilhoBorda 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes brilhoBorda {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.foto-legado {
    width: 100%;
    max-width: 300px;
    border-radius: 30px 30px 30px 0;
    border: 4px solid #d4af37;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.6),
        0 0 0 6px rgba(155, 89, 182, 0.4),
        0 0 40px #9b59b6;
    transition: all 0.5s;
    filter: grayscale(20%) sepia(10%) brightness(1.1);
    display: block;
}

.foto-legado:hover {
    transform: scale(1.03);
    filter: grayscale(0%) sepia(0%) brightness(1.2);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.7),
        0 0 0 10px rgba(212, 175, 55, 0.5),
        0 0 60px #d4af37;
}

/* Legado contemporâneo - cards */
.legado-contemporaneo {
    margin: 4rem 0;
}

.card-legado {
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.2), rgba(155, 89, 182, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 2rem;
    margin: 1.5rem 0;
    backdrop-filter: blur(8px);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(155, 89, 182, 0.2);
}

.card-legado::before {
    content: "💜";
    font-size: 4rem;
    position: absolute;
    bottom: -10px;
    right: -10px;
    opacity: 0.1;
    transform: rotate(15deg);
    transition: all 0.4s;
}

.card-legado:hover {
    transform: translateY(-5px) translateX(5px);
    border-color: #d4af37;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 40px rgba(155, 89, 182, 0.4);
}

.card-legado:hover::before {
    opacity: 0.2;
    transform: rotate(0deg) scale(1.2);
}

.card-legado h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px #9b59b6;
}

.card-legado p {
    color: #f0e6ff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    border: none;
}

.card-legado p:hover {
    transform: none;
    border: none;
}

/* Seção de reconhecimentos */
.reconhecimentos {
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(46, 27, 69, 0.3);
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.lista-homenagens {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.lista-homenagens li {
    background: rgba(26, 15, 31, 0.6);
    padding: 1.5rem;
    border-radius: 20px;
    border-left: 5px solid #d4af37;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    font-size: 1.1rem;
    color: #f0e6ff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.lista-homenagens li:hover {
    transform: translateY(-3px) translateX(3px);
    background: rgba(74, 38, 106, 0.6);
    border-left-width: 8px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.lista-homenagens li strong {
    color: #d4af37;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Grid de atualidade */
.grid-atualidade {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.item-atualidade {
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.2), rgba(155, 89, 182, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.item-atualidade::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1), transparent 50%);
    animation: rotacaoLenta 15s linear infinite;
    z-index: -1;
}

.item-atualidade:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px #9b59b6;
}

.item-atualidade h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px #9b59b6;
}

.item-atualidade p {
    color: #f0e6ff;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    border: none;
}

.item-atualidade p:hover {
    transform: none;
    border: none;
}

/* Chamada para ação */
.chamada-acao {
    margin: 4rem 0 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #2e1b45, #4a266a);
    border-radius: 40px 40px 40px 0;
    text-align: center;
    border: 3px solid #d4af37;
    box-shadow: 
        0 20px 0 #d4af37,
        0 30px 40px rgba(0,0,0,0.5),
        0 0 60px #9b59b6;
    position: relative;
    overflow: hidden;
}

.chamada-acao::before {
    content: "💜";
    font-size: 15rem;
    position: absolute;
    bottom: -30px;
    right: -20px;
    opacity: 0.1;
    transform: rotate(15deg);
    animation: pulsarRoxo 3s ease-in-out infinite;
}

.chamada-acao h3 {
    font-size: 2.5rem;
    color: #f8f0ff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0 #4a266a, 0 0 30px #d4af37;
}

.chamada-acao p {
    font-size: 1.3rem;
    color: #f0e6ff;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0;
    border: none;
    line-height: 1.8;
}

.chamada-acao p:hover {
    transform: none;
    border: none;
}

.mensagem-final {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid #d4af37;
    backdrop-filter: blur(5px);
    margin-top: 2rem;
}

.mensagem-final p {
    font-size: 1.5rem;
    font-style: italic;
    color: #f8f0ff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 30px #d4af37;
}

/* Títulos */
.titulo-secao {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #f0e6ff;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
    text-shadow: 3px 3px 0 #4a266a, 0 0 20px #9b59b6;
}

.titulo-secao::before {
    content: "✧";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
    color: #d4af37;
    animation: piscarRoxo 1.8s ease-in-out infinite;
    text-shadow: 0 0 20px #9b59b6;
}

@keyframes piscarRoxo {
    0%, 100% { opacity: 0.8; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); color: #f1c40f; }
}

.titulo-secao::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 2rem;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #9b59b6, #d4af37);
    border-radius: 3px;
    animation: expandirLinhaRoxa 3s ease-in-out infinite;
    box-shadow: 0 0 15px #d4af37;
}

@keyframes expandirLinhaRoxa {
    0%, 100% { width: 150px; opacity: 0.7; }
    50% { width: 250px; opacity: 1; }
}

/* Títulos h3 */
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #f0e6ff;
    margin: 2.8rem 0 1.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 0 #4a266a;
}

h3::before {
    content: "💜";
    font-size: 2rem;
    margin-right: 12px;
    opacity: 0.9;
    animation: balancarRoxo 2.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes balancarRoxo {
    0%, 100% { transform: rotate(-8deg) scale(1); }
    50% { transform: rotate(8deg) scale(1.1); color: #d4af37; }
}

h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 3rem;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, transparent);
    border-radius: 3px;
}

/* Parágrafos gerais */
p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.8;
    position: relative;
    padding-left: 1.2rem;
    border-left: 3px solid rgba(212, 175, 55, 0.4);
    transition: all 0.3s;
}

p:hover {
    border-left-color: #d4af37;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Rodapé roxo */
footer {
    background: linear-gradient(135deg, #0a050f, #1a0f1f, #2d1a35);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 4px solid #d4af37;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
}

footer::before {
    content: "💜💜💜";
    font-size: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.03;
    animation: girarLentoRoxo 25s linear infinite;
    color: #d4af37;
}

@keyframes girarLentoRoxo {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1), transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(155, 89, 182, 0.1), transparent 50%);
    pointer-events: none;
}

footer p {
    border: none;
    margin: 0.7rem 0;
    color: rgba(240, 230, 255, 0.8);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

footer p:first-child {
    font-size: 1.4rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px #9b59b6;
}

footer p:hover {
    transform: none;
    border: none;
}

/* Scrollbar roxa */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #1a0f1f;
    border: 1px solid #d4af37;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6b3f8c, #9b59b6);
    border-radius: 10px;
    border: 2px solid #d4af37;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #9b59b6, #d4af37);
}

/* Responsividade */
@media (max-width: 768px) {
    .cabecalho-container h1 {
        font-size: 3.5rem;
    }
    
    .subtitulo {
        font-size: 1.5rem;
    }
    
    .titulo-secao {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    .chamada-acao h3 {
        font-size: 2rem;
    }
    
    .chamada-acao p {
        font-size: 1.1rem;
    }
    
    .mensagem-final p {
        font-size: 1.2rem;
    }
    
    .menu-navegacao {
        gap: 0.8rem;
    }
    
    .menu-navegacao a {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
    }
    
    .lista-homenagens {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cabecalho-container h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .subtitulo {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
    
    .conteudo-legado {
        padding: 1.5rem;
    }
    
    .titulo-secao {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .card-legado h4,
    .item-atualidade h4 {
        font-size: 1.5 rem;
    }}