.main-header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.header-brand {
    flex: 1;
}

.brand-link {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(90deg, #fa903c, #f25642);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-link:hover {
    background: linear-gradient(90deg, #fa903c, #f25642);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.download-btn {
    background-color: #FF6B6B;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.05s ease;
}

.download-btn:hover {
    background-color: #e55a5a;
    color: #fff;
    text-decoration: none;
}

.download-btn:active {
    transform: translateY(1px);
}

.contact-link {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.contact-link:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.cultura-header {
    background: #FF6B6B;
    color: #fff;
    padding: 2rem 0 0 0;
    text-align: center;
    position: relative;
}

.cultura-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cultura-header h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.hamburger-menu {
    position: relative;
    z-index: 1000;
}

.hamburger-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hamburger-btn:hover {
    background-color: #f8f9fa;
}

.dropdown-menu {
    background: white;
    border: 1px solid #ddd;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    min-width: 200px;
}

.dropdown-item {
    color: #333;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: block;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #333;
}

/* Remove space below header by preventing child margins from collapsing */
.cultura-header h1,
.cultura-header h2 {
    margin: 0;
}

.cultura-header { 
    overflow: hidden; 
}
