/* =====================================
   Manifesto Page - A Gestão como Ato de União
   The most serene and focused page on the site
   ===================================== */

/* Import elegant serif font */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* Hero Section - Above the Fold */
.manifesto-hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(20, 20, 20, 0.8) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    position: relative;
    overflow: hidden;
}

.manifesto-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%,
        rgba(254, 175, 80, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.manifesto-hero-inner {
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 24px;
}

.manifesto-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Badge */
.manifesto-badge {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #feaf50;
    padding: 8px 20px;
    border: 1px solid rgba(254, 175, 80, 0.3);
    border-radius: 20px;
    background: rgba(254, 175, 80, 0.05);
    backdrop-filter: blur(10px);
}

/* Hero Title */
.manifesto-hero-section h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #FAFAFA;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Hero Subtitle */
.manifesto-hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.5;
    margin: 0;
    max-width: 700px;
}

/* Scroll Link */
.manifesto-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #AAAAAA;
    text-decoration: none;
    margin-top: 24px;
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.manifesto-scroll-link:hover {
    color: #feaf50;
    border-color: rgba(254, 175, 80, 0.3);
    background: rgba(254, 175, 80, 0.05);
    transform: translateY(2px);
    text-decoration: none;
}

/* Breathing pulse animation - triggered on click */
.manifesto-scroll-link.breathing-pulse {
    animation: breathe-pulse 0.6s ease-in-out;
}

@keyframes breathe-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(254, 175, 80, 0.3);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.manifesto-scroll-link i {
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(4px);
    }
    60% {
        transform: translateY(2px);
    }
}

/* Main Container */
.manifesto-container {
    background-color: #0A0A0A;
    min-height: 100vh;
    padding: 0px 24px 80px;
    opacity: 0.7;
    transition: opacity 1.2s ease-out;
}

/* Fade in reading state - triggered on scroll from hero */
.manifesto-container.fade-in-reading {
    opacity: 1;
}

/* Content Article - Centered Column */
.manifesto-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 30px 0;
}

/* Typography - The Soul of the Design */

/* Main Title */
.manifesto-content h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #FAFAFA;
    line-height: 1.2;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    text-align: center;
}

/* Subtitle below title */
.manifesto-content .manifesto-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.4;
    margin-bottom: 48px;
    text-align: center;
}

/* Section Titles */
.manifesto-content h2 {
    font-size: 1.3rem;
    font-weight: 300;
    color: #feaf50;
    line-height: 1.3;
    margin: 72px 0 24px 0;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 32px;
}

/* Icon before section titles */
.manifesto-content h2[data-icon]::before {
    content: attr(data-icon);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: rgba(254, 175, 80, 0.35);
    font-style: normal;
    font-weight: 400;
}

/* Subsection Titles */
.manifesto-content h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    color: #FAFAFA;
    line-height: 1.4;
    margin: 40px 0 20px 0;
    text-align: center;
}

/* Body Paragraphs - Serif font for unique character */
.manifesto-content p {
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #F5F5F5;
    line-height: 1.8;
    margin: 0 0 24px 0;
}

/* Strong text within paragraphs */
.manifesto-content p strong {
    font-weight: 600;
    color: #FAFAFA;
}

/* Featured Quote - Visual Break */
.manifesto-content .featured-quote {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    color: #FAFAFA;
    text-align: center;
    line-height: 1.6;
    margin: 64px 0;
    padding: 32px 0;
    border-top: 1px solid rgba(254, 175, 80, 0.3);
    border-bottom: 1px solid rgba(254, 175, 80, 0.3);
    position: relative;
}

/* Lists */
.manifesto-content ul {
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    color: #F5F5F5;
    line-height: 1.8;
    margin: 24px 0 32px 32px;
    padding: 0;
}

.manifesto-content ul li {
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #F5F5F5;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 8px;
}

.manifesto-content ul li::marker {
    color: #feaf50;
}

/* Divider */
.manifesto-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 80px 0 48px 0;
}

/* Section Divider - Three Dots */
.section-divider {
    text-align: center;
    margin: 64px 0;
    font-size: 1.2rem;
    letter-spacing: 12px;
    color: rgba(254, 175, 80, 0.4);
    user-select: none;
}

.section-divider span {
    display: inline-block;
}

/* Deepening Section - Bridge to Blog */
.deepening-section {
    text-align: center;
    padding: 24px 0;
}

.deepening-section p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #AAAAAA;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.essay-link {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: #feaf50;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.essay-link:hover {
    color: #FAFAFA;
    background: rgba(254, 175, 80, 0.1);
    transform: translateX(4px);
}

/* CTA Final Section */
.convite-final-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    padding: 80px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.convite-inner {
    max-width: 720px;
    margin: 0 auto;
}

.convite-content {
    text-align: center;
}

.convite-content h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: #FAFAFA;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

.convite-content p {
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.convite-final-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #feaf50;
    color: #0A0A0A !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(254, 175, 80, 0.2);
}

.convite-final-btn:hover,
.convite-final-btn:visited,
.convite-final-btn:active,
.convite-final-btn:focus {
    color: #0A0A0A !important;
    text-decoration: none;
}

.convite-final-btn:hover {
    background: #e6a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 175, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .manifesto-hero-section h1 {
        font-size: 2.5rem;
    }

    .manifesto-hero-subtitle {
        font-size: 1.1rem;
    }

    .manifesto-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .manifesto-scroll-link {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .manifesto-container {
        padding: 80px 20px 60px;
    }

    .manifesto-content {
        padding: 40px 0;
    }

    .manifesto-content h1 {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }

    .manifesto-content .manifesto-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .manifesto-content h2 {
        font-size: 1.5rem;
        margin: 40px 0 20px 0;
        padding-left: 28px;
    }

    .manifesto-content h2[data-icon]::before {
        font-size: 1rem;
    }

    .manifesto-content h3 {
        font-size: 1.2rem;
    }

    .manifesto-content p {
        font-size: 1.0625rem;
    }

    .manifesto-content ul {
        font-size: 1.0625rem;
        margin-left: 20px;
    }

    .convite-final-section {
        padding: 60px 20px;
    }

    .convite-content h2 {
        font-size: 1.75rem;
    }

    .convite-content p {
        font-size: 1rem;
    }
}

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

    .manifesto-hero-subtitle {
        font-size: 1rem;
    }

    .manifesto-hero-inner {
        padding: 0 20px;
    }

    .manifesto-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .manifesto-scroll-link {
        font-size: 0.85rem;
        padding: 10px 18px;
        gap: 8px;
    }

    .manifesto-content h1 {
        font-size: 1.875rem;
        margin-bottom: 16px;
    }

    .manifesto-content .manifesto-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .manifesto-content h2 {
        font-size: 1.35rem;
        padding-left: 24px;
    }

    .manifesto-content h2[data-icon]::before {
        font-size: 0.9rem;
    }

    .convite-final-btn {
        width: 100%;
        padding: 14px 32px;
    }
}
