* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary: #d37231;
    --primary-dark: #b85d1f;
    --primary-light: #e6803d;
    --accent: #00d4ff;
    --bg-black: #050709;
    --bg-dark: #0a0d12;
    --bg-card: rgba(10, 13, 18, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --text: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --border: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 20px rgba(211, 114, 49, 0.3);
    --font-outfit: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-outfit), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    width: 100%;
}

.main-section {
    width: 100%;
    min-width: 0;
}

/* Header */
.header {
    background: rgba(5, 7, 9, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(5, 7, 9, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 0.5rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.15s;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.15s;
    position: relative;
}

.nav-link:hover {
    color: var(--text);
    background: var(--bg-glass);
}

.nav-link.active {
    color: var(--text);
    background: var(--bg-glass);
}

.nav-link.vip-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
}

.nav-link.vip-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    width: 40px;
    height: 40px;
}

.icon-btn:hover {
    color: var(--primary);
    background: var(--bg-glass);
    transform: scale(1.1);
}

.auth-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-link {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.15s;
}

.btn-link:hover {
    background: var(--bg-glass);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.15s;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Search Bar Inline */
.search-bar-inline {
    display: none;
    width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    opacity: 0;
}

.search-bar-inline.active {
    display: block;
    width: 300px;
    opacity: 1;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        width: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        width: 300px;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .search-bar-inline.active {
        width: 200px;
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            width: 0;
            transform: translateX(-10px);
        }
        to {
            opacity: 1;
            width: 200px;
            transform: translateX(0);
        }
    }
}

/* Search Bar (legacy - mantido para compatibilidade) */
.search-bar {
    background: rgba(13, 16, 23, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 0.75rem 0;
    display: none;
}

.search-bar.active {
    display: block;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
}

.search-bar-inline .search-wrapper {
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: #b0b0b0;
    pointer-events: none;
    z-index: 1;
}

.search-wrapper input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-outfit);
    transition: all 0.2s ease;
}

.search-wrapper input::placeholder {
    color: #b0b0b0;
}

.search-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(211, 114, 49, 0.1);
}

.search-close {
    position: absolute;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.15s;
}

.search-close:hover {
    color: var(--text);
    background: var(--bg-glass);
}

/* Hero Banner */
.hero-banner {
    margin-bottom: 3rem;
}

.hero-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    min-height: 450px;
    box-shadow: var(--shadow-lg);
    user-select: none;
    -webkit-user-select: none;
}

.hero-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    will-change: transform;
}

.hero-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    padding: 3rem;
    gap: 3rem;
    cursor: pointer;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-lg);
    background: var(--bg-dark);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    will-change: transform;
}

.hero-item:hover .hero-image img {
    transform: scale(1.05);
}

.hero-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-height: 140px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.hero-genres {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.genre-tag {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    border-radius: 0;
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.hero-nav-btn svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
    pointer-events: none;
}

.hero-nav-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

.hero-nav-btn:hover svg {
    color: rgba(211, 114, 49, 0.9);
    transform: scale(1.2);
}

.hero-nav-btn.prev {
    left: 0;
    justify-content: flex-start;
    padding-left: 1rem;
}

.hero-nav-btn.next {
    right: 0;
    justify-content: flex-end;
    padding-right: 1rem;
}

.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: var(--primary);
    width: 30px;
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Sections */
section {
    margin: 3rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.section-badge {
    background: var(--primary);
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.filter-select {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: all 0.15s;
}

.filter-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(211, 114, 49, 0.1);
}

/* Works Grid */
.works-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
}

.works-grid::-webkit-scrollbar {
    height: 6px;
}

.works-grid::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 3px;
}

.works-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.obra-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--border);
    min-width: 180px;
    max-width: 180px;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
}

.obra-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.obra-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: var(--bg-dark);
    transition: transform 0.5s;
    will-change: transform;
}

.obra-card:hover img {
    transform: scale(1.1);
}

.obra-card-info {
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.obra-card-info h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.chapter-badge {
    padding: 0.25rem 0.5rem;
    background: var(--bg-glass);
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Loading Skeleton simplificado - sem blur, sem animações pesadas */
.loading-skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.skeleton-card {
    aspect-ratio: 2/3;
    background: rgba(10, 13, 18, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-item {
    height: 80px;
    background: rgba(10, 13, 18, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.skeleton-hero {
    width: 100%;
    height: 500px;
    background: rgba(10, 13, 18, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-header-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 13, 18, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-header-name {
    width: 120px;
    height: 16px;
    background: rgba(10, 13, 18, 0.5);
    border-radius: 6px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    width: 100%;
}

.top10-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.trophy-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(211, 114, 49, 0.5));
}

.top10-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.85rem;
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    color: #000;
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.top10-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.top10-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-glass);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.top10-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.top10-item:hover {
    background: var(--bg-glass);
    border-color: var(--primary);
    transform: translateX(4px);
}

.top10-item:hover::before {
    transform: scaleY(1);
}

.top10-position {
    font-weight: 700;
    color: var(--primary);
    min-width: 32px;
    font-size: 1.2rem;
    text-align: center;
}

.top10-item img {
    width: 55px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--bg-dark);
    border: 1px solid var(--border);
}

.top10-item-info {
    flex: 1;
    min-width: 0;
}

.top10-item-info h4 {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.top10-views {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    height: 2rem;
    width: auto;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.15s;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 0.5rem 0;
    z-index: 1000;
    width: 100%;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.15s;
    flex: 1;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 8px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--primary);
    background: var(--bg-glass);
}

.mobile-nav-item svg {
    width: 24px;
    height: 24px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bg-card);
    margin: 3rem auto;
    padding: 3rem;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 1;
    animation: slideUp 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.legal-modal-content {
    max-width: 900px;
}

.legal-modal-content h1 {
    font-family: var(--font-outfit);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.legal-modal-content h2 {
    font-family: var(--font-outfit);
    font-size: 1.5rem;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-modal-content p,
.legal-modal-content li {
    font-family: var(--font-outfit);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-modal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-modal-content .contact-info {
    background: rgba(211, 114, 49, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.obra-detalhes {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    margin-top: 1.5rem;
}

.obra-detalhes img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.obra-detalhes-info h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.obra-detalhes-info p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        position: static;
    }
    
    .hero-content {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .header-actions .auth-buttons {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .works-grid {
        gap: 1rem;
    }
    
    .obra-card {
        min-width: 150px;
        max-width: 150px;
    }
    
    .obra-card img {
        height: 220px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .obra-detalhes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-container {
        min-height: 400px;
    }
    
    .hero-image {
        height: 260px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .obra-card {
        min-width: 140px;
        max-width: 140px;
    }
    
    .obra-card img {
        height: 200px;
    }
}
