/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS */
:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #2c2c2c;
    --text-light: #f5f5f5;
    --text-dark: #333;
    --gradient-gold: linear-gradient(135deg, #d4af37, #f4d03f);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--secondary-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section - Design Moderno Completo */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

/* Background com gradiente animado */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2c2c2c 25%, 
        #1e1e1e 50%, 
        #2a2a2a 75%, 
        #1a1a1a 100%);
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 50%, 
        rgba(26, 26, 26, 0.8) 100%);
}

/* Formas animadas de fundo */
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1), 
        rgba(244, 208, 63, 0.05));
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: -7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation-delay: -14s;
}

/* Layout principal */
.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Conteúdo do hero */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    width: fit-content;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Título principal */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.title-sub {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    margin-top: -0.2em;
}

/* Descrição */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Grid de estatísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Botões de ação */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Área da imagem */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease 0.6s both;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: var(--gradient-gold);
    padding: 4px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    transition: transform 0.3s ease;
}

.image-wrapper:hover .hero-img {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50px;
    z-index: -1;
    animation: glow 3s ease-in-out infinite alternate;
}

/* Elementos flutuantes */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Hover effect nos emoticons */
.float-element:hover {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--primary-color);
}

.float-element {
    position: absolute;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.float-element:nth-child(1) {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
    animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    animation: float 8s ease-in-out infinite reverse;
}

.float-element:nth-child(3) {
    width: 55px;
    height: 55px;
    bottom: -10px;
    right: 20px;
    animation: float 7s ease-in-out infinite;
}

.float-element:nth-child(4) {
    width: 65px;
    height: 65px;
    top: 10px;
    left: -20px;
    animation: float 9s ease-in-out infinite reverse;
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s ease both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    margin-bottom: 0.5rem;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-10px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

@keyframes glow {
    from {
        opacity: 0.5;
        transform: scale(0.95);
    }
    to {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes backgroundMove {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(3px);
    }
}

/* Media Queries - Responsividade */

/* Tablets e iPads */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .image-wrapper {
        max-width: 400px;
    }
}

/* Mobile Landscape - Design Revolucionário */
@media (max-width: 768px) {
    .hero {
        padding: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
        background: radial-gradient(ellipse at top, 
            rgba(212, 175, 55, 0.15) 0%, 
            rgba(26, 26, 26, 0.95) 40%, 
            #0a0a0a 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.03) 50%, transparent 70%),
            radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(244, 208, 63, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .hero-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 1;
        padding: 2rem 1rem;
        position: relative;
        z-index: 2;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        width: 100%;
        max-width: 420px;
        text-align: center;
    }
    
    /* Badge futurista */
    .hero-badge {
        background: linear-gradient(135deg, 
            rgba(212, 175, 55, 0.25) 0%, 
            rgba(244, 208, 63, 0.15) 50%, 
            rgba(212, 175, 55, 0.25) 100%);
        border: 2px solid transparent;
        background-clip: padding-box;
        border-radius: 50px;
        padding: 0.8rem 2rem;
        font-size: 0.65rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #d4af37;
        position: relative;
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        animation: glow 3s ease-in-out infinite alternate;
        margin: 0;
    }
    
    .hero-badge::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #d4af37, #f4d03f, #d4af37);
        border-radius: 50px;
        z-index: -1;
    }
    
    /* Título cinematográfico */
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.8rem) !important;
        line-height: 0.9 !important;
        margin: 0 !important;
        text-align: center;
        font-weight: 900 !important;
        position: relative;
    }
    
    .title-line {
        display: block !important;
        background: linear-gradient(135deg, 
            #d4af37 0%, 
            #f4d03f 25%, 
            #fff 50%, 
            #f4d03f 75%, 
            #d4af37 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        background-size: 400% 400%;
        animation: titleShine 6s ease-in-out infinite;
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }
    
    .title-line:last-child {
        color: rgba(255, 255, 255, 0.9) !important;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 700 !important;
        margin-top: 0.3rem;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
        background: none !important;
    }
    
    /* Descrição elegante */
    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.8);
        max-width: 100%;
        margin: 0;
        text-align: center;
        font-weight: 300;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        background: linear-gradient(180deg, 
            rgba(255, 255, 255, 0.8) 0%, 
            rgba(255, 255, 255, 0.6) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Stats em cards flutuantes */
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 380px;
        margin: 0;
    }
    
    .stat-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 1.2rem;
        padding: 1.2rem 1.5rem;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 255, 255, 0.05) 100%);
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 20px;
        backdrop-filter: blur(25px);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(212, 175, 55, 0.1), 
            transparent);
        transition: left 0.5s ease;
    }
    
    .stat-card:hover::before {
        left: 100%;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1a1a1a;
        box-shadow: 
            0 6px 20px rgba(212, 175, 55, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        flex-shrink: 0;
        position: relative;
    }
    
    .stat-info {
        text-align: left;
        flex: 1;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 900;
        color: #d4af37;
        line-height: 1;
        text-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
        background: linear-gradient(135deg, #d4af37, #f4d03f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .stat-label {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 0.3rem;
    }
    
    /* Botões premium */
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        max-width: 320px;
        margin: 1.5rem auto 0;
    }
    
    .btn {
        width: 100%;
        padding: 1.2rem 2.5rem;
        font-size: 0.85rem;
        font-weight: 700;
        text-align: center;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        justify-content: center;
    }
    
    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 255, 255, 0.2), 
            transparent);
        transition: left 0.5s ease;
    }
    
    .btn:hover::before {
        left: 100%;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
        color: #1a1a1a;
        border: none;
        box-shadow: 
            0 8px 25px rgba(212, 175, 55, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    
    .btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 
            0 12px 35px rgba(212, 175, 55, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    
    .btn-outline {
        background: transparent;
        color: #d4af37;
        border: 2px solid rgba(212, 175, 55, 0.6);
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    
    .btn-outline:hover {
        background: rgba(212, 175, 55, 0.15);
        border-color: #d4af37;
        transform: translateY(-2px);
        box-shadow: 
            0 8px 25px rgba(212, 175, 55, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    
    /* Elementos removidos */
    .floating-elements,
    .hero-image,
    .animated-shapes,
    .image-wrapper {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-wrapper {
        padding-bottom: 4rem;
    }
    
    /* Animações personalizadas */
    @keyframes glow {
        0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
        100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    }
    

    
    @keyframes titleShine {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }
}

/* Mobile Portrait - Design Compacto Premium */
@media (max-width: 480px) {
    .hero-wrapper {
        padding: 1.5rem 0.8rem;
        max-width: 380px;
    }
    
    .hero-content {
        gap: 2rem;
        max-width: 360px;
    }
    
    .hero-badge {
        padding: 0.7rem 1.8rem;
        font-size: 0.6rem;
        letter-spacing: 1.8px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 3rem) !important;
        line-height: 0.85 !important;
    }
    
    .title-line {
        background-size: 350% 350% !important;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .stats-grid {
        gap: 0.8rem;
        max-width: 340px;
    }
    
    .stat-card {
        padding: 1rem 1.2rem;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-actions {
        gap: 1rem;
        max-width: 300px;
        margin: 1.2rem auto 0;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
        border-radius: 45px;
    }
    
    .floating-elements,
    .hero-image,
    .animated-shapes,
    .scroll-indicator,
    .image-wrapper,
    .image-frame,
    .hero-img {
        display: none;
    }
}

/* Smartphones Pequenos - Design Ultra Compacto */
@media (max-width: 360px) {
    .hero-wrapper {
        padding: 1.2rem 0.6rem;
        max-width: 340px;
    }
    
    .hero-content {
        gap: 1.8rem;
        max-width: 320px;
    }
    
    .hero-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.55rem;
        letter-spacing: 1.5px;
        border-radius: 40px;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.6rem) !important;
        line-height: 0.8 !important;
    }
    
    .title-line {
        background-size: 300% 300% !important;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .stats-grid {
        gap: 0.6rem;
        max-width: 310px;
    }
    
    .stat-card {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .hero-actions {
        gap: 0.8rem;
        max-width: 280px;
        margin: 1rem auto 0;
    }
    
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.75rem;
        border-radius: 40px;
    }
    
    .floating-elements,
    .hero-image,
    .animated-shapes,
    .scroll-indicator,
    .image-wrapper {
        display: none;
    }
    
    .hero-wrapper {
        padding-bottom: 3.5rem;
    }
}

.badge-text {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 5rem !important;
    font-weight: 900 !important;
    line-height: 0.85 !important;
    margin: 0 !important;
    color: var(--primary-color) !important;
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
}

.title-line {
    display: block !important;
    background: var(--gradient-gold) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
}

.title-line:first-child {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.title-line:last-child {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    margin-left: 0;
}

/* Forçar exibição imediata - sobrescrever qualquer animação */
.hero-title,
.hero-title .title-line,
.hero-title span {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Achievement Cards */
.achievement-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 1.1s both;
}

.achievement-card {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.achievement-card:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.card-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.card-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 1.3s both;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--secondary-color);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}



.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    border: 3px solid var(--primary-color);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
}

.overlay-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    left: -15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    right: -5%;
    animation-delay: 4s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

.scroll-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* New Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* MEDIA QUERIES CORRIGIDAS PARA MOBILE */

/* Tablets e laptops pequenos */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .achievement-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
        margin: 2rem 0;
        justify-items: center;
    }
    
    .achievement-card {
        padding: 1.2rem;
        min-height: 160px;
        height: 160px;
        max-width: 280px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        box-sizing: border-box;
        text-align: center;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .card-number {
        font-size: 1.8rem;
    }
    
    .card-label {
        font-size: 0.9rem;
    }
    
    .floating-element {
        display: none;
    }
}

/* Tablets em modo retrato */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        align-items: center;
        justify-items: center;
    }
    
    .hero-main {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .title-line {
        text-align: center !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .achievement-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 2rem 0;
        width: 100%;
        justify-items: center;
    }
    
    .achievement-card {
        padding: 0.8rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 130px;
        height: 130px;
        gap: 0.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-visual {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .image-frame {
        height: 320px;
        margin: 0 auto;
    }
}

/* Smartphones grandes */
@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.8rem;
    }
    
    .title-line {
        text-align: center !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .achievement-cards {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .achievement-card {
        padding: 0.6rem;
        min-height: 120px;
        height: 120px;
        justify-content: center;
        gap: 0.4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .card-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }
    
    .card-number {
        font-size: 1.2rem;
    }
    
    .card-label {
        font-size: 0.7rem;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 250px;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .image-frame {
        height: 280px;
    }
}

/* iPhone 14 e similares */
@media (max-width: 390px) {
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }
    
    .scroll-indicator {
        bottom: 0.3rem;
        z-index: 10;
        transform: translateX(-50%) scale(0.7);
    }
    
    .hero-wrapper {
        padding-bottom: 3rem;
    }
    
    .title-line {
        text-align: center !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .achievement-cards {
        gap: 0.6rem;
        margin: 1.2rem 0;
    }
    
    .achievement-card {
        padding: 0.5rem 0.4rem;
        min-height: 110px;
        height: 110px;
        justify-content: center;
        gap: 0.3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .card-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }
    
    .card-number {
        font-size: 1.1rem;
    }
    
    .card-label {
        font-size: 0.65rem;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 220px;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .image-frame {
        height: 250px;
    }
}

/* Smartphones muito pequenos */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem !important;
        
    }
    
    .scroll-indicator {
        bottom: 0.3rem;
    }
    
    .title-line {
        text-align: center !important;
    }
    
    .image-frame {
        height: 300px;
    }
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--accent-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-block {
    margin-bottom: 2rem;
}

.text-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.text-block p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.quote {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.quote cite {
    color: var(--primary-color);
    font-weight: 600;
}

.golden-frame {
    position: relative;
    width: 350px;
    height: 450px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    margin: 0 auto;
}

.golden-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Resto do CSS continua igual... */
/* (Inclua aqui o restante do CSS original para as outras seções) */

/* Timeline Section - Nova Estrutura */
.timeline-section {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
}

/* Navegação por Categorias */
.category-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.category-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 180px;
    justify-content: center;
}

.category-btn i {
    font-size: 1.1rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border-color: var(--primary-color);
}

/* Filtros por Década (ajustados) */
.timeline-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Estatísticas por Categoria */
.category-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid de Trabalhos - 2 cards por linha com cards mais largos */
.works-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    margin: 4rem auto !important;
    min-height: 600px !important;
    justify-content: center !important;
    max-width: 1000px !important;
}

/* Cards de Trabalhos - mais largos para 2 por linha */
.work-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    
    /* TAMANHO FIXO PARA 2 CARDS POR LINHA */
    width: 100% !important;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    box-sizing: border-box !important;
}

.work-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-year {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.card-category-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-content .network {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content .description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.category-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.work-type {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Controles de Paginação (mantidos) */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0 2rem 0;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pagination-info span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Informação de Resultados */
.results-info {
    text-align: center;
    margin-top: 1rem;
}

.results-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
}

/* Animações */
.work-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.work-card:nth-child(1) { animation-delay: 0.1s; }
.work-card:nth-child(2) { animation-delay: 0.2s; }
.work-card:nth-child(3) { animation-delay: 0.3s; }
.work-card:nth-child(4) { animation-delay: 0.4s; }
.work-card:nth-child(5) { animation-delay: 0.5s; }
.work-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .category-navigation {
        padding: 1rem;
    }
    
    .category-btn {
        min-width: 150px;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .category-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    
   .works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Remove !important */
    gap: 2rem;
    margin: 4rem auto;
    min-height: 600px;
    justify-content: center;
    max-width: 1000px;
}

/* ... existing code ... */

@media (max-width: 768px) {
    /* ... existing code ... */
    
    .works-grid {
        grid-template-columns: 1fr !important; /* Força 1 coluna */
        gap: 1.5rem;
        min-height: auto;
        margin: 2rem auto;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* ... existing code ... */
}

@media (max-width: 480px) {
    /* ... existing code ... */
    
    .works-grid {
        grid-template-columns: 1fr !important; /* Força 1 coluna */
        gap: 1rem;
        margin: 1.5rem auto;
        padding: 0 0.5rem;
        width: 100%;
    }
    
    .work-card {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 1.2rem;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* ... existing code ... */
}
    
    .card-content {
        padding: 1.5rem;
    }
    
    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .category-btn {
        min-width: 120px;
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
    }
    
    .category-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .category-stats .stat-card {
        padding: 0.8rem;
        border-radius: 12px;
        min-height: 120px;
    }
    
    .category-stats .stat-icon {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .category-stats .stat-number {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }
    
    .category-stats .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem auto;
        padding: 0 0.5rem;
    }
    
    .work-card {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 1rem;
        border-radius: 12px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .card-content .network {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .card-content .description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .card-year {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .category-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: var(--accent-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Instagram Section */
.instagram-section {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.instagram-loading {
    text-align: center;
    padding: 3rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.instagram-loading p {
    font-size: 1rem;
    margin-top: 1rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    min-height: 300px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(20px);
}

.instagram-item.loaded {
    opacity: 1;
    transform: translateY(0);
}

.instagram-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.instagram-overlay p {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.instagram-cta {
    text-align: center;
    margin-top: 3rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.instagram-follow-btn i {
    font-size: 1.2rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: var(--accent-color);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-placeholder {
    background: var(--secondary-color);
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.video-placeholder:hover {
    background: rgba(212, 175, 55, 0.1);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--secondary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 5px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Footer */
.footer {
    background: var(--accent-color);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--primary-color);
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

#lightbox-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(15px);
        z-index: 1000;
    }

    /* Contact Section - Mobile */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        order: 1;
        text-align: center;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        justify-content: center;
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }
    
    .contact-item i {
        font-size: 1.1rem;
        margin-right: 0.8rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .contact-form {
        order: 2;
        gap: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 1rem;
        align-items: center;
        justify-items: center;
    }
    
    .hero-main {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding-top: 1rem;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
        padding: 0.6rem 1.8rem;
    }
    
    .badge-text {
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-visual {
        order: 1;
        margin-top: 1rem;
    }
    
    .image-container {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .image-frame {
        height: 400px;
        margin: 0 auto;
    }
    
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .about-visual {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .about-text {
        order: 2;
        width: 100%;
        text-align: center;
    }
    
    .visual-element {
        max-width: 300px;
    }
    
    .text-block h3 {
        font-size: 1.5rem;
    }
    
    .text-block p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .quote {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .quote blockquote {
        font-size: 1.1rem;
    }
    
    .golden-frame {
        width: 280px;
        height: 380px;
        margin: 0 auto;
        display: block;
    }
    
    .about-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .visual-element {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    /* Instagram Section - Mobile */
    .instagram-section {
        padding: 3rem 0;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .instagram-cta {
        text-align: center;
        margin-top: 2.5rem;
        padding: 0 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .instagram-follow-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.7rem;
        padding: 0.9rem 1.8rem;
        font-size: 0.75rem;
        width: auto;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
        border-radius: 45px;
        white-space: nowrap;
    }
    
    .instagram-follow-btn i {
        font-size: 0.9rem;
        flex-shrink: 0;
        margin-right: 0.2rem;
    }
    
    .instagram-follow-btn span {
        font-size: 0.7rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0.5rem;
        gap: 1.5rem;
    }

    /* Contact Section - Mobile Small */
    .contact {
        padding: 2.5rem 0;
    }
    
    .contact-content {
        gap: 2rem;
        margin-top: 1.5rem;
        padding: 0 0.8rem;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    
    .contact-item i {
        font-size: 1rem;
        margin-right: 0.7rem;
    }
    
    .social-links {
        gap: 1rem;
        margin-top: 1.2rem;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .hero-main {
        padding-top: 0.5rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.8rem;
    }
    
    .image-container {
        max-width: 300px;
    }
    
    .image-frame {
        height: 350px;
    }
    
    .about-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .visual-element {
        max-width: 280px;
    }
    
    .text-block h3 {
        font-size: 1.3rem;
    }
    
    .text-block p {
        font-size: 0.95rem;
    }
    
    .quote {
        padding: 1.2rem;
    }
    
    .quote blockquote {
        font-size: 1rem;
    }
    
    .golden-frame {
        width: 250px;
        height: 340px;
        margin: 0 auto;
        display: block;
    }

    /* Instagram Section - Mobile Small */
    .instagram-section {
        padding: 2.5rem 0;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding: 0 0.8rem;
    }
    
    .instagram-cta {
        text-align: center;
        margin-top: 2rem;
        padding: 0 0.8rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .instagram-follow-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.7rem;
        width: auto;
        max-width: 260px;
        margin: 0 auto;
        text-align: center;
        border-radius: 40px;
        letter-spacing: 0.8px;
        white-space: nowrap;
    }
    
    .instagram-follow-btn i {
        font-size: 0.8rem;
        flex-shrink: 0;
        margin-right: 0.2rem;
    }
    
    .instagram-follow-btn span {
        font-size: 0.65rem;
        flex-shrink: 0;
    }
}

/* iPhone 14 e dispositivos similares (390px) */
@media (max-width: 390px) {
    .hero-content {
        padding: 0.5rem;
        gap: 1rem;
    }

    /* Contact Section - iPhone */
    .contact {
        padding: 2rem 0;
    }
    
    .contact-content {
        gap: 1.8rem;
        margin-top: 1.2rem;
        padding: 0 0.6rem;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        margin-bottom: 0.9rem;
        font-size: 0.85rem;
    }
    
    .contact-item i {
        font-size: 0.95rem;
        margin-right: 0.6rem;
    }
    
    .social-links {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .contact-form {
        gap: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .hero-main {
        padding-top: 0.5rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
        letter-spacing: 1.2px;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .achievement-cards {
        gap: 0.6rem;
        margin: 1rem 0;
    }
    
    .hero-actions {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 240px;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .image-container {
        max-width: 280px;
    }
    
    .image-frame {
        height: 320px;
    }
    
    .about-content {
        gap: 1.2rem;
    }
    
    .visual-element {
        max-width: 260px;
    }
    
    .text-block h3 {
        font-size: 1.2rem;
    }
    
    .text-block p {
        font-size: 0.9rem;
    }
    
    .quote {
        padding: 1rem;
    }
    
    .quote blockquote {
        font-size: 0.95rem;
    }
    
    .golden-frame {
        width: 220px;
        height: 300px;
        margin: 0 auto;
        display: block;
    }

    /* Instagram Section - iPhone */
    .instagram-cta {
        text-align: center;
        margin-top: 1.8rem;
        padding: 0 0.6rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .instagram-follow-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.7rem 1.3rem;
        font-size: 0.65rem;
        width: auto;
        max-width: 240px;
        margin: 0 auto;
        text-align: center;
        border-radius: 35px;
        letter-spacing: 0.6px;
        white-space: nowrap;
    }
    
    .instagram-follow-btn i {
        font-size: 0.7rem;
        flex-shrink: 0;
        margin-right: 0.15rem;
    }
    
    .instagram-follow-btn span {
        font-size: 0.6rem;
        flex-shrink: 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for filtered items */
.work-item {
    animation: fadeInUp 0.5s ease-out;
}

/* Hover effects for better UX */
.work-item:hover .work-type {
    background: var(--secondary-color);
}

.gallery-item:hover .image-placeholder i {
    transform: scale(1.1);
    transition: var(--transition);
}

/* Timeline Cards - Design Moderno */
.timeline-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.timeline-card:hover::before {
    transform: scaleX(1);
}

.timeline-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25), 0 8px 32px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.card-year {
    position: absolute;
    top: -1px;
    right: 25px;
    background: var(--gradient-gold);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.card-content {
    padding: 2.5rem 2rem 2rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-network {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.9;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-category {
    display: inline-flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(10px);
}

/* Animação de entrada */
.timeline-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-card:nth-child(1) { animation-delay: 0.1s; }
.timeline-card:nth-child(2) { animation-delay: 0.2s; }
.timeline-card:nth-child(3) { animation-delay: 0.3s; }
.timeline-card:nth-child(4) { animation-delay: 0.4s; }
.timeline-card:nth-child(5) { animation-delay: 0.5s; }
.timeline-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .timeline-card .card-year {
        top: -8px;
        right: 20px;
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .card-content {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
}