/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #D4AF37;
    --color-secondary: #1a1a1a;
    --color-text: #ffffff;
    --color-text-dark: #333333;
    --color-bg: #0a0a0a;
    --color-bg-light: #1a1a1a;
    --color-overlay: rgba(0, 0, 0, 0.7);
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --font-name: 'Bebas Neue', 'Oswald', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-primary);
}

.cursor.click {
    transform: scale(0.8);
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    overflow: hidden;
}

.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.animated-bg::before {
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.animated-bg::after {
    bottom: -250px;
    right: -250px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, 100px) scale(1.2);
    }
    66% {
        transform: translate(-100px, -100px) scale(0.8);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-name);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
}

.nav-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s;
}

.nav-brand:hover::before {
    left: 100%;
}

.nav-brand:hover {
    transform: scale(1.08);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.5));
    letter-spacing: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-social-mobile {
    display: none;
}

.desktop-only {
    display: inline-flex;
}

@media (max-width: 640px) {
    .desktop-only {
        display: none !important;
    }
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    opacity: 0;
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: -1;
}

.nav-menu a:hover::before {
    opacity: 0.1;
    transform: translateX(0);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    padding: 0.8rem;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1001;
}

.nav-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.nav-toggle.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.nav-toggle.active span {
    background: var(--color-text-dark);
    box-shadow: none;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-name);
    font-size: 5.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    width: 100%;
    text-transform: uppercase;
    line-height: 1.1;
}


.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: gradientShiftReverse 3s ease infinite;
    pointer-events: none;
    z-index: -1;
}


.camera-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: cameraPulse 2s ease-in-out infinite;
    color: var(--color-primary);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

@media (max-width: 640px) {
    .camera-icon.desktop-only,
    .desktop-only {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}

.camera-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--color-primary);
    transition: var(--transition);
}

@keyframes cameraPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    }
    50% {
        transform: scale(1.15) rotate(8deg);
        filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.9));
    }
}

.hero-title:hover .camera-icon {
    animation: cameraPulse 0.5s ease-in-out infinite;
}

.hero-title:hover .camera-icon svg {
    stroke-width: 2.5;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes gradientShiftReverse {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}


.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.btn-primary::after {
    content: '→';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    transition: var(--transition);
    font-size: 1.2rem;
}

.btn-primary:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    letter-spacing: 1px;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: width 1s ease-out;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.section-title.animate::after {
    width: 80px;
}

.section-title.animate::before {
    left: -80px;
    opacity: 1;
}

.section-title-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

.section-title.animate ~ *,
.section-title-wrapper:has(.section-title.animate)::after {
    right: -80px;
    opacity: 1;
}

/* Sobre Section */
.sobre {
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 15s ease-in-out infinite;
    z-index: 0;
}

.sobre::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 20s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes floatBg {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.2);
    }
}

.sobre .container {
    position: relative;
    z-index: 1;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.sobre-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.sobre-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-50px) rotateY(-15deg);
    animation: imageSlideIn 1s ease-out 0.3s forwards;
    border: 3px solid transparent;
    background: linear-gradient(var(--color-bg-light), var(--color-bg-light)) padding-box,
                linear-gradient(135deg, var(--color-primary), transparent, var(--color-primary)) border-box;
}

@keyframes imageSlideIn {
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

.sobre-image::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-primary), transparent, var(--color-primary));
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0;
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        filter: blur(5px);
    }
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    z-index: 1;
    opacity: 0;
}

.sobre-image:hover::before {
    animation: shine 1s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.sobre-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    filter: grayscale(20%);
}

.sobre-image:hover {
    transform: translateY(-15px) rotateY(8deg) scale(1.02);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.6);
}

.sobre-image:hover::after {
    opacity: 0.8;
    animation: borderGlow 1s ease-in-out infinite;
}

.sobre-image:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.sobre-text {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sobre-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.sobre-text p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sobre-text.animate p {
    animation: textFadeIn 0.8s ease-out forwards;
}

.sobre-text.animate p:nth-child(1) {
    animation-delay: 0.2s;
}

.sobre-text.animate p:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes textFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sobre-intro {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: introGlow 2s ease-in-out infinite;
}

@keyframes introGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }
}

.sobre-text p:not(.sobre-intro) {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.skills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.skills::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.5;
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.3;
        width: 80px;
    }
    50% {
        opacity: 0.8;
        width: 120px;
    }
}

.skill-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px) rotateX(20deg) scale(0.9);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.skill-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%, rgba(212, 175, 55, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.skill-item.animate {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    animation: skillItemAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes skillItemAppear {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(30deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.skill-item:hover {
    transform: translateY(-20px) rotateX(0deg) scale(1.08);
    background: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5),
                0 0 40px rgba(212, 175, 55, 0.3);
    border-color: var(--color-primary);
}

.skill-item:hover::before {
    opacity: 1;
}

.skill-item:hover::after {
    opacity: 1;
    animation: skillShine 2s ease-in-out infinite;
}

@keyframes skillShine {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.skill-item h3,
.skill-item p {
    position: relative;
    z-index: 1;
}

.skill-item:hover .skill-icon {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.skill-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.4));
}

.skill-item:hover .skill-icon {
    animation: iconBounce 0.6s ease-in-out;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.2) rotateY(360deg) translateY(0);
    }
    50% {
        transform: scale(1.4) rotateY(360deg) translateY(-10px);
    }
}

.skill-item h3 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* Galeria Section */
.galeria {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.galeria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundFloat {
    0%, 100% {
        opacity: 0.5;
        transform: translate(0, 0);
    }
    50% {
        opacity: 0.8;
        transform: translate(30px, -30px);
    }
}

.galeria .container {
    position: relative;
    z-index: 1;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    padding: 2rem 0;
}

.filter-buttons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.3;
    animation: filterLinePulse 3s ease-in-out infinite;
}

@keyframes filterLinePulse {
    0%, 100% {
        opacity: 0.2;
        width: 150px;
    }
    50% {
        opacity: 0.6;
        width: 250px;
    }
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-secondary);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.filter-btn::after {
    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.6s;
}

.filter-btn:hover::after {
    left: 100%;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-primary);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--color-text-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.filter-btn.active {
    animation: pulse 2s infinite, filterShimmer 3s infinite;
}

@keyframes filterShimmer {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4),
                    0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 8px 40px rgba(212, 175, 55, 0.6),
                    0 0 30px rgba(212, 175, 55, 0.4),
                    inset 0 0 20px rgba(212, 175, 55, 0.1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(212, 175, 55, 0.6);
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    min-height: 500px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid.loading {
    opacity: 0.5;
}

.gallery-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    z-index: -1;
    animation: gridGlow 4s ease-in-out infinite;
}

@keyframes gridGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8) rotateY(15deg) rotateX(10deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border: 2px solid transparent;
    background: linear-gradient(var(--color-bg-light), var(--color-bg-light)) padding-box,
                linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent) border-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item:nth-child(odd) {
    transform: scale(0.8) rotateY(-15deg) rotateX(-10deg);
}

.gallery-item:nth-child(3n) {
    transform: scale(0.8) rotateY(20deg) rotateX(5deg);
}

.gallery-item:nth-child(4n) {
    transform: scale(0.8) rotateY(-10deg) rotateX(8deg);
}

.gallery-item:nth-child(5n) {
    transform: scale(0.8) rotateY(15deg) rotateX(-5deg);
}

.gallery-item.animate {
    opacity: 1;
    transform: scale(1) rotateY(0deg) rotateX(0deg);
    animation: galleryItemAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes galleryItemAppear {
    from {
        opacity: 0;
        transform: scale(0.7) rotateY(25deg) rotateX(15deg) translateZ(-50px);
        filter: blur(10px);
    }
    50% {
        transform: scale(1.05) rotateY(-5deg) rotateX(-3deg) translateZ(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateY(0deg) rotateX(0deg) translateZ(0);
        filter: blur(0);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.75) contrast(1.1) saturate(0.9);
    transform-origin: center;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.9) 100%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%, rgba(212, 175, 55, 0.2) 100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    transform: scale(1.2);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(180deg);
    font-size: 3.5rem;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.gallery-item:hover::before {
    opacity: 1;
    transform: scale(1);
    animation: overlayPulse 2s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1.1) rotate(0deg);
    opacity: 1;
    animation: iconBounce 1s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.1) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2) translateY(-10px);
    }
}

.gallery-item:hover {
    transform: scale(1.08) rotateY(-8deg) rotateX(5deg);
    box-shadow: 
        0 25px 80px rgba(212, 175, 55, 0.6),
        0 0 50px rgba(212, 175, 55, 0.4),
        inset 0 0 30px rgba(212, 175, 55, 0.1);
    border-color: var(--color-primary);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.25) rotate(3deg);
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    color: var(--color-text);
    z-index: 2;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    backdrop-filter: blur(10px);
}

.gallery-item-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease-out;
}

.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item:hover .gallery-item-info::before {
    transform: scaleX(1);
}

.gallery-item-info h3 {
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.5);
    font-size: 1.3rem;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.4s ease-out 0.2s;
}

.gallery-item:hover .gallery-item-info h3 {
    transform: translateX(0);
    opacity: 1;
}

.gallery-item-info p {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.4s ease-out 0.3s;
}

.gallery-item:hover .gallery-item-info p {
    transform: translateX(0);
    opacity: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulseBg 3s infinite;
}

@keyframes pulseBg {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--color-bg-light);
    border-radius: 10px;
    overflow: hidden;
    animation: scaleIn 0.3s ease-out;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 80px rgba(212, 175, 55, 0.3);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-primary), transparent, var(--color-primary));
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    animation: borderGlow 2s infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: var(--color-text);
    cursor: pointer;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--color-primary);
    color: var(--color-text-dark);
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.modal-info {
    padding: 2rem;
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.modal-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contato Section */
.contato {
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.contato::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 20s ease-in-out infinite;
    z-index: 0;
}

.contato::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 25s ease-in-out infinite reverse;
    z-index: 0;
}

.contato .container {
    position: relative;
    z-index: 1;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.contato-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.contato-info {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.contato-content.animate .contato-info {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contato-info h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--color-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
    }
}

.contato-info h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary), transparent);
    animation: lineGrow 1s ease-out;
}

@keyframes lineGrow {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

.contato-info p {
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.3s;
}

.contato-content.animate .contato-info p {
    opacity: 1;
    transform: translateY(0);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.5s;
}

.contato-content.animate .social-links {
    opacity: 1;
    transform: translateY(0);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(-30px);
}

.social-links.animate .social-link {
    animation: socialLinkAppear 0.6s ease-out forwards;
}

.social-links.animate .social-link:nth-child(1) {
    animation-delay: 0.1s;
}

.social-links.animate .social-link:nth-child(2) {
    animation-delay: 0.2s;
}

.social-links.animate .social-link:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes socialLinkAppear {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateX(20px) scale(1.08);
    color: var(--color-primary);
    box-shadow: 
        0 8px 30px rgba(212, 175, 55, 0.4),
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    border-color: var(--color-primary);
}

.social-link:hover::after {
    content: '→';
    position: absolute;
    right: 1.5rem;
    opacity: 0;
    animation: arrowSlide 0.3s ease-out forwards;
}

@keyframes arrowSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.social-link svg {
    transition: var(--transition);
}

.social-link:hover svg {
    transform: rotate(360deg) scale(1.2);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
}

.social-link svg {
    flex-shrink: 0;
}

.contato-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.contato-content.animate .contato-form {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contato-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    animation: formShine 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes formShine {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.contato-form::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-primary), transparent, var(--color-primary));
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    animation: borderGlowForm 4s ease-in-out infinite;
}

@keyframes borderGlowForm {
    0%, 100% {
        opacity: 0;
        filter: blur(10px);
    }
    50% {
        opacity: 0.4;
        filter: blur(5px);
    }
}

.contato-form > * {
    position: relative;
    z-index: 1;
}

.contato-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.6s;
}

.contato-content.animate .contato-form .btn-primary {
    opacity: 1;
    transform: translateY(0);
}

.contato-form .btn-primary::before {
    background: rgba(255, 255, 255, 0.4);
}

.contato-form .btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 10px 40px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.contato-form .btn-primary:active {
    transform: translateY(-2px) scale(1);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.contato-content.animate .form-group {
    animation: formGroupAppear 0.6s ease-out forwards;
}

.contato-content.animate .form-group:nth-child(1) {
    animation-delay: 0.2s;
}

.contato-content.animate .form-group:nth-child(2) {
    animation-delay: 0.3s;
}

.contato-content.animate .form-group:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes formGroupAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 0.8rem;
    transition: var(--transition);
}

.form-group label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 2px;
    opacity: 0;
    transition: var(--transition);
}

.form-group:focus-within label::before {
    opacity: 1;
    animation: labelPulse 1s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% {
        height: 20px;
    }
    50% {
        height: 30px;
    }
}

.form-group:focus-within label {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: translateX(5px);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--color-text);
    font-family: var(--font-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.3;
    transform: translateX(5px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 0 25px rgba(212, 175, 55, 0.4),
        0 0 50px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(212, 175, 55, 0.05);
    transform: translateY(-3px) scale(1.01);
    border-width: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    animation: inputFocus 0.5s ease-out;
}

@keyframes inputFocus {
    0% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }
    100% {
        box-shadow: 
            0 0 25px rgba(212, 175, 55, 0.4),
            0 0 50px rgba(212, 175, 55, 0.2),
            inset 0 0 20px rgba(212, 175, 55, 0.05);
    }
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: rgba(76, 175, 80, 0.5);
}

.form-group input:valid:focus,
.form-group textarea:valid:focus {
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff4444;
}

.error-message {
    display: block;
    color: #ff4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid #4caf50;
    border-radius: 10px;
    color: #4caf50;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.form-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
    animation: successShine 2s ease-in-out infinite;
}

@keyframes successShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.form-success.active {
    display: flex;
    animation: successAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.form-success svg {
    width: 28px;
    height: 28px;
    animation: checkMark 0.5s ease-out;
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.6));
}

@keyframes checkMark {
    from {
        transform: scale(0) rotate(-45deg);
    }
    to {
        transform: scale(1) rotate(0deg);
    }
}

.form-success span {
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: var(--color-primary);
    color: var(--color-text-dark);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 
        0 4px 20px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
    overflow: visible;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4);
    animation: none;
}

.whatsapp-float:active {
    transform: scale(1.05) translateY(-2px);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--color-text-dark);
    transition: var(--transition);
}

.whatsapp-float:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: var(--color-text-dark);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--color-primary);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-5px);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(212, 175, 55, 0.4),
            0 0 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 
            0 4px 25px rgba(212, 175, 55, 0.6),
            0 0 40px rgba(212, 175, 55, 0.5);
    }
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Footer - Estilo Limpo e Simples */
.footer {
    background: var(--color-bg);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer .container {
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-name);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    border-color: var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0.3rem 0;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        width: 100%;
        height: 100vh;
        padding: 6rem 2rem 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
        z-index: 1000;
        justify-content: flex-start;
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
            radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

    .nav-menu.active {
        left: 0;
        animation: menuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes menuSlideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.3s ease-out;
    }

    .nav-menu.active li {
        animation: menuItemAppear 0.4s ease-out forwards;
    }

    .nav-menu.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(5) {
        animation-delay: 0.5s;
    }

    @keyframes menuItemAppear {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-menu a {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.3rem;
        font-weight: 600;
        border-radius: 12px;
        margin-bottom: 1rem;
        background: rgba(212, 175, 55, 0.05);
        border: 2px solid transparent;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
        transition: left 0.5s;
    }

    .nav-menu a:hover::before {
        left: 100%;
    }

    .nav-menu a:hover {
        background: rgba(212, 175, 55, 0.15);
        border-color: var(--color-primary);
        transform: translateX(10px) scale(1.02);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        color: var(--color-primary);
    }

    .nav-menu a::after {
        display: none;
    }

    /* Mobile Social Links - Only visible on mobile */
    .nav-social-mobile {
        width: 100%;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        display: block;
    }

    .nav-social-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-social-link {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        padding: 1.2rem 1.5rem;
        background: rgba(212, 175, 55, 0.08);
        border: 2px solid transparent;
        border-radius: 12px;
        color: var(--color-text);
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .nav-social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
        transition: left 0.5s;
    }

    .nav-social-link:hover::before {
        left: 100%;
    }

    .nav-social-link:hover {
        background: rgba(212, 175, 55, 0.15);
        border-color: var(--color-primary);
        transform: translateX(10px) scale(1.02);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        color: var(--color-primary);
    }

    .nav-social-link svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        transition: var(--transition);
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    }

    .nav-social-link:hover svg {
        transform: rotate(360deg) scale(1.2);
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
    }

    .nav-social-link span {
        font-weight: 600;
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
    }

    .skills {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-brand,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-brand h3::after {
        left: 50%;
        transform: translateX(-50%) scaleX(0);
    }

    .footer-content.animate .footer-brand h3::after {
        transform: translateX(-50%) scaleX(1);
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    body {
        cursor: auto;
    }
    
    .cursor,
    .cursor-dot {
        display: none;
    }
    
    /* Hero Responsive */
    .hero {
        padding: 0 1rem;
    }
    
    /* REMOVER QUALQUER BACKGROUND DO HERO-TITLE NO MOBILE */
    .hero-title,
    .hero-title::before,
    .hero-title::after {
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
        background-clip: initial !important;
        -webkit-background-clip: initial !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        flex-direction: column !important;
        gap: 0 !important;
        letter-spacing: 1px !important;
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
        -webkit-background-clip: initial !important;
        -webkit-text-fill-color: var(--color-primary) !important;
        background-clip: initial !important;
        color: var(--color-primary) !important;
        animation: none !important;
        filter: none !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    /* Garantir que nenhum elemento filho tenha background */
    .hero-title > *,
    .hero-title span,
    .hero-title .camera-icon,
    .hero-title .desktop-only {
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
        box-shadow: none !important;
    }
    
    /* Remover qualquer background que possa aparecer como quadrado */
    .hero-title,
    .hero-title::before,
    .hero-title::after,
    .hero-title * {
        background-size: 0 !important;
        background-position: 0 0 !important;
        background-repeat: no-repeat !important;
    }
    
    .hero-title::before {
        display: none !important;
        content: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        overflow: hidden !important;
        transform: none !important;
        animation: none !important;
        z-index: -9999 !important;
    }
    
    .hero-title::after {
        display: none !important;
        content: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
        background-clip: initial !important;
        -webkit-background-clip: initial !important;
        -webkit-text-fill-color: initial !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        overflow: hidden !important;
        transform: none !important;
        animation: none !important;
        z-index: -9999 !important;
    }
    
    .hero-title *,
    .hero-title span,
    .hero-title .camera-icon {
        color: var(--color-primary) !important;
        -webkit-text-fill-color: var(--color-primary) !important;
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
    }
    
    .camera-icon,
    .camera-icon.desktop-only,
    .hero-title .camera-icon,
    .hero-title span.camera-icon {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        overflow: hidden !important;
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
    }
    
    .camera-icon *,
    .camera-icon svg,
    .hero-title .camera-icon svg {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
    }
    
    .nav-brand {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .camera-icon {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .camera-icon svg {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .hero-title .camera-icon {
        display: none !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    /* Sobre Responsive */
    .sobre-content {
        gap: 2.5rem;
    }

    .sobre-image {
        margin-bottom: 2rem;
    }

    .sobre-intro {
        font-size: 1.1rem;
        padding-left: 1rem;
    }

    .sobre-text p:not(.sobre-intro) {
        font-size: 1rem;
    }

    .skills {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .skill-item {
        padding: 1.5rem 1rem;
    }

    .skill-icon {
        font-size: 2.5rem;
    }

    /* Galeria Responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-buttons {
        gap: 0.5rem;
        padding: 1.5rem 0;
        margin-bottom: 2.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .gallery-item {
        border-radius: 12px;
    }

    /* Contato Responsive */
    .contato-content {
        gap: 2.5rem;
    }

    .contato-info h3 {
        font-size: 2rem;
        padding-left: 1rem;
    }

    .contato-info p {
        font-size: 1rem;
    }

    .social-link {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .contato-form {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .contato-form .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }

    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }

    /* Menu Mobile */
    .nav-menu {
        padding: 5rem 1.5rem 2rem;
    }

    .nav-menu a {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }

    .nav-toggle {
        width: 45px;
        height: 45px;
        padding: 0.6rem;
    }

    .nav-toggle span {
        width: 22px;
        height: 2.5px;
    }

    /* Modal Responsive */
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 10px;
    }

    .modal-image {
        max-height: 60vh;
    }

    .modal-info {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-description {
        font-size: 0.9rem;
    }
}

/* Tablet Responsive */
@media (min-width: 641px) and (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .skills {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-content,
    .contato-content {
        gap: 3rem;
    }
}

/* Disable heavy animations on mobile for performance */
@media (max-width: 768px) {
    .animated-bg::before,
    .animated-bg::after {
        animation: none;
        opacity: 0.05;
    }

    .hero-slides .slide {
        transition: opacity 1.5s ease-in-out;
    }

    .gallery-item::after {
        font-size: 2.5rem;
    }

    .skill-item:hover {
        transform: translateY(-10px) scale(1.03);
    }

    .gallery-item:hover {
        transform: scale(1.03);
    }

    .sobre-image:hover {
        transform: translateY(-8px);
    }

    /* Reduce particle effects on mobile */
    .gallery-particle,
    .particle {
        display: none;
    }

    /* Simplify hover effects */
    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .sobre-image:hover img {
        transform: scale(1.05);
    }

    /* Optimize form animations */
    .contato-form::before {
        animation: none;
    }

    .contato-form::after {
        animation: none;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .sobre-intro {
        font-size: 1rem;
    }

    .contato-info h3 {
        font-size: 1.8rem;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }

    .nav-toggle span {
        width: 20px;
    }

    .gallery-item-info {
        padding: 1rem;
    }

    .gallery-item-info h3 {
        font-size: 1.1rem;
    }

    .skill-item {
        padding: 1.2rem 0.8rem;
    }

    .skill-icon {
        font-size: 2rem;
    }
}

/* Landscape mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .nav-menu {
        padding: 4rem 2rem 1rem;
    }

    section {
        padding: 50px 0;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.3) 50%, rgba(212, 175, 55, 0.1) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Wave Animation */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23D4AF37' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 100px;
    animation: wave 20s linear infinite;
    opacity: 0.3;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1440px;
    }
}

/* Glow Effects */
.glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
                0 0 40px rgba(212, 175, 55, 0.3),
                0 0 60px rgba(212, 175, 55, 0.1);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
                    0 0 40px rgba(212, 175, 55, 0.3),
                    0 0 60px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.7),
                    0 0 60px rgba(212, 175, 55, 0.5),
                    0 0 90px rgba(212, 175, 55, 0.3);
    }
}

/* Smooth Scroll Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #ffd700);
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

