<path>manifesto.css</path>
<content>/* ===== ESTILOS ESPECÍFICOS DA PÁGINA MANIFESTO ===== */

/* Container */
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 2rem;
}
/* ===== HERO DO MANIFESTO ===== */
.manifesto-hero {
min-height: 70vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 10rem 2rem 6rem;
background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
border-bottom: 1px solid var(--border-color);
}
.manifesto-tag {
display: inline-block;
color: var(--gold);
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.2em;
text-transform: uppercase;
margin-bottom: 2rem;
padding: 0.5rem 1.5rem;
border: 1px solid var(--border-color);
}
.manifesto-hero h1 {
font-size: clamp(2.5rem, 7vw, 5rem);
font-weight: 700;
line-height: 1.05;
margin-bottom: 2rem;
letter-spacing: -0.02em;
}
.manifesto-lead {
font-size: clamp(1.1rem, 2vw, 1.4rem);
color: var(--text-secondary);
font-weight: 300;
margin-bottom: 3rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.manifesto-quote {
font-size: clamp(1.2rem, 2.5vw, 1.6rem);
color: var(--gold);
font-style: italic;
font-weight: 300;
max-width: 600px;
margin: 0 auto;
position: relative;
padding: 0 2rem;
}
.manifesto-quote::before,
.manifesto-quote::after {
content: '"';
font-size: 3rem;
color: var(--gold);
opacity: 0.4;
position: absolute;
font-family: Georgia, serif;
}
.manifesto-quote::before {
top: -1rem;
left: 0;
}
.manifesto-quote::after {
bottom: -2rem;
right: 0;
}
/* ===== SEÇÕES GERAIS ===== */
.manifesto-section {
padding: 6rem 0;
border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.manifesto-section:last-of-type {
border-bottom: none;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
position: relative;
}
.section-number {
display: block;
color: var(--gold);
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.3em;
margin-bottom: 1.5rem;
opacity: 0.7;
}
.section-header h2 {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 700;
margin-bottom: 1rem;
letter-spacing: -0.01em;
}
.section-subtitle {
color: var(--text-secondary);
font-size: clamp(1rem, 1.5vw, 1.15rem);
max-width: 700px;
margin: 0 auto;
font-weight: 300;
}
/* ===== BLOCO DE TEXTO (PREÂMBULO E COMPROMISSO) ===== */
.text-block {
max-width: 800px;
margin: 0 auto;
}
.text-block p {
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-secondary);
margin-bottom: 1.5rem;
font-weight: 300;
}
.text-block p strong {
color: var(--text-primary);
font-weight: 500;
}
.text-block .highlight {
border-left: 2px solid var(--gold);
padding-left: 1.5rem;
margin: 2rem 0;
font-size: 1.2rem;
color: var(--text-primary);
}
.manifesto-declaration {
font-size: 1.4rem !important;
color: var(--gold) !important;
text-align: center;
margin-top: 3rem !important;
font-weight: 500 !important;
letter-spacing: 0.05em;
}
/* ===== SEÇÃO A VERDADE ===== */
.truth-grid {
display: grid;
gap: 2rem;
max-width: 900px;
margin: 0 auto;
}
.truth-card {
border: 1px solid var(--border-color);
padding: 3rem 2.5rem;
position: relative;
background-color: rgba(212, 175, 55, 0.02);
transition: var(--transition);
}
.truth-card:hover {
border-color: var(--gold);
background-color: rgba(212, 175, 55, 0.04);
transform: translateY(-3px);
}
.truth-number {
position: absolute;
top: -1rem;
left: 2.5rem;
background-color: var(--bg-primary);
color: var(--gold);
font-size: 0.85rem;
font-weight: 600;
padding: 0.3rem 1rem;
border: 1px solid var(--gold);
letter-spacing: 0.1em;
}
.truth-card h3 {
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 1.5rem;
color: var(--text-primary);
margin-top: 1rem;
}
.truth-card p {
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 1rem;
font-weight: 300;
}
.truth-conclusion {
color: var(--gold) !important;
font-style: italic;
margin-top: 1.5rem !important;
padding-top: 1.5rem;
border-top: 1px solid var(--border-color);
}
/* ===== SEÇÃO O QUE REPUDIAMOS ===== */
.repudiate-list {
max-width: 800px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.repudiate-item {
display: flex;
gap: 1.5rem;
align-items: flex-start;
padding: 1.5rem 2rem;
border-left: 2px solid var(--border-color);
transition: var(--transition);
}
.repudiate-item:hover {
border-left-color: var(--gold);
background-color: rgba(212, 175, 55, 0.03);
padding-left: 2.5rem;
}
.repudiate-marker {
color: var(--gold);
font-size: 1.5rem;
font-weight: 300;
flex-shrink: 0;
width: 2rem;
text-align: center;
}
.repudiate-item h4 {
font-size: 1.15rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 0.5rem;
}
.repudiate-item p {
color: var(--text-secondary);
font-size: 1rem;
line-height: 1.6;
font-weight: 300;
margin: 0;
}
/* ===== SEÇÃO PILARES DETALHADA ===== */
.pillars-detail {
max-width: 900px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 2rem;
}
.pillar-detail-card {
border: 1px solid var(--border-color);
padding: 3rem;
background-color: rgba(212, 175, 55, 0.02);
transition: var(--transition);
}
.pillar-detail-card:hover {
border-color: var(--gold);
background-color: rgba(212, 175, 55, 0.04);
}
.pillar-detail-header {
display: flex;
align-items: center;
gap: 1.5rem;
margin-bottom: 1.5rem;
}
.pillar-detail-number {
color: var(--gold);
font-size: 2rem;
font-weight: 300;
font-family: Georgia, serif;
font-style: italic;
line-height: 1;
}
.pillar-detail-header h3 {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-primary);
}
.pillar-detail-card p {
color: var(--text-secondary);
line-height: 1.8;
font-size: 1.05rem;
font-weight: 300;
padding-left: 3.5rem;
}
.pillar-detail-card p strong {
color: var(--text-primary);
font-weight: 500;
}
/* ===== SEÇÃO COMPROMISSO ===== */
.commitment-block {
text-align: center;
}
.commitment-lead {
font-size: 1.4rem !important;
color: var(--text-primary) !important;
margin-bottom: 2.5rem !important;
}
/* ===== SEÇÃO CTA ===== */
.cta-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
max-width: 1000px;
margin: 0 auto 4rem;
}
.cta-card {
border: 1px solid var(--border-color);
padding: 2.5rem 2rem;
text-align: center;
transition: var(--transition);
}
.cta-card:hover {
border-color: var(--gold);
transform: translateY(-5px);
}
.cta-card h3 {
color: var(--gold);
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 1.5rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--border-color);
}
.cta-card p {
color: var(--text-secondary);
line-height: 1.7;
font-weight: 300;
}
.cta-card p strong {
color: var(--text-primary);
font-weight: 500;
}
.cta-final {
text-align: center;
max-width: 700px;
margin: 0 auto;
padding-top: 3rem;
border-top: 1px solid var(--border-color);
}
.cta-final-text {
font-size: 1.3rem;
color: var(--text-secondary);
margin-bottom: 2.5rem;
font-weight: 300;
line-height: 1.6;
}
.cta-final-text strong {
color: var(--gold);
font-weight: 500;
}
/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
.manifesto-hero {
padding: 8rem 1.5rem 4rem;
min-height: 60vh;
}

.manifesto-section {
    padding: 4rem 0;
}

.container {
    padding: 0 1.5rem;
}

.section-header {
    margin-bottom: 3rem;
}

.truth-card {
    padding: 2.5rem 1.5rem;
}

.truth-number {
    left: 1.5rem;
}

.repudiate-item {
    padding: 1.2rem 1rem;
    gap: 1rem;
}

.repudiate-item:hover {
    padding-left: 1.5rem;
}

.pillar-detail-card {
    padding: 2rem 1.5rem;
}

.pillar-detail-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.pillar-detail-card p {
    padding-left: 0;
}

.pillar-detail-header h3 {
    font-size: 1.3rem;
}

.cta-grid {
    grid-template-columns: 1fr;
}

.cta-final-text {
    font-size: 1.1rem;
}


@media (max-width: 480px) {
.manifesto-hero h1 {
font-size: 2.2rem;
}

.manifesto-lead {
    font-size: 1rem;
}

.manifesto-quote {
    font-size: 1.1rem;
}

.section-header h2 {
    font-size: 1.8rem;
}

.truth-card h3 {
    font-size: 1.2rem;
}

.repudiate-item h4 {
    font-size: 1rem;
}

/* ===== ANIMAÇÕES DE SCROLL ===== */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.manifesto-section {
animation: fadeInUp 0.8s ease-out forwards;
}
.truth-card,
.repudiate-item,
.pillar-detail-card,
.cta-card {
opacity: 0;
animation: fadeInUp 0.6s ease-out forwards;
}
.truth-card:nth-child(1) { animation-delay: 0.1s; }
.truth-card:nth-child(2) { animation-delay: 0.2s; }
.truth-card:nth-child(3) { animation-delay: 0.3s; }
.truth-card:nth-child(4) { animation-delay: 0.4s; }
.truth-card:nth-child(5) { animation-delay: 0.5s; }
.repudiate-item:nth-child(1) { animation-delay: 0.1s; }
.repudiate-item:nth-child(2) { animation-delay: 0.15s; }
.repudiate-item:nth-child(3) { animation-delay: 0.2s; }
.repudiate-item:nth-child(4) { animation-delay: 0.25s; }
.repudiate-item:nth-child(5) { animation-delay: 0.3s; }
.repudiate-item:nth-child(6) { animation-delay: 0.35s; }
.repudiate-item:nth-child(7) { animation-delay: 0.4s; }
.pillar-detail-card:nth-child(1) { animation-delay: 0.1s; }
.pillar-detail-card:nth-child(2) { animation-delay: 0.2s; }
.pillar-detail-card:nth-child(3) { animation-delay: 0.3s; }
.pillar-detail-card:nth-child(4) { animation-delay: 0.4s; }
.pillar-detail-card:nth-child(5) { animation-delay: 0.5s; }
.cta-card:nth-child(1) { animation-delay: 0.1s; }
.cta-card:nth-child(2) { animation-delay: 0.2s; }
.cta-card:nth-child(3) { animation-delay: 0.3s; }
