/* --- style.css: Versão Final (Com animação de clique no Email) --- */

:root {
    --color-bg: #000000;
    --color-card-bg: #1c1c1e;
    --color-card-border: #2c2c2e;
    --color-text-main: #f5f5f7;
    --color-text-sec: #86868b;
    
    /* CORES */
    --color-accent: #2E8FFF;
    --color-green: #00ff88;
    --color-green-dark: #00cc6a;
    --color-green-light: #80ffc0;
    
    --radius-l: 24px;
    --radius-m: 16px;
    --spacing-container: 24px;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { width: 100%; } 

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    width: 100%; min-height: 100vh;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: opacity 0.2s ease; }
ul { list-style: none; }

/* ANIMAÇÕES SCROLL */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-100 { transition-delay: 0.1s; }
.reveal.delay-200 { transition-delay: 0.2s; }

/* NAVEGAÇÃO */
.navbar { position: fixed; top: 0; width: 100%; height: 100px; z-index: 1000; background: transparent; border-bottom: 1px solid transparent; display: flex; align-items: center; justify-content: center; transition: all 0.5s ease; }
.nav-container { width: 100%; max-width: 1200px; padding: 0 var(--spacing-container); display: flex; align-items: center; height: 100%; }
.logo { position: absolute; left: 50%; transform: translateX(-50%) scale(1.3); transition: all 0.5s ease; }
.logo img { height: 48px; width: auto; display: block; }

.btn-contact-nav {
    margin-left: auto; opacity: 0; transform: translateX(20px); pointer-events: none;
    background-color: var(--color-green); color: #000000;
    padding: 10px 24px; border-radius: 999px; font-size: 0.9rem; font-weight: 700;
    transition: all 0.5s ease; border: none; box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    display: flex; align-items: center; gap: 8px;
}
.btn-contact-nav:hover { background-color: #ffffff; color: var(--color-green-dark); transform: scale(1.05); }

.navbar.bg-active { height: 80px; background: rgba(28, 28, 30, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.navbar.nav-active { height: 70px; }
.navbar.nav-active .logo { left: var(--spacing-container); transform: translateX(0) scale(1); }
.navbar.nav-active .btn-contact-nav { opacity: 1; transform: translateX(0); pointer-events: auto; }

/* HERO SECTION */
.hero {
    min-height: 100dvh; display: flex; flex-direction: column; justify-content: space-between; align-items: center;
    padding: 0 var(--spacing-container); text-align: center; max-width: 800px; margin: 0 auto;
    position: relative; padding-top: 140px; padding-bottom: 40px; 
}
.hero-top { display: flex; flex-direction: column; align-items: center; justify-content: center; flex-grow: 1; }
.hero-bottom { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 300px; gap: 20px; }

@keyframes fadeUpHero { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-top > :not(h1), .hero-bottom > * { opacity: 0; animation: fadeUpHero 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.hero .badge-status { animation-delay: 0.2s; }
.hero .cta-buttons { animation-delay: 0.3s; }
.hero .instruction-text { animation-delay: 0.6s; }
.hero .scroll-indicator { animation-delay: 0.8s; }

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; letter-spacing: 2px; line-height: 1; margin-bottom: 0; text-transform: uppercase;
    text-shadow: 0 0 30px rgba(46, 143, 255, 0.2);
    background: linear-gradient(to right, #999 0%, #fff 50%, #999 100%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    opacity: 0; animation: fadeUpHero 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, shine 3s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.hero h1 .brand-name {
    display: block; font-size: 1rem; font-weight: 600; color: var(--color-accent);
    letter-spacing: 3px; margin-top: 15px; font-family: var(--font-main);
    text-shadow: none; background: none; -webkit-text-fill-color: var(--color-accent); text-fill-color: var(--color-accent);
    opacity: 1;
}

.badge-status {
    display: inline-flex; align-items: center; gap: 6px;
    background-color: rgba(0, 255, 136, 0.1); color: var(--color-green);
    border: 1px solid rgba(0, 255, 136, 0.3); padding: 5px 12px; border-radius: 999px;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-top: 25px;
}
.badge-status::before { content: ''; display: block; width: 6px; height: 6px; background-color: var(--color-green); border-radius: 50%; box-shadow: 0 0 8px var(--color-green); }

.cta-buttons { display: flex; flex-direction: column; gap: 15px; width: 100%; max-width: 260px; margin-bottom: 45px; }
.btn { padding: 13px 20px; border-radius: 999px; font-size: 0.9rem; font-weight: 700; cursor: pointer; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: transform 0.2s, box-shadow 0.3s ease; }
.btn:hover { transform: scale(1.02); animation-play-state: paused; }
.btn i { font-size: 1.1rem; }

.btn-primary { background-color: transparent; color: var(--color-accent); border: 1px solid rgba(46, 143, 255, 0.5); animation: subtlePulseGlow 4s infinite ease-in-out; }
@keyframes subtlePulseGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(46, 143, 255, 0.1), inset 0 0 2px rgba(46, 143, 255, 0.05); border-color: rgba(46, 143, 255, 0.5); }
    50% { box-shadow: 0 0 15px rgba(46, 143, 255, 0.3), inset 0 0 8px rgba(46, 143, 255, 0.1); border-color: rgba(46, 143, 255, 0.8); }
}

.btn-secondary { background: linear-gradient(90deg, var(--color-green), var(--color-green-dark), var(--color-green-light), var(--color-green-dark), var(--color-green)); background-size: 300% 100%; color: #000000; border: none; font-weight: 800; box-shadow: 0 0 20px rgba(0, 255, 136, 0.25); animation: waveGradient 6s linear infinite; }
@keyframes waveGradient { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

.instruction-text { font-size: 0.8rem; color: var(--color-text-sec); margin: 0; opacity: 1; animation: bounceText 3s infinite ease-in-out; }
.scroll-indicator { color: var(--color-text-sec); font-size: 1.5rem; opacity: 0.6; animation: bounceArrow 2s infinite ease-in-out; }
@keyframes bounceText { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@keyframes bounceArrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.section-work, .section-about, .section-showcase { padding: 80px var(--spacing-container); width: 100%; }
.container { max-width: 1200px; margin: 0 auto; }

/* CENTRALIZADO */
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 5px; color: #fff; text-align: center; }
.section-subtitle { font-size: 1rem; color: var(--color-text-sec); margin-bottom: 40px; text-align: center; }

.bento-grid, .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* TÍTULO SHINE */
.title-gradient {
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(46, 143, 255, 0.2);
    background: linear-gradient(to right, #999 0%, #fff 50%, #999 100%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

/* CARD ANIMADO */
.bento-card { 
    background-color: var(--color-card-bg); border: 1px solid var(--color-card-border); border-radius: var(--radius-l); 
    padding: 30px; position: relative; overflow: hidden; cursor: pointer; 
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.4s ease, opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex; flex-direction: column; justify-content: center; height: auto; min-height: 250px; 
}
.bento-card:hover { border-color: var(--color-accent); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.bento-card.is-expanded { 
    background-color: #202022; border-color: var(--color-accent); 
    transform: scale(1.02); 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); z-index: 10;
}

.card-category { font-size: 0.75rem; font-weight: 700; color: var(--color-text-sec); text-transform: uppercase; display: block; letter-spacing: 1px; margin-bottom: 5px; }
.card-title { font-size: 1.6rem; font-weight: 700; color: var(--color-text-main); line-height: 1.1; margin: 0; }
.expand-btn { margin-top: 15px; color: var(--color-accent); font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: opacity 0.3s ease; }
.expand-btn i { transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }

/* GRID ANIMATION */
.hidden-content { 
    display: grid; grid-template-rows: 0fr; opacity: 0; margin-top: 0;
    transition: grid-template-rows 0.6s cubic-bezier(0.25, 1, 0.5, 1), margin-top 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    font-size: 1rem; color: var(--color-text-sec); line-height: 1.5;
}
.bento-card.is-expanded .hidden-content { grid-template-rows: 1fr; opacity: 1; margin-top: 25px; }
.hidden-content > div { overflow: hidden; }
.bento-card.is-expanded .expand-btn i { transform: rotate(180deg); }

.bg-icon { position: absolute; bottom: -20px; right: -20px; font-size: 8rem; color: rgba(46, 143, 255, 0.05); transform: rotate(-10deg); pointer-events: none; z-index: 1; }

.profile-header { display: flex; align-items: center; gap: 20px; margin-bottom: 15px; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: center top; border: 3px solid var(--color-accent); aspect-ratio: 1/1; }
.profile-title-group { display: flex; flex-direction: column; justify-content: center; }

/* LISTAS GERAIS */
.gear-list, .included-list { display: flex; flex-direction: column; gap: 10px; }
.gear-list li, .included-list li { display: flex; align-items: center; gap: 12px; color: var(--color-text-sec); font-size: 0.95rem; }
.gear-list li i { color: var(--color-accent); }

/* ÍCONE CHECK DOURADO */
.included-list li i {
    font-size: 0.95rem;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FFD700;
}

/* SKILLS */
.skills-wrapper { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-tag { background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 10px 18px; border-radius: 8px; font-size: 0.9rem; color: var(--color-text-main); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: transform 0.2s ease; }
.skill-tag:hover { transform: translateY(-2px); }
.tag-pr { border-color: #9900ff; background: linear-gradient(135deg, rgba(153,0,255,0.1), transparent); }
.tag-pr i, .tag-pr span { background: linear-gradient(to right, #D291FF, #9900ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tag-ae { border-color: #cf96fd; background: linear-gradient(135deg, rgba(207,150,253,0.1), transparent); }
.tag-ae i, .tag-ae span { background: linear-gradient(to right, #fff, #cf96fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tag-ps { border-color: #31A8FF; background: linear-gradient(135deg, rgba(49,168,255,0.1), transparent); }
.tag-ps i, .tag-ps span { background: linear-gradient(to right, #80CFFF, #0061FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tag-ai { border-color: #FF9A00; background: linear-gradient(135deg, rgba(255,154,0,0.1), transparent); }
.tag-ai i, .tag-ai span { background: linear-gradient(to right, #FFD700, #FF7A00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tag-cap { border-color: #ffffff; background-color: rgba(255,255,255,0.05); color: #fff; }
.tag-cap i { color: #fff; }

/* FEEDBACKS */
.feedback-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 15px; padding: 5px; width: 100%; }
.feedback-item { width: 100%; aspect-ratio: 1 / 1; background-color: #2c2c2e; border-radius: 12px; overflow: hidden; border: 2px solid transparent; box-shadow: 0 4px 10px rgba(0,0,0,0.3); position: relative; display: flex; align-items: center; justify-content: center; cursor: zoom-in; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; z-index: 1; }
.feedback-item:hover, .feedback-item:active { transform: scale(1.03); border-color: var(--color-accent); box-shadow: 0 5px 20px rgba(0,0,0,0.5), 0 0 15px rgba(46, 143, 255, 0.5); z-index: 10; }
.feedback-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- PRODUÇÕES YOUTUBE --- */
.productions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    width: 100%;
    max-width: 800px; 
    margin: 40px auto 0;
}

.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9 / 16; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--color-card-border);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(46, 143, 255, 0.2);
    border-color: var(--color-accent);
}

.video-card iframe { width: 100%; height: 100%; border: none; display: block; pointer-events: none; }

/* Overlay de Vídeo (Play) */
.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.1);
    z-index: 2;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.video-overlay i { font-size: 3rem; color: #fff; text-shadow: 0 2px 15px rgba(0,0,0,0.8); transform: scale(0.8); transition: transform 0.3s ease; }

/* DESKTOP: Play aparece no hover */
@media (hover: hover) {
    .video-card:hover .video-overlay { opacity: 1; background: rgba(0,0,0,0.3); }
    .video-card:hover .video-overlay i { transform: scale(1.1); }
}

/* MOBILE: Play só aparece ao tocar (active), sem background escuro */
@media (hover: none) {
    .video-overlay { opacity: 0; } 
    .video-card:active .video-overlay { opacity: 1; background: transparent; } 
    .video-card:active .video-overlay i { transform: scale(1.5); transition: transform 0.1s; } 
}

/* DIVIDER */
.section-divider { border: none; height: 1px; width: 100%; max-width: 1200px; margin: 0 auto; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent); }

/* FOOTER */
.footer { border-top: 1px solid var(--color-card-border); padding: 60px var(--spacing-container); text-align: center; background-color: #050505; margin-top: 60px; }

/* BOTÃO VERDE UNIFICADO */
.btn-whatsapp-lg { 
    display: inline-flex; align-items: center; justify-content: center; gap: 12px; 
    background: linear-gradient(90deg, var(--color-green), var(--color-green-dark), var(--color-green-light), var(--color-green-dark), var(--color-green));
    background-size: 300% 100%;
    color: #000000; 
    padding: 18px 40px; border-radius: 999px; font-size: 1.2rem; font-weight: 800; 
    text-decoration: none; border: none;
    transition: all 0.3s; 
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3); 
    animation: waveGradient 6s linear infinite; 
}
.btn-whatsapp-lg:hover { background-color: #ffffff; color: var(--color-green-dark); transform: translateY(-4px); }

/* --- NOVO: Estilo para o Email Copiável --- */
.email-copy {
    font-size: 1.1rem;
    color: var(--color-text-main);
    cursor: pointer;
    display: inline-block; /* Necessário para transform */
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    user-select: none;
}

.email-copy:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Classe ativada via JS ao clicar */
.email-copy.clicked {
    transform: scale(0.9); /* Diminui ao clicar */
    color: var(--color-green); /* Fica verde */
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.copy-hint { display: block; font-size: 0.75rem; color: var(--color-text-sec); margin-top: 5px; opacity: 0.7; }

.social-links { margin-top: 40px; display: flex; justify-content: center; gap: 30px; }
.social-links a i { font-size: 1.5rem; color: #86868b; transition: 0.3s; }
.social-links a:hover i { color: var(--color-accent); transform: translateY(-3px); }
.toast-notification { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background-color: var(--color-green); color: #000000; padding: 12px 24px; border-radius: 999px; font-size: 0.9rem; font-weight: 700; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); z-index: 9999; opacity: 0; pointer-events: none; transition: all 0.4s; }
.toast-notification.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* LIGHTBOX */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95); 
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.lightbox.active { opacity: 1; pointer-events: auto; }

.lightbox-content { 
    position: relative; 
    width: 100%; max-width: 900px;
    height: 70vh; 
    display: flex; justify-content: center; align-items: center;
    transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
}
.lightbox.active .lightbox-content { transform: scale(1); }

.lightbox-img, .lightbox-video { 
    max-width: 100%; max-height: 100%; 
    border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.9); 
    display: none; 
}
.lightbox-video { aspect-ratio: 9 / 16; width: auto; height: 100%; border: none; }

.close-lightbox {
    position: fixed; 
    bottom: 30px; left: 50%; transform: translateX(-50%); 
    top: auto; right: auto; 
    width: 50px; height: 50px;
    background-color: rgba(255, 255, 255, 0.1); 
    color: #fff; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; cursor: pointer; z-index: 10000;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.close-lightbox:hover { background-color: var(--color-accent); transform: translateX(-50%) scale(1.1); border-color: var(--color-accent); }

@media (min-width: 768px) {
    .cta-buttons { flex-direction: row; width: auto; justify-content: center; max-width: 400px; }
    .btn { width: auto; }
    .bento-grid, .about-grid { grid-template-columns: repeat(2, 1fr); }
    .card-large { grid-column: span 2; }
}
@media (min-width: 1024px) { .bento-grid, .about-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .hero { padding-top: 120px; padding-bottom: 30px; }
    .hero-top { justify-content: flex-start; margin-top: 20px; }
    .hero-bottom { margin-top: auto; } 
    .bento-card { padding: 24px; min-height: 200px; }
    
    .footer { padding: 40px 20px; }
    .footer h2 { font-size: 1.8rem; line-height: 1.2; margin-bottom: 30px; }
    .btn-whatsapp-lg { width: 100%; padding: 16px; font-size: 1rem; }
    .section-showcase { margin-bottom: 60px; } 
}
@media (max-width: 600px) {
    .productions-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}