/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0a0a0a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Otimizações para performance mobile */
.mobile-optimized .particle {
    will-change: transform, opacity;
}

.mobile-optimized .art-glow,
.mobile-optimized .profile-glow {
    display: none;
}

/* Efeito de partículas de fundo */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #d63384;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    will-change: transform, opacity;
}

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

/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(214, 51, 132, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    background: linear-gradient(45deg, #d63384, #ff6b9d, #d63384);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Efeito Glitch */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0080;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #00ff80;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        transform: translate(0);
    }
    15%, 49% {
        transform: translate(-2px, -1px);
    }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% {
        transform: translate(0);
    }
    21%, 62% {
        transform: translate(2px, 1px);
    }
}

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

.nav-glow {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-glow::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d63384, #ff6b9d);
    transition: width 0.3s ease;
}

.nav-glow:hover {
    color: #d63384;
    text-shadow: 0 0 10px rgba(214, 51, 132, 0.5);
}

.nav-glow:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d63384;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(214, 51, 132, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: -1;
}

.hero-content {
    z-index: 2;
    animation: heroFadeIn 1.5s ease-out;
    padding: 0 1rem;
    max-width: 100%;
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(45deg, #d63384, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 400;
    padding: 0 1rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #d63384;
    color: #d63384;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 5px;
    touch-action: manipulation;
}

.cta-button:hover,
.cta-button:focus {
    color: #fff;
    box-shadow: 0 0 30px rgba(214, 51, 132, 0.5);
    outline: none;
}

.button-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #d63384, #ff6b9d);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover .button-bg,
.cta-button:focus .button-bg {
    left: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #d63384;
    border-bottom: 2px solid #d63384;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Portfolio Section */
.portfolio {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.section-title {
    font-family: 'Orbitron', monospace;
    text-align: center;
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d63384, #ff6b9d);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.art-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(214, 51, 132, 0.2);
    transition: all 0.5s ease;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    will-change: transform;
}

.art-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.art-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #d63384;
    box-shadow: 
        0 20px 40px rgba(214, 51, 132, 0.3),
        0 0 60px rgba(214, 51, 132, 0.1);
}

/* Estilos para as imagens */
.art-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.art-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

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

.art-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.8), rgba(255, 107, 157, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.art-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.art-overlay h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.art-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 51, 132, 0.1) 0%, transparent 70%);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform;
}

.art-card:hover .art-glow {
    opacity: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.card-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(214, 51, 132, 0.2);
    border: 1px solid rgba(214, 51, 132, 0.4);
    border-radius: 15px;
    font-size: 0.8rem;
    color: #d63384;
    font-weight: 600;
    text-transform: uppercase;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

.text-content p {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
}

.highlight-text {
    color: #d63384;
    font-weight: 600;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(214, 51, 132, 0.1);
    border: 1px solid rgba(214, 51, 132, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 120px;
    flex: 1;
    max-width: 150px;
}

.stat-item:hover {
    background: rgba(214, 51, 132, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    color: #d63384;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Estilos para a imagem do perfil */
.profile-container {
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(214, 51, 132, 0.3);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.profile-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 51, 132, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    will-change: transform;
}

.profile-frame {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(214, 51, 132, 0.5);
    border-radius: 15px;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    color: #fff;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #ccc;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(214, 51, 132, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    touch-action: manipulation;
}

.contact-link:hover,
.contact-link:focus {
    background: rgba(214, 51, 132, 0.1);
    border-color: #d63384;
    color: #d63384;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(214, 51, 132, 0.2);
    outline: none;
}

.link-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d63384, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.link-title {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-text {
    font-size: 0.9rem;
    opacity: 0.8;
    word-break: break-word;
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(214, 51, 132, 0.2);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid rgba(214, 51, 132, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(10, 10, 10, 0.8);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d63384;
    box-shadow: 0 0 20px rgba(214, 51, 132, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d63384, #ff6b9d);
    transition: width 0.3s ease;
}

.form-group input:focus + .input-highlight,
.form-group textarea:focus + .input-highlight {
    width: 100%;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: 2px solid #d63384;
    color: #d63384;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.submit-btn:hover,
.submit-btn:focus {
    color: #fff;
    box-shadow: 0 0 30px rgba(214, 51, 132, 0.5);
    outline: none;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #d63384, #ff6b9d);
    transition: left 0.3s ease;
    z-index: -1;
}

.submit-btn:hover .btn-glow,
.submit-btn:focus .btn-glow {
    left: 0;
}

/* Modal de Sucesso */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-container {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(214, 51, 132, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 
        0 20px 40px rgba(214, 51, 132, 0.3),
        0 0 80px rgba(214, 51, 132, 0.1);
    position: relative;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 51, 132, 0.1) 0%, transparent 70%);
    animation: rotate 8s linear infinite;
    z-index: -1;
}

.modal-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.check-animation {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d63384, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 30px rgba(214, 51, 132, 0.5);
}

.check-animation.animate {
    transform: scale(1);
    animation: checkPulse 0.6s ease-out;
}

@keyframes checkPulse {
    0% { 
        transform: scale(0); 
        box-shadow: 0 0 0 rgba(214, 51, 132, 0.5); 
    }
    50% { 
        transform: scale(1.1); 
        box-shadow: 0 0 40px rgba(214, 51, 132, 0.7); 
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 0 30px rgba(214, 51, 132, 0.5); 
    }
}

.check-svg {
    width: 40px;
    height: 40px;
}

.check-circle {
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: checkCircle 0.6s ease-out 0.3s forwards;
}

.check-path {
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: checkPath 0.3s ease-out 0.6s forwards;
}

@keyframes checkCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checkPath {
    to {
        stroke-dashoffset: 0;
    }
}

.modal-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #d63384, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-text {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #d63384;
    color: #d63384;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 150px;
}

.modal-button:hover,
.modal-button:focus {
    color: #fff;
    box-shadow: 0 0 30px rgba(214, 51, 132, 0.5);
    outline: none;
    transform: translateY(-2px);
}

.modal-btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #d63384, #ff6b9d);
    transition: left 0.3s ease;
    z-index: -1;
}

.modal-button:hover .modal-btn-glow,
.modal-button:focus .modal-btn-glow {
    left: 0;
}

/* Responsividade do Modal */
@media (max-width: 480px) {
    .modal-container {
        padding: 2rem;
        margin: 1rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-text {
        font-size: 1rem;
    }
    
    .check-animation {
        width: 60px;
        height: 60px;
    }
    
    .check-svg {
        width: 30px;
        height: 30px;
    }
}

/* Footer */
footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(214, 51, 132, 0.2);
    text-align: center;
    padding: 3rem 0;
    position: relative;
}

footer p {
    font-family: 'Orbitron', monospace;
    color: #666;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d63384, transparent);
    animation: glow 3s ease-in-out infinite;
}

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

/* Responsividade */

/* Tablets grandes e desktops pequenos */
@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .stats {
        justify-content: center;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        max-width: 300px;
        width: 100%;
    }
    
    .portfolio,
    .about,
    .contact {
        padding: 6rem 0;
    }
    
    .profile-container {
        height: 300px;
    }
    
    .art-image {
        height: 250px;
    }
}

/* Smartphones */
@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .portfolio,
    .about,
    .contact {
        padding: 4rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .art-image {
        height: 200px;
    }
    
    .profile-container {
        height: 250px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        letter-spacing: 1px;
    }
    
    .cta-button {
        padding: 12px 30px;
        letter-spacing: 1px;
    }
    
    .contact-link {
        padding: 1rem;
    }
    
    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
}

/* Smartphones pequenos */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 0.25rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-tags {
        gap: 0.25rem;
    }
    
    .tag {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Smart TVs e telas grandes */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
}

/* Orientação landscape em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 400px;
        padding: 6rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Animações de entrada */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Customização da scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d63384, #ff6b9d);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff6b9d, #d63384);
}

/* Modo de alto contraste */
@media (prefers-contrast: high) {
    .art-card {
        border: 2px solid #d63384;
    }
    
    .contact-link {
        border: 2px solid #d63384;
    }
    
    .nav-glow {
        border-bottom: 1px solid rgba(214, 51, 132, 0.5);
    }
}

/* Redução de movimento */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particle {
        animation: none;
    }
    
    .profile-glow,
    .art-glow {
        animation: none;
    }
}

/* Melhorias para touch */
@media (hover: none) and (pointer: coarse) {
    .art-card:hover {
        transform: none;
    }
    
    .art-card:active {
        transform: scale(0.98);
    }
    
    .contact-link:hover {
        transform: none;
    }
    
    .contact-link:active {
        transform: scale(0.98);
    }
    
    .cta-button:hover {
        box-shadow: none;
    }
    
    .cta-button:active {
        transform: scale(0.98);
    }
}