/* ============================================
   MANIFESTO POÉTICO - STYLE.CSS
   Design Minimalista com Estética Persa
   ============================================ */

/* Variáveis de Cor */
:root {
    --primary-dark: #0a0e27;
    --primary-light: #f5f5f5;
    --accent-red: #d32f2f;
    --accent-gold: #d4af37;
    --accent-blue: #1e3a8a;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    background-color: var(--primary-light);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */

.header {
    position: sticky;
    top: 0;
    background-color: var(--primary-light);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-red);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-red);
    text-decoration: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 80vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #999;
}

.separator {
    color: var(--accent-red);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
    object-fit: cover;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.timeline-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-date {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.timeline-event h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.timeline-event p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--accent-gold);
    display: none;
}

/* ============================================
   MANIFESTO POÉTICO
   ============================================ */

.manifesto {
    padding: 4rem 2rem;
    background-color: var(--primary-light);
}

.manifesto-container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
    border-radius: 2px;
}

.poem-hybrid {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-red);
    margin-bottom: 2rem;
}

.poem-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #333;
}

.poem-text p {
    margin-bottom: 1.5rem;
}

.highlight-pt {
    color: var(--accent-blue);
    font-weight: 500;
}

.highlight-en {
    color: var(--accent-red);
    font-style: italic;
}

.highlight-fa {
    color: var(--accent-gold);
    font-weight: bold;
    direction: rtl;
    display: inline-block;
}

.poem-note {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

/* ============================================
   PROJETO
   ============================================ */

.projeto {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.projeto-container {
    max-width: 1200px;
    margin: 0 auto;
}

.projeto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.projeto-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--accent-blue);
}

.projeto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.projeto-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.projeto-card p {
    font-size: 1rem;
    color: #666;
}

/* ============================================
   GALERIA
   ============================================ */

.galeria {
    padding: 4rem 2rem;
    background-color: var(--primary-light);
}

.galeria-container {
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.05);
}

.galeria-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.galeria-caption {
    padding: 1rem;
    background: white;
    text-align: center;
    font-size: 0.95rem;
    color: var(--accent-blue);
    font-weight: 500;
    margin: 0;
}

/* ============================================
   REFERÊNCIAS
   ============================================ */

.referencias {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%);
    color: var(--text-light);
}

.referencias-container {
    max-width: 1200px;
    margin: 0 auto;
}

.referencias-container .section-title {
    color: var(--text-light);
}

.referencias-container .section-title::after {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
}

.referencias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.referencia-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.referencia-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.referencia-card h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.referencia-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.referencia-card strong {
    color: var(--text-light);
}

.referencia-link {
    color: var(--accent-gold);
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

.referencia-link:hover {
    color: var(--accent-red);
}

/* ============================================
   CONTEXTO CULTURAL
   ============================================ */

.contexto {
    padding: 4rem 2rem;
    background-color: white;
}

.contexto-container {
    max-width: 900px;
    margin: 0 auto;
}

.contexto-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
}

.contexto-text p {
    margin-bottom: 2rem;
}

.contexto-text strong {
    color: var(--accent-red);
}

/* ============================================
   CALL TO ACTION
   ============================================ */

.cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-blue) 100%);
    color: var(--text-light);
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.cta-button.primary {
    background-color: white;
    color: var(--accent-red);
}

.cta-button.primary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: var(--accent-red);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-style: italic;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .poem-hybrid {
        padding: 1.5rem;
    }

    .poem-text {
        font-size: 1rem;
    }

    .timeline-container {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-arrow {
        display: block;
        transform: rotate(90deg);
    }

    .projeto-grid,
    .galeria-grid,
    .referencias-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .poem-hybrid {
        padding: 1rem;
        border-left: 3px solid var(--accent-red);
    }

    .poem-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .galeria-item img {
        height: 200px;
    }

    .referencia-card {
        padding: 1.5rem;
    }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.manifesto,
.projeto,
.galeria,
.referencias,
.contexto,
.cta {
    animation: fadeInUp 0.6s ease-out;
}
