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

body {
    font-family: 'Poppins', sans-serif;
    color: #4a3724;
    background: #ffffff;
    line-height: 1.5;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #7e3e09;
}

.navbar {
    background: #fff1db;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #ffffff;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.2rem;
}

.logo span {
    font-size: 0.6rem;
    color: #b87a42;
}

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

.nav-links a {
    text-decoration: none;
    color: #7a5a3a;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e6a017;
}

.hamburger {
    display: none;
}

.hero {
    padding: 2rem 1rem;
}

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

.hero-text {
    flex: 1;
}

.dia-mulher {
    background: #f7e5cc;
    color: #c6862c;
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #9b7652;
}

.hero-description {
    color: #6b4a2a;
    margin: 0.8rem 0;
    font-size: 0.85rem;
}

.hero-buttons {
    display: flex;
    gap: 0.6rem;
}

.btn-primary {
    background: #e6b13e;
    color: rgb(255, 255, 255);
    padding: 0.4rem 1rem;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
}

.btn-secondary {
    background: transparent;
    color: #e6b13e;
    padding: 0.4rem 1rem;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #e6b13e;
    font-size: 0.8rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
}

.frase-destaque {
    background: #fff3e4;
    padding: 1.5rem;
    text-align: center;
}

.frase {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #c68b2c;
}

.autor {
    color: #b87a42;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.intro {
    padding: 1.5rem 1rem;
    text-align: center;
}

.intro h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.intro-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.intro-card {
    background: white;
    padding: 1rem;
    flex: 1;
    border: 1px solid #f0e0cc;
}

.intro-card h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #e6a017;
}

.intro-card p {
    color: #7a5a3a;
    font-size: 0.8rem;
}

.linha-do-tempo-preview {
    background: #fff5e6;
    padding: 1.5rem 1rem;
    text-align: center;
}

.linha-do-tempo-preview h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-preview {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.timeline-item {
    background: white;
    padding: 0.6rem;
    flex: 1;
    min-width: 100px;
    border: 1px solid #f0e0cc;
}

.ano {
    font-weight: bold;
    font-size: 0.9rem;
    color: #e6b13e;
    display: block;
}

.timeline-item p {
    font-size: 0.7rem;
    color: #7a5a3a;
}

.btn-link {
    display: inline-block;
    margin-top: 1rem;
    color: #e6b13e;
    text-decoration: none;
    font-size: 0.85rem;
}

footer {
    background: #ffffff;
    padding: 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.footer-info h3 {
    font-size: 0.9rem;
}

.footer-info p {
    color: #8a6846;
    font-size: 0.65rem;
}

.footer-links {
    display: flex;
    gap: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: #8a6846;
    font-size: 0.75rem;
}

.footer-citation p {
    font-size: 0.65rem;
    color: #8a6846;
}

.footer-bottom {
    text-align: center;
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    border-top: 1px solid #e6d5bd;
    font-size: 0.6rem;
    color: #9b7652;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .intro-grid {
        flex-direction: column;
    }
    
    .timeline-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        width: 80%;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}