/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #faf5ff 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.dark .hero-section {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, #0f1419 50%, rgba(88, 28, 135, 0.1) 100%);
}

.hero-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .hero-container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .hero-container { padding: 0 2rem; }
}

/* ===== HERO HEADER ===== */
.hero-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.dark .hero-title {
    color: #f9fafb;
}

.hero-title-highlight {
    display: inline;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -0.2em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transform: scaleX(0);
    animation: underlineGrow 1.5s ease-out 0.5s forwards;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.dark .hero-subtitle {
    color: #9ca3af;
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dark .stat-item {
    background: rgba(31, 41, 55, 0.8);
    color: #9ca3af;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    height: 1.25rem;
    width: 1.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.text-green-500 { color: #10b981; }
.text-yellow-500 { color: #f59e0b; }
.text-blue-500 { color: #3b82f6; }

/* Counter Animation */
.counter {
    font-weight: 600;
    color: #3b82f6;
}

/* ===== HERO GRID ===== */
.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
    }
}

/* ===== FEATURED POST CARD ===== */
.featured-post-card {
    position: relative;
}

.card-featured {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dark .card-featured {
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.card-featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.3);
}

.card-image-container {
    position: relative;
    overflow: hidden;
    height: 20rem;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.card-image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    font-size: 4rem;
    font-weight: bold;
    color: white;
}

.group:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.group:hover .card-overlay {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-time-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #374151;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 10;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dark .card-time-badge {
    background: rgba(31, 41, 55, 0.95);
    color: #d1d5db;
}

.time-icon {
    width: 1rem;
    height: 1rem;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.card-link {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dark .card-link {
    color: #f9fafb;
}

.group:hover .card-link {
    color: #2563eb;
}

.card-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark .card-description {
    color: #9ca3af;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.dark .card-meta {
    border-bottom-color: #374151;
}

.meta-date, .meta-author {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.dark .meta-date, .dark .meta-author {
    color: #9ca3af;
}

.date-icon, .author-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-button:hover::before {
    opacity: 1;
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.card-button span,
.arrow-icon {
    position: relative;
    z-index: 1;
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.card-button:hover .arrow-icon {
    transform: translateX(0.25rem);
}

/* ===== RECENT POSTS ===== */
.recent-posts-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.dark .recent-posts-container {
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.recent-posts-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.dark .recent-posts-title {
    color: #f9fafb;
}

.title-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    color: #2563eb;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.recent-post-card {
    transition: transform 0.3s ease;
}

.recent-post-card:hover {
    transform: translateX(0.5rem);
}

.card-horizontal {
    display: flex;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dark .card-horizontal {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.card-horizontal:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.card-horizontal-image-container {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    overflow: hidden;
}

.card-horizontal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-horizontal-placeholder {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text-small {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.group:hover .card-horizontal-image {
    transform: scale(1.1);
}

.card-horizontal-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-horizontal-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
    font-size: 0.625rem;
    font-weight: 500;
    background: #e0e7ff;
    color: #3730a3;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.dark .card-horizontal-badge {
    background: #312e81;
    color: #c7d2fe;
}

.card-horizontal-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-horizontal-link {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dark .card-horizontal-link {
    color: #f9fafb;
}

.group:hover .card-horizontal-link {
    color: #2563eb;
}

.card-horizontal-excerpt {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark .card-horizontal-excerpt {
    color: #9ca3af;
}

.card-horizontal-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.625rem;
    color: #9ca3af;
}

.horizontal-meta-date {
    display: flex;
    align-items: center;
}

.meta-icon-small {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.25rem;
}

.horizontal-meta-time {
    font-weight: 500;
}

/* ===== VIEW ALL POSTS ===== */
.view-all-posts {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.dark .view-all-posts {
    border-top-color: rgba(75, 85, 99, 0.5);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.view-all-link:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.view-all-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover .view-all-icon {
    transform: translateX(0.25rem);
}

/* ===== HERO CTA ===== */
.hero-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    padding: 3rem 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.dark .hero-cta {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.dark .cta-title {
    color: #f9fafb;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.dark .cta-subtitle {
    color: #9ca3af;
}

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

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -5px rgba(37, 99, 235, 0.6);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 2px solid #e5e7eb;
    backdrop-filter: blur(10px);
}

.dark .cta-secondary {
    background: rgba(31, 41, 55, 0.9);
    color: #d1d5db;
    border-color: #4b5563;
}

.cta-secondary:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
}

.cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-icon,
.cta-secondary:hover .cta-icon {
    transform: translateX(0.25rem);
}

/* ===== DECORATIVE ELEMENTS ===== */
.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #34d399, #60a5fa);
    top: 60%;
    right: -75px;
    animation-delay: 2s;
}

.decoration-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f472b6, #a78bfa);
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-section {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero-header {
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .recent-posts-container {
        padding: 1.5rem;
    }
    
    .hero-cta {
        padding: 2rem 1rem;
    }
    
    .decoration-1,
    .decoration-2,
    .decoration-3 {
        opacity: 0.3;
    }
}

@media (max-width: 640px) {
    .card-horizontal {
        flex-direction: column;
    }
    
    .card-horizontal-image-container {
        width: 100%;
        height: 8rem;
    }
    
    .card-horizontal-content {
        padding: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* ===== DARK MODE SPECIFIC STYLES ===== */
@media (prefers-color-scheme: dark) {
    .hero-section {
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, #0f1419 50%, rgba(88, 28, 135, 0.1) 100%);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .decoration,
    .hero-cta::before {
        animation: none;
    }
    
    .card-featured:hover,
    .recent-post-card:hover,
    .view-all-link:hover,
    .cta-primary:hover,
    .cta-secondary:hover {
        transform: none;
    }
    
    .hero-title-highlight::after {
        animation: none;
        transform: scaleX(1);
    }
}

/* ===== FOCUS STATES ===== */
.card-link:focus,
.card-horizontal-link:focus,
.view-all-link:focus,
.cta-primary:focus,
.cta-secondary:focus,
.card-button:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 0.375rem;
}

<style>
.category-card .category-content {
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card.category-expanded {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.category-card:hover {
    animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.01); }
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .category-card.category-expanded {
        transform: translateY(-4px);
    }
}

@keyframes pulse-slow {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.animate-pulse-slow {
    animation: pulse-slow 3s ease-in-out infinite;
}

.prose strong {
    color: inherit;
    font-weight: 600;
}

@media (max-width: 768px) {
    .aspect-\[4\/5\] {
        aspect-ratio: 1/1;
    }
}
/* Grid pattern background */
.absolute.inset-0[style*="radial-gradient"] {
    background-image: radial-gradient(circle at 1px 1px, rgba(92, 65, 48, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
}

/* Animações suaves */
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Typography refinements */
.font-light {
    font-weight: 300;
}

.leading-\[0\.9\] {
    line-height: 0.9;
}

.tracking-\[0\.2em\] {
    letter-spacing: 0.2em;
}

/* Hover effects refinados */
.group:hover .w-2.h-2.bg-\[#EABD8F\] {
    transform: scale(1.5);
}

/* Responsividade aprimorada */
@media (max-width: 1023px) {
    .text-5xl.lg\:text-7xl {
        font-size: 3rem;
        line-height: 0.95;
    }
    
    .text-xl.lg\:text-2xl {
        font-size: 1.125rem;
    }
    
    .absolute.-bottom-8.-left-8 {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 2rem;
        margin-left: 0;
    }
    
    .absolute.-top-6.-right-6 {
        top: -1rem;
        right: -1rem;
        width: 4rem;
        height: 4rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states para acessibilidade */
a:focus-visible {
    outline: 2px solid #5C4130;
    outline-offset: 2px;
    border-radius: 0.375rem;
}
/* CORREÇÃO DA BARRA DE PROGRESSO RESPONSIVA */
.progress-container {
    position: fixed;
    top: 0; /* Sempre inicia no topo */
    left: 0;
    right: 0;
    z-index: 40;
    height: 4px;
    background: rgba(234, 232, 219, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}
/* Quando o header está escondido no mobile */
.header-hidden ~ main .progress-container,
body:has(.header-hidden) .progress-container {
    top: 0 !important;
}
/* Fallback para navegadores sem :has() */
body.header-is-hidden .progress-container {
    top: 0 !important;
}
/* Quando o menu mobile está aberto */
.mobile-menu-open .progress-container,
body.mobile-menu-open .progress-container {
    opacity: 0;
    pointer-events: none;
}
/* Quando o header está visível */
.header-visible .progress-container {
    /* top: 80px;*/ /* Altura do seu header */
    transform: translateY(64px); /* h-16 = 64px */
}

/* Responsividade para diferentes tamanhos de header */
@media (max-width: 1024px) {
    .progress-container {
        top: 64px; /* h-16 = 64px no mobile */
    }
}
@media (min-width: 1024px) {
    .progress-container {
        top: 80px; /* lg:h-20 = 80px no desktop */
    }
}
/* Responsividade mobile */
@media (max-width: 768px) {
    /* Quando o menu mobile está aberto */
    .mobile-menu-open .progress-container {
        top: 0;
    }
    
    /* Quando o header está escondido no mobile */
    .mobile-menu-hidden .progress-container {
        top: 0;
    }
    
    /* Header escondido no mobile */
    .header.hidden {
        transform: translateY(-100%);
    }
}

/* Transições suaves para o header */
.header {
    transition: transform 0.3s ease-out;
}