:root {
    /* Cores Hextech/LoL */
    --lol-dark-blue: #091428;   /* Fundo */
    --lol-deep-blue: #0a323c;   /* Painéis */
    --lol-gold: #c8aa6e;        /* Ouro Metálico */
    --lol-gold-light: #f0e6d2;  /* Texto Claro */
    --lol-accent: #0ac8b9;      /* Azul Mágico Neon */
    --lol-dark-accent: #052b3b; /* Detalhes Escuros */
    
    /* Fontes */
    --font-tech: 'Orbitron', sans-serif;
    --font-text: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--lol-dark-blue);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(10, 200, 185, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 170, 110, 0.06) 0%, transparent 50%),
        radial-gradient(circle at center, #112240 0%, #091428 100%);
    color: var(--lol-gold-light);
    font-family: var(--font-text);
    overflow-x: hidden;
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { filter: brightness(1) hue-rotate(0deg); }
    50% { filter: brightness(1.05) hue-rotate(5deg); }
}

/* Base Styles */
h1, h2, h3, .logo, .champ-name, .card-title-bar {
    font-family: var(--font-tech);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.gold { color: var(--lol-gold); }
.gold-txt { color: var(--lol-gold); }
.outline-gold {
    -webkit-text-stroke: 2px var(--lol-gold); color: transparent;
    text-shadow: 0 0 10px rgba(200, 170, 110, 0.3);
}

/* Painéis LoL Style */
.panel-lol {
    background: linear-gradient(135deg, var(--lol-deep-blue) 0%, var(--lol-dark-blue) 100%);
    border: 1px solid var(--lol-dark-accent);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5), 0 0 10px rgba(10, 200, 185, 0.1);
    position: relative;
}
.panel-lol::before {
    content: ''; position: absolute; top: -1px; left: 10%; right: 10%;
    height: 1px; background: linear-gradient(90deg, transparent, var(--lol-gold), transparent);
}

/* Fundo Flutuante */
.floating-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; overflow: hidden; pointer-events: none;
    background: 
        radial-gradient(circle at 15% 30%, rgba(10, 200, 185, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(200, 170, 110, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(10, 200, 185, 0.05) 0%, transparent 60%);
    animation: floatingBgPulse 8s ease-in-out infinite;
}

@keyframes floatingBgPulse {
    0%, 100% { filter: brightness(1) saturate(1); }
    50% { filter: brightness(1.08) saturate(1.1); }
}
.floating-bg::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: 
        conic-gradient(from 0deg, rgba(200, 170, 110, 0.03) 0deg, transparent 90deg),
        conic-gradient(from 90deg at 50% 50%, rgba(10, 200, 185, 0.04) 0deg, transparent 90deg);
    animation: rotateBg 30s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.hex-shape {
    position: absolute; font-size: 2rem; color: var(--lol-accent);
    opacity: 0.2; animation: floatAnim 15s infinite linear;
    filter: drop-shadow(0 0 8px var(--lol-accent)) drop-shadow(0 0 16px rgba(10, 200, 185, 0.4));
    text-shadow: 0 0 10px rgba(10, 200, 185, 0.6);
}
.hex-shape.blurred {
    opacity: 0.12; filter: blur(1.5px) drop-shadow(0 0 12px var(--lol-accent)) drop-shadow(0 0 20px rgba(10, 200, 185, 0.3));
}
.s1 { top: 10%; left: 10%; animation-duration: 18s; font-size: 3rem; animation-name: floatAnimGlow; }
.s2 { bottom: 20%; right: 15%; animation-duration: 25s; color: var(--lol-gold); animation-name: floatAnimGold; }
.s3 { top: 60%; left: 5%; animation-duration: 20s; animation-name: floatAnimGlow; }
.s4 { top: 30%; right: 30%; animation-duration: 30s; animation-name: floatAnimGlow; }
.s5 { top: 15%; right: 8%; animation-duration: 22s; animation-name: floatAnim2; color: var(--lol-accent); }
.s6 { bottom: 30%; left: 20%; animation-duration: 28s; animation-name: floatAnim3; color: var(--lol-gold); }
.s7 { top: 45%; right: 25%; animation-duration: 35s; animation-name: floatAnimGlow; font-size: 2.5rem; }
.s8 { bottom: 10%; right: 40%; animation-duration: 26s; animation-name: floatAnim2; font-size: 2.2rem; color: var(--lol-accent); }
.s9 { top: 70%; right: 10%; animation-duration: 32s; animation-name: floatAnim3; color: var(--lol-gold); font-size: 1.8rem; }
.s10 { bottom: 40%; left: 5%; animation-duration: 24s; animation-name: floatAnimGlow; font-size: 2rem; }

@keyframes floatAnimGlow {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.15; }
    25% { transform: translateY(-40px) rotate(90deg) scale(1.15); opacity: 0.25; }
    50% { transform: translateY(-60px) rotate(180deg) scale(1.2); opacity: 0.2; }
    75% { transform: translateY(-30px) rotate(270deg) scale(1.1); opacity: 0.22; }
    100% { transform: translateY(0) rotate(360deg) scale(1); opacity: 0.15; }
}

@keyframes floatAnimGold {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.15; filter: drop-shadow(0 0 8px #c8aa6e) drop-shadow(0 0 16px rgba(200, 170, 110, 0.4)); }
    25% { transform: translateY(-35px) rotate(90deg) scale(1.12); opacity: 0.23; filter: drop-shadow(0 0 12px #c8aa6e) drop-shadow(0 0 20px rgba(200, 170, 110, 0.6)); }
    50% { transform: translateY(-50px) rotate(180deg) scale(1.18); opacity: 0.2; filter: drop-shadow(0 0 15px #c8aa6e) drop-shadow(0 0 25px rgba(200, 170, 110, 0.5)); }
    75% { transform: translateY(-25px) rotate(270deg) scale(1.08); opacity: 0.22; filter: drop-shadow(0 0 10px #c8aa6e) drop-shadow(0 0 18px rgba(200, 170, 110, 0.4)); }
    100% { transform: translateY(0) rotate(360deg) scale(1); opacity: 0.15; filter: drop-shadow(0 0 8px #c8aa6e) drop-shadow(0 0 16px rgba(200, 170, 110, 0.4)); }
}
@keyframes floatAnim {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(1.1); }
    100% { transform: translateY(0) rotate(360deg) scale(1); }
}
@keyframes floatAnim2 {
    0% { transform: translateX(0) translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateX(20px) translateY(-20px) rotate(120deg) scale(1.05); }
    66% { transform: translateX(-15px) translateY(15px) rotate(240deg) scale(0.95); }
    100% { transform: translateX(0) translateY(0) rotate(360deg) scale(1); }
}
@keyframes floatAnim3 {
    0% { transform: translateY(0) translateX(0) scale(1); }
    25% { transform: translateY(-25px) translateX(25px) scale(1.1); }
    50% { transform: translateY(0) translateX(0) scale(0.9); }
    75% { transform: translateY(25px) translateX(-25px) scale(1.05); }
    100% { transform: translateY(0) translateX(0) scale(1); }
}

/* Navegação */
nav {
    display: flex; justify-content: space-between; padding: 1.2rem 8%;
    align-items: center; background: rgba(9, 20, 40, 0.95);
    position: sticky; top: 0; z-index: 100;
    border-bottom: 2px solid var(--lol-dark-accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.logo { font-size: 1.8rem; text-shadow: 0 0 10px var(--lol-accent); }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }

/* MENU HAMBURGER (Escondido no Desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--lol-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
.nav-links a {
    color: #a0a0a0; text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: 0.3s; position: relative; letter-spacing: 1px;
}
.nav-links a::after {
    content: attr(data-text); position: absolute; left: 0; top:0;
    color: var(--lol-gold); opacity: 0; transition: 0.3s;
    text-shadow: 0 0 10px var(--lol-gold);
}
.nav-links a:hover { color: transparent; }
.nav-links a:hover::after { opacity: 1; }

/* Botões Hextech */
.hex-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 30px; font-family: var(--font-tech); font-weight: bold;
    text-decoration: none; transition: all 0.3s; position: relative; overflow: hidden;
    clip-path: polygon(10% 0, 90% 0, 100% 25%, 100% 75%, 90% 100%, 10% 100%, 0 75%, 0 25%);
    border: none; cursor: pointer;
}
.hex-btn.glow {
    background: linear-gradient(180deg, var(--lol-accent) 0%, #057a70 100%);
    color: #fff; box-shadow: 0 0 15px rgba(10, 200, 185, 0.4), inset 0 0 5px rgba(255,255,255,0.3);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hex-btn.glow:hover {
    background: linear-gradient(180deg, #14e0ce 0%, #089c8f 100%);
    box-shadow: 0 0 25px rgba(10, 200, 185, 0.7);
}
.hex-btn.outline {
    background: transparent; color: var(--lol-gold);
    box-shadow: inset 0 0 0 2px var(--lol-gold);
}
.hex-btn.outline:hover {
    background: rgba(200, 170, 110, 0.1);
    box-shadow: inset 0 0 0 2px var(--lol-gold), 0 0 15px rgba(200, 170, 110, 0.4);
}
.small-btn { padding: 10px 20px; font-size: 0.85rem; width: 100%; }

/* Hero Section */
.hero {
    display: flex; align-items: center; justify-content: space-between;
    padding: 2rem 5% 5rem 5%; min-height: 85vh; flex-wrap: wrap; gap: 2rem;
}
.hero-content { flex: 1; min-width: 300px; }
.faction-icon {
    color: var(--lol-accent); font-family: var(--font-tech);
    margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.hero h1 { font-size: 4.5rem; margin: 10px 0; line-height: 0.9; }
.location { color: #888; margin-bottom: 40px; font-size: 1.1rem; }
.hero-buttons { display: flex; gap: 15px; margin-top: 40px; }

/* === CARD DE CAMPEÃO COM SEGREDOS GIGANTES === */
.hero-image { 
    flex: 1; display: flex; justify-content: center; min-width: 340px; 
    margin: 0 50px; /* Garante espaço nas laterais para as cartas abrirem */
}

.lol-champion-card {
    position: relative; width: 340px; z-index: 10;
    transform-style: preserve-3d; transition: margin 0.5s;
}

/* O Conteúdo Visível do Card Principal */
.main-card-content {
    background: linear-gradient(180deg, var(--lol-deep-blue) 0%, #051025 100%);
    border: 3px solid var(--lol-gold); box-shadow: 0 0 40px rgba(200, 170, 110, 0.25);
    padding: 6px; clip-path: polygon(12% 0, 100% 0, 100% 92%, 88% 100%, 0 100%, 0 8%);
    position: relative; z-index: 10; height: 100%; background-color: var(--lol-dark-blue);
}

/* --- CARTAS SECRETAS GIGANTES --- */
.secret-card {
    position: absolute; top: 0; left: 0;
    width: 340px; height: 100%; /* MESMA LARGURA E ALTURA DA PRINCIPAL */
    background: linear-gradient(180deg, var(--lol-deep-blue) 0%, #051025 100%);
    border: 3px solid var(--lol-gold); 
    clip-path: polygon(12% 0, 100% 0, 100% 92%, 88% 100%, 0 100%, 0 8%);
    z-index: -1; /* Fica ATRÁS */
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0; display: flex; flex-direction: column; padding: 6px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
}

.secret-role {
    margin-top: 10px; color: var(--lol-accent); font-weight: bold;
    font-family: var(--font-tech); font-size: 1.2rem;
    border-top: 1px solid var(--lol-dark-accent); padding-top: 10px;
}

/* Posicionamento Inicial */
.card-husband { transform: translateX(0) scale(0.9); }
.card-baby { transform: translateX(0) scale(0.9); }

/* --- HOVER EFFECT: REVELAR CARTAS GIGANTES --- */
/* Esposo vai 360px para a ESQUERDA */
.lol-champion-card:hover .card-husband {
    opacity: 1; transform: translateX(-360px) scale(1) rotate(-5deg); z-index: 5;
}
/* Bebê vai 360px para a DIREITA */
.lol-champion-card:hover .card-baby {
    opacity: 1; transform: translateX(360px) scale(1) rotate(5deg); z-index: 5;
}

/* Estilos Comuns */
.card-border { position: relative; border: 1px solid var(--lol-gold); padding: 4px; background: #000; }
.img-mask { width: 100%; height: 340px; overflow: hidden; position: relative; background: #070e1a; }
.champ-img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: 0.6s; }
.lol-champion-card:hover .champ-img { transform: scale(1.05); }

.champ-level {
    position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lol-dark-blue), var(--lol-deep-blue));
    border: 2px solid var(--lol-gold); border-radius: 50%; width: 55px; height: 55px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--lol-gold); box-shadow: 0 0 15px #000; z-index: 5;
}
.champ-level span { font-size: 0.6rem; font-weight: bold; }
.champ-level b { font-size: 1.3rem; line-height: 1; color: #fff; }

.champ-info { text-align: center; padding: 30px 10px 15px; color: var(--lol-gold-light); }
.champ-name { font-size: 1.8rem; margin: 0; text-shadow: 0 2px 4px #000; }
.champ-title { color: #a09b8c; font-size: 0.9rem; margin-bottom: 15px; font-style: italic; }

.stats-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; padding: 0 20px; }
.stat { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--lol-gold); }
.bar-container { flex: 1; height: 6px; background: #000; border: 1px solid var(--lol-dark-accent); }
.stat .bar { height: 100%; background: linear-gradient(90deg, var(--lol-gold), #f0e6d2); box-shadow: 0 0 8px var(--lol-gold); }

.abilities-container { display: flex; justify-content: center; gap: 15px; }
.ability-slot { position: relative; cursor: pointer; }
.ability-icon {
    width: 45px; height: 45px; background: var(--lol-dark-blue); border: 2px solid #5c5b57;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    color: var(--lol-gold); transition: 0.3s; box-shadow: inset 0 0 10px #000;
}
.ability-icon.ultimate {
    border-color: var(--lol-gold); box-shadow: 0 0 15px rgba(200, 170, 110, 0.5);
    color: #fff; background: radial-gradient(circle, #7a6a4a 0%, #091428 100%);
}
.ability-slot:hover .ability-icon { border-color: var(--lol-gold-light); transform: translateY(-3px); color: #fff; box-shadow: 0 0 15px var(--lol-accent); }
.key { display: block; font-size: 0.7rem; color: #5c5b57; margin-top: 4px; font-weight: bold; font-family: var(--font-tech); }

.tooltip .tooltiptext {
    visibility: hidden; width: 220px; background-color: rgba(9, 20, 40, 0.98);
    color: #ccc; text-align: center; border: 2px solid var(--lol-gold);
    padding: 12px; position: absolute; z-index: 100; bottom: 145%; left: 50%;
    transform: translateX(-50%); opacity: 0; transition: 0.3s; font-size: 0.85rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8); pointer-events: none;
}
.tooltip .tooltiptext b { color: var(--lol-gold); display: block; margin-bottom: 8px; font-family: var(--font-tech); border-bottom: 1px solid var(--lol-dark-accent); padding-bottom: 5px;}
.tooltip:hover .tooltiptext { visibility: visible; opacity: 1; }

/* Section Headers */
.container { padding: 6rem 10%; }
.section-header {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    margin-bottom: 4rem;
}
.section-title {
    font-size: 2.2rem; color: var(--lol-gold); text-shadow: 0 0 10px rgba(200, 170, 110, 0.4);
    margin: 0;
}
.header-deco {
    height: 2px; flex: 1; max-width: 150px;
    background: linear-gradient(90deg, transparent, var(--lol-gold), transparent);
    position: relative;
}
.header-deco::after {
    content: ''; position: absolute; width: 10px; height: 10px;
    background: var(--lol-gold); transform: rotate(45deg);
    top: -4px; box-shadow: 0 0 10px var(--lol-gold);
}
.header-deco.left::after { right: 0; } .header-deco.right::after { left: 0; }

/* Sobre Mim & Skills */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.bio-summary, .edu-item, .skill-category { padding: 25px; border-radius: 4px; }
.bio-summary h3, .education-list h3, .skill-category h3 {
    color: var(--lol-gold); margin-bottom: 1.5rem; font-size: 1.3rem;
    border-bottom: 2px solid var(--lol-dark-accent); padding-bottom: 10px;
}
.bio-summary p { color: #ccc; line-height: 1.8; margin-bottom: 1.5rem; }
.quote-box {
    background: rgba(10, 200, 185, 0.05); border-left: 4px solid var(--lol-accent);
    padding: 15px; font-style: italic; color: var(--lol-accent);
}
.education-list { display: flex; flex-direction: column; gap: 1.2rem; }
.edu-item { display: flex; gap: 20px; align-items: center; transition: 0.3s; }
.edu-item:hover { border-color: var(--lol-gold); transform: translateX(10px); box-shadow: 0 0 15px rgba(200, 170, 110, 0.2); }

.edu-icon {
    font-size: 2.2rem;
    color: var(--lol-gold);
    text-shadow: 0 0 10px rgba(200, 170, 110, 0.4);
    opacity: 0.8;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.edu-item:hover .edu-icon {
    opacity: 1;
    text-shadow: 0 0 20px rgba(200, 170, 110, 0.8);
    transform: scale(1.1);
}

.year {
    font-family: var(--font-tech); font-weight: bold; color: var(--lol-accent);
    font-size: 1.2rem; min-width: 70px; text-align: center;
}
.edu-info h4 { color: #fff; font-size: 1.1rem; margin-bottom: 5px; }
.edu-info p { color: #888; font-size: 0.9rem; }
.highlight-item { border-color: var(--lol-gold); }

.skills-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.skill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-tag {
    background: rgba(10, 200, 185, 0.05); border: 1px solid var(--lol-dark-accent);
    padding: 8px 15px; border-radius: 2px; font-size: 0.9rem; transition: 0.3s;
    font-family: var(--font-tech); color: var(--lol-accent);
}
.skill-tag:hover {
    border-color: var(--lol-accent); background: rgba(10, 200, 185, 0.15);
    color: #fff; box-shadow: 0 0 10px var(--lol-accent);
}

/* Projetos (Skin Cards - GIGANTES) */
.category-divider { text-align: center; margin-bottom: 3rem; position: relative; padding-bottom: 15px; }
.category-divider h3 {
    font-size: 1.5rem; color: var(--lol-gold-light); display: inline-block;
    background: var(--lol-dark-blue); padding: 0 20px; position: relative; z-index: 1;
}
.category-divider::after {
    content: ''; position: absolute; bottom: 25px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--lol-dark-accent), transparent); z-index: 0;
}

/* Seção de UX/Interface Cards */
.ux-cards-container {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 3rem;
    margin-top: 3rem; position: relative; z-index: 1;
}

.ux-story-card {
    max-width: 500px; background: linear-gradient(135deg, rgba(10, 20, 40, 0.6) 0%, rgba(5, 16, 37, 0.8) 100%);
    border: 2px solid var(--lol-dark-accent);
    overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(10, 200, 185, 0.1), inset 0 0 10px rgba(200, 170, 110, 0.05);
}
.ux-story-card:hover {
    border-color: var(--lol-gold);
    box-shadow: 0 0 30px rgba(200, 170, 110, 0.3), 0 0 50px rgba(10, 200, 185, 0.2), inset 0 0 20px rgba(200, 170, 110, 0.1);
    transform: translateY(-12px);
}

.ux-card-visual {
    position: relative; overflow: hidden; height: 280px;
    border-bottom: 2px solid var(--lol-dark-accent);
    transition: all 0.4s ease;
}
.ux-story-card:hover .ux-card-visual {
    border-bottom-color: var(--lol-gold);
}

.ux-card-visual img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.ux-story-card:hover .ux-card-visual img {
    transform: scale(1.08);
}

.ux-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(200, 170, 110, 0.2) 100%);
    pointer-events: none;
}

.ux-card-content {
    padding: 2rem;
}

.ux-card-title {
    font-family: var(--font-tech); font-size: 1.4rem; color: var(--lol-gold);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem;
}

.ux-card-subtitle {
    font-family: var(--font-tech); font-size: 0.85rem; color: var(--lol-accent);
    letter-spacing: 1px; margin-bottom: 1.5rem; text-transform: uppercase;
}

.ux-card-description {
    font-size: 0.95rem; color: #aaa; line-height: 1.6; margin-bottom: 1.5rem;
    font-weight: 300;
}

.ux-card-link {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--lol-gold); text-decoration: none; font-family: var(--font-tech);
    font-weight: bold; letter-spacing: 1px; font-size: 0.9rem;
    padding-bottom: 5px; border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.ux-card-link:hover {
    border-bottom-color: var(--lol-gold);
    color: #f0e6d2;
}
.ux-card-link i {
    transition: transform 0.3s ease;
}
.ux-card-link:hover i {
    transform: translateX(5px);
}

/* Seção de Champions/Jogos */
.champions-section {
    padding: 5rem 10%; background: linear-gradient(135deg, var(--lol-deep-blue) 0%, var(--lol-dark-blue) 100%);
    position: relative; overflow: hidden;
}
.champions-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(10, 200, 185, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 170, 110, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.champions-gallery {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem; margin-top: 3rem; position: relative; z-index: 1;
    padding-bottom: 3rem;
}

.champion-card {
    cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.champ-portrait {
    position: relative; overflow: hidden; aspect-ratio: 2/3;
    border: 2px solid var(--lol-dark-accent);
    background: linear-gradient(135deg, var(--lol-deep-blue) 0%, #051025 100%);
    box-shadow: 0 0 20px rgba(10, 200, 185, 0.1);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.champ-portrait.coming-soon {
    background: linear-gradient(135deg, rgba(9, 20, 40, 0.8), rgba(6, 15, 32, 0.8));
}

.coming-soon-text {
    font-family: var(--font-tech);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--lol-gold);
    text-shadow: 0 0 20px rgba(200, 170, 110, 0.6), 
                 0 0 40px rgba(10, 200, 185, 0.3);
    letter-spacing: 2px;
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

.champion-card:hover .coming-soon-text {
    opacity: 1;
    text-shadow: 0 0 30px rgba(200, 170, 110, 0.8), 
                 0 0 50px rgba(10, 200, 185, 0.4);
    transform: scale(1.1);
}

.champ-portrait img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.champ-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(200, 170, 110, 0.15) 100%);
    pointer-events: none;
}

.play-button {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: var(--lol-gold); color: var(--lol-dark-blue);
    padding: 12px 30px; font-family: var(--font-tech); font-weight: bold;
    letter-spacing: 1px; text-decoration: none; cursor: pointer;
    opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10; text-align: center; white-space: nowrap;
    box-shadow: 0 0 20px rgba(200, 170, 110, 0.5);
    border: none; display: flex; align-items: center; justify-content: center;
}
.play-button.disabled {
    cursor: not-allowed; background: rgba(200, 170, 110, 0.4);
    box-shadow: 0 0 10px rgba(200, 170, 110, 0.2);
}

.champion-card:hover .play-button {
    opacity: 1; transform: translate(-50%, -50%) scale(1);
}
.play-button:hover:not(.disabled) {
    background: #e6c9a8; box-shadow: 0 0 30px rgba(200, 170, 110, 0.8);
}

.champion-card:hover .champ-portrait {
    border-color: var(--lol-gold);
    box-shadow: 0 0 30px rgba(200, 170, 110, 0.4), 0 0 50px rgba(10, 200, 185, 0.2), inset 0 0 20px rgba(200, 170, 110, 0.1);
    transform: translateY(-12px) scaleY(1.02);
}
.champion-card:hover .champ-portrait img {
    transform: scale(1.1);
}

.champ-info-bar {
    padding: 1.5rem 1rem; text-align: center; background: linear-gradient(135deg, rgba(10, 20, 40, 0.8) 0%, rgba(5, 16, 37, 0.9) 100%);
    border: 1px solid var(--lol-dark-accent);
    border-top: none; transition: all 0.3s ease;
}
.champion-card:hover .champ-info-bar {
    border-color: var(--lol-gold);
    box-shadow: 0 0 15px rgba(200, 170, 110, 0.2);
}

.champ-title-name {
    font-family: var(--font-tech); font-size: 1.1rem; color: var(--lol-gold);
    letter-spacing: 1px; margin-bottom: 0.3rem; text-transform: uppercase;
}
.champ-type {
    font-size: 0.8rem; color: #888; font-family: var(--font-tech);
    letter-spacing: 0.5px;
}

.gallery { display: flex; flex-wrap: wrap; justify-content: center; gap: 4rem; padding-bottom: 3rem; }

/* 340px de largura e 580px altura */
.lol-skin-card {
    width: 340px; height: 580px; position: relative; perspective: 1000px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}
.lol-skin-card::before {
    content: ''; position: absolute; inset: -5px;
    background: linear-gradient(180deg, #4a3f2a, #c8aa6e, #4a3f2a);
    clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
    z-index: -1;
}
.card-frame {
    height: 100%; background: var(--lol-dark-blue);
    clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
    display: flex; flex-direction: column; border: 1px solid var(--lol-gold);
    transition: transform 0.3s ease;
}
.lol-skin-card:hover .card-frame { transform: translateY(-10px); }
.lol-skin-card:hover::before { background: linear-gradient(180deg, var(--lol-accent), #057a70); }

.card-visual { position: relative; height: 65%; overflow: hidden; }
.card-visual img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 3s ease-out; filter: brightness(0.8);
}
.lol-skin-card:hover img { transform: scale(1.15); filter: brightness(1); }

.card-title-bar {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(0deg, rgba(9,20,40,1) 0%, rgba(9,20,40,0.6) 100%);
    padding: 10px 15px; color: var(--lol-gold); font-size: 1.1rem;
    border-top: 1px solid var(--lol-gold); text-shadow: 0 2px 4px #000;
}

.card-details {
    flex: 1; padding: 15px 20px; background: var(--lol-deep-blue);
    display: flex; flex-direction: column; justify-content: space-between;
    border-top: 1px solid var(--lol-dark-accent); position: relative;
}
.card-details::after {
    content: ''; position: absolute; bottom: 5px; left: 20px; right: 20px; height: 2px;
    background-image: repeating-linear-gradient(90deg, var(--lol-dark-accent), var(--lol-dark-accent) 2px, transparent 2px, transparent 10px);
}
.card-tags { display: flex; gap: 10px; margin-bottom: 10px; }
.rune-tag {
    font-size: 0.75rem; color: var(--lol-accent); font-family: var(--font-tech);
    display: flex; align-items: center; gap: 5px;
}
.card-details p { font-size: 0.9rem; color: #ccc; line-height: 1.4; margin-bottom: 15px; }

/* Galeria de Assets */
.assets-gallery {
    padding: 5rem 10%; background: linear-gradient(135deg, var(--lol-deep-blue) 0%, var(--lol-dark-blue) 100%);
    position: relative;
}
.assets-gallery::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(10, 200, 185, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 170, 110, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.assets-container {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem; margin-top: 3rem; position: relative; z-index: 1;
    padding-bottom: 3rem;
}

/* Rodapé */
.footer-section { text-align: center; padding: 5rem 10% 2rem; background: #050a14; margin-top: 5rem; position: relative; }
.footer-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--lol-dark-blue), var(--lol-gold), var(--lol-dark-blue));
}
.contact-links { display: flex; justify-content: center; gap: 2rem; margin: 3rem 0; flex-wrap: wrap; }
.social-link {
    text-decoration: none; font-size: 1rem; display: flex; align-items: center; gap: 10px;
    padding: 12px 25px !important;
}
footer p { color: #666; font-size: 0.85rem; margin-top: 3rem; font-family: var(--font-tech); }

/* Responsivo */
@media (max-width: 768px) {
    .hero { 
        flex-direction: column-reverse; 
        text-align: center; 
        padding: 2rem 3% 5rem 3% !important;
        gap: 2rem;
    }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .about-split { grid-template-columns: 1fr; gap: 3rem; }
    nav { flex-direction: column; gap: 15px; padding: 1rem; }
    .hero-image { 
        width: 100%; 
        justify-content: center; 
        margin: 0;
        min-width: auto;
    }
    .lol-champion-card { 
        transform: scale(0.85);
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .section-header { flex-direction: column; gap: 10px; }
    .header-deco { display: none; }
    .hero-content { flex: 1; }
    
    /* Mobile: Cartas sobem em vez de ir pros lados */
    .lol-champion-card:hover .card-husband {
        left: 50%; top: -110px; transform: translateX(-60px) rotate(-10deg);
    }
    .lol-champion-card:hover .card-baby {
        right: 50%; top: -110px; transform: translateX(60px) rotate(10deg);
    }
}

/* =========================================
   MÍDIA QUERY - RESPONSIVO PARA CELULAR
   (Adicione isso no FINAL do seu style.css)
   ========================================= */

@media (max-width: 900px) {
    /* --- AJUSTES GERAIS --- */
    .hero h1 { font-size: 3rem; } /* Diminui o título gigante */
    .container { padding: 4rem 5%; } /* Menos espaçamento lateral nas seções */
    .section-header { flex-direction: column; gap: 10px; text-align: center; }
    .header-deco { display: none; } /* Remove as linhas decorativas dos títulos */

    /* --- NAVEGAÇÃO --- */
    nav {
        flex-direction: column; /* Empilha logo e links */
        gap: 1.5rem;
        padding: 1rem;
    }
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap; /* Permite quebrar linha se precisar */
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* --- HERO SECTION (CAPA) --- */
    .hero {
        flex-direction: column; /* Texto em cima, cards embaixo */
        text-align: center;
        padding-top: 7rem; /* Espaço para o menu empilhado */
        height: auto; /* Remove altura mínima */
        gap: 40px;
    }
    .hero-buttons { justify-content: center; }
    
    /* Remove a margem lateral que centralizava no desktop */
    .hero-image { margin: 0; width: 100%; min-width: auto; }

    /* --- A SOLUÇÃO PARA OS CARDS NO MOBILE --- */
    /* No celular, não tem "hover". Vamos mostrar as cartas secretas
       empilhadas abaixo da principal. */

    /* Ajusta o container principal para largura total, mas com limite */
    .lol-champion-card {
        width: 100%;
        max-width: 340px; /* Não deixa ficar maior que o original */
        transform-style: flat; /* Remove o 3D para facilitar o empilhamento */
        margin: 0 auto; /* Centraliza */
        /* Abre espaço embaixo para as cartas secretas aparecerem */
        margin-bottom: 450px; 
    }
    
    /* O Card principal (Sua foto) */
    .main-card-content {
        /* Garante que ele fique no topo da pilha */
        z-index: 20; 
    }

    /* As Cartas Secretas (Esposo e Bebê) */
    .secret-card {
        position: relative; /* Deixa de ser absolute */
        top: auto; left: auto; right: auto; /* Reseta posições */
        
        /* Faz elas ficarem um pouco menores que a principal */
        width: 90%; 
        height: auto; /* Altura automática baseada no conteúdo */
        margin: -20px auto 0; /* Sobe um pouco para dar efeito de sobreposição e centraliza */
        
        opacity: 1; /* TORNA VISÍVEL SEMPRE */
        z-index: 5; /* Fica abaixo da principal */
        transform: none !important; /* Reseta rotações e escalas */
        
        /* Sombra para destacar que estão "atrás/embaixo" */
        box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
    }
    
    /* Ajusta a imagem interna das cartas secretas para não ficar gigante */
    .secret-img { height: 220px; }

    /* Reseta os transforms específicos de cada carta */
    .card-husband, .card-baby { transform: none; }
    
    /* DESATIVA O EFEITO HOVER NO MOBILE */
    /* Isso é crucial para não bugar quando tocar na tela */
    .lol-champion-card:hover .card-husband,
    .lol-champion-card:hover .card-baby {
        transform: none;
        opacity: 1;
    }

    /* --- SEÇÃO SOBRE (Grid vira 1 coluna) --- */
    .about-split { grid-template-columns: 1fr; gap: 2rem; }

    /* --- PROJETOS (SKIN CARDS) --- */
    .gallery { gap: 3rem; }

    .lol-skin-card {
        /* O card agora ocupa 100% da largura disponível, até o máximo de 340px */
        width: 100%;
        max-width: 340px;
        /* A altura precisa ser automática ou proporcional para não esticar em telas muito estreitas */
        height: auto;
        aspect-ratio: 3/5; /* Tenta manter a proporção vertical elegante */
        min-height: 550px; /* Garante uma altura mínima para o conteúdo caber */
    }
    /* Ajusta a proporção da imagem dentro do card */
    .card-visual { height: 60%; }
    .card-details { flex: 1; }

    /* --- RODAPÉ --- */
    .contact-links { flex-direction: column; gap: 1rem; }
    .social-link { width: 100%; justify-content: center; }
}

/* Ajuste fino para telas muito pequenas (ex: iPhone SE antigo) */
@media (max-width: 380px) {
    .hero h1 { font-size: 2.5rem; }
    /* Diminui um pouco a altura das cartas secretas */
    .secret-img { height: 180px; } 
    .lol-champion-card { margin-bottom: 400px; }
}

/* Feixes de Luz Animados */
.light-beam {
    position: absolute; width: 100px; height: 500px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 200, 185, 0.3) 30%, rgba(10, 200, 185, 0.1) 70%, transparent 100%);
    filter: blur(30px); pointer-events: none;
    animation: beamSweep 8s ease-in-out infinite;
}
.light-beam.beam1 {
    left: 10%; top: -100px; 
    animation: beamSweep 8s ease-in-out infinite;
}
.light-beam.beam2 {
    left: 35%; top: -100px; 
    animation: beamSweep 9s ease-in-out infinite 1s;
    background: linear-gradient(180deg, transparent 0%, rgba(200, 170, 110, 0.25) 30%, rgba(200, 170, 110, 0.08) 70%, transparent 100%);
}
.light-beam.beam3 {
    right: 25%; top: -100px; 
    animation: beamSweep 10s ease-in-out infinite 2s;
}
.light-beam.beam4 {
    right: 5%; top: -100px; 
    animation: beamSweep 11s ease-in-out infinite 1.5s;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 200, 185, 0.2) 30%, rgba(10, 200, 185, 0.05) 70%, transparent 100%);
}

@keyframes beamSweep {
    0%, 100% { 
        transform: translateY(0) rotateZ(-5deg) scaleY(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(200px) rotateZ(-2deg) scaleY(1.05);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(400px) rotateZ(0deg) scaleY(1.1);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(200px) rotateZ(2deg) scaleY(1.05);
        opacity: 0.5;
    }
}

/* Página de Contato */
.contact-page {
    min-height: 100vh; padding: 5rem 10%; position: relative; z-index: 1;
}

.contact-content {
    margin-top: 3rem;
}

.contact-intro {
    text-align: center; margin-bottom: 4rem;
}
.contact-intro h3 {
    font-family: var(--font-tech); font-size: 2rem; color: var(--lol-gold);
    letter-spacing: 2px; margin-bottom: 1rem;
}
.contact-intro p {
    font-size: 1.1rem; color: #aaa;
}

.contact-methods {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; margin-bottom: 5rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.7) 0%, rgba(5, 16, 37, 0.8) 100%);
    border: 2px solid var(--lol-dark-accent);
    padding: 2rem; text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(10, 200, 185, 0.1);
}
.contact-card:hover {
    border-color: var(--lol-gold);
    box-shadow: 0 0 30px rgba(200, 170, 110, 0.3), 0 0 50px rgba(10, 200, 185, 0.2);
    transform: translateY(-8px);
}

.contact-card-icon {
    font-size: 3rem; color: var(--lol-accent); margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.contact-card:hover .contact-card-icon {
    color: var(--lol-gold);
    text-shadow: 0 0 20px rgba(200, 170, 110, 0.6);
    transform: scale(1.1);
}

.contact-card h4 {
    font-family: var(--font-tech); font-size: 1.2rem;
    color: var(--lol-gold); margin-bottom: 0.5rem;
}
.contact-card p {
    color: #888; font-size: 0.9rem; margin-bottom: 1.5rem;
}
.contact-card .hex-btn {
    width: 100%; display: flex; justify-content: center;
}

.contact-form-section {
    max-width: 600px; margin: 4rem auto; padding: 3rem;
    border: 2px solid var(--lol-dark-accent);
}
.contact-form-section h3 {
    font-family: var(--font-tech); font-size: 1.5rem; color: var(--lol-gold);
    margin-bottom: 2rem; text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block; font-family: var(--font-tech); color: var(--lol-gold);
    margin-bottom: 0.5rem; font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
    width: 100%; padding: 12px 15px;
    background: rgba(5, 16, 37, 0.8); color: #ccc;
    border: 1px solid var(--lol-dark-accent);
    font-family: var(--font-text); font-size: 1rem;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--lol-gold);
    box-shadow: 0 0 10px rgba(200, 170, 110, 0.3);
}
.form-group textarea {
    resize: vertical;
}

.contact-form-section .hex-btn {
    width: 100%; margin-top: 1rem;
}

.form-note {
    text-align: center; font-size: 0.85rem; color: #888;
    margin-top: 1.5rem; font-style: italic;
}

.back-button {
    text-align: center; margin-top: 4rem;
}
.back-button .hex-btn {
    display: inline-flex; align-items: center; gap: 10px;
}

.contact-footer {
    text-align: center; padding: 2rem; color: #888;
    border-top: 1px solid var(--lol-dark-accent);
    margin-top: 5rem;
}

/* ==================== BLOG SECTION ==================== */

.blog-hero {
    background: linear-gradient(135deg, rgba(9, 20, 40, 0.95), rgba(6, 15, 32, 0.95)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230ac8b9;stop-opacity:0.05" /><stop offset="100%" style="stop-color:%23c8aa6e;stop-opacity:0.05" /></linearGradient></defs><rect width="1200" height="400" fill="url(%23grad)"/></svg>');
    background-attachment: fixed;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--lol-gold);
}

.blog-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--lol-gold);
    text-shadow: 0 0 20px rgba(200, 170, 110, 0.6), 
                 0 0 40px rgba(10, 200, 185, 0.3);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.blog-hero p {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
}

.blog-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.construction-banner {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(15, 30, 50, 0.6), rgba(20, 35, 55, 0.6));
    border: 2px solid var(--lol-gold);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.construction-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(200, 170, 110, 0.05) 10px,
        rgba(200, 170, 110, 0.05) 20px
    );
    pointer-events: none;
}

.construction-banner i {
    font-size: 4rem;
    color: var(--lol-gold);
    animation: rotateTool 2s linear infinite;
    text-shadow: 0 0 20px rgba(200, 170, 110, 0.6);
}

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

.construction-banner h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--lol-gold);
    text-shadow: 0 0 20px rgba(200, 170, 110, 0.6), 
                 0 0 40px rgba(10, 200, 185, 0.3);
    letter-spacing: 3px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.construction-banner p {
    color: var(--lol-accent);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

/* CATEGORIAS DO BLOG */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.8s ease-out;
    margin-bottom: 2rem;
}

.category-card {
    background: linear-gradient(135deg, rgba(10, 50, 60, 0.7), rgba(15, 35, 50, 0.7));
    border: 2px solid var(--lol-dark-accent);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 170, 110, 0.2), transparent);
    transition: left 0.5s ease;
}

.category-card:hover {
    border-color: var(--lol-gold);
    box-shadow: 0 0 30px rgba(200, 170, 110, 0.4),
                inset 0 0 15px rgba(10, 200, 185, 0.1);
    transform: translateY(-8px);
}

.category-card:hover::before {
    left: 100%;
}

.category-icon {
    font-size: 3rem;
    color: var(--lol-accent);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    color: var(--lol-gold);
    transform: scale(1.2) rotate(10deg);
}

.category-card h3 {
    font-family: var(--font-tech);
    font-size: 1.4rem;
    color: var(--lol-gold);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-card p {
    font-size: 0.95rem;
    color: rgba(240, 230, 210, 0.8);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Estilo para category-card como link */
.category-card {
    text-decoration: none;
    cursor: pointer;
    display: block;
}

/* HEADER DA PÁGINA DE CATEGORIA */
.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.back-button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(10, 200, 185, 0.2), rgba(200, 170, 110, 0.1));
    border: 1px solid var(--lol-accent);
    border-radius: 6px;
    color: var(--lol-accent);
    font-family: var(--font-tech);
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-button:hover {
    background: linear-gradient(135deg, rgba(10, 200, 185, 0.4), rgba(200, 170, 110, 0.2));
    color: var(--lol-gold);
    border-color: var(--lol-gold);
    transform: translateX(-5px);
}

.back-button i {
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.8s ease-out;
}

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

.blog-card {
    background: linear-gradient(135deg, rgba(15, 30, 50, 0.8), rgba(20, 35, 55, 0.8));
    border: 1px solid rgba(200, 170, 110, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.blog-card:hover {
    border-color: var(--lol-gold);
    box-shadow: 0 0 25px rgba(200, 170, 110, 0.4),
                inset 0 0 20px rgba(10, 200, 185, 0.1);
    transform: translateY(-8px);
}

.blog-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--lol-dark-blue);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(200, 170, 110, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lol-dark-blue);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .play-overlay {
    opacity: 1;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(10, 200, 185, 0.3), rgba(200, 170, 110, 0.2));
    color: var(--lol-accent);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    width: fit-content;
    font-family: var(--font-tech);
}

.blog-card-title {
    font-family: var(--font-tech);
    font-size: 1.3rem;
    color: var(--lol-gold);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: rgba(240, 230, 210, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(240, 230, 210, 0.6);
    border-top: 1px solid rgba(200, 170, 110, 0.2);
    padding-top: 1rem;
}

.blog-card-date,
.blog-card-read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--lol-gold), #d4a574);
    color: var(--lol-dark-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.blog-date {
    color: var(--lol-accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.blog-card-content h3 {
    color: var(--lol-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h3 {
    color: var(--lol-accent);
    text-shadow: 0 0 10px rgba(10, 200, 185, 0.6);
}

.blog-excerpt {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.read-more {
    color: var(--lol-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lol-accent);
    transition: width 0.3s ease;
}

.read-more:hover {
    color: var(--lol-gold);
    gap: 0.8rem;
}

.read-more:hover::after {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 3rem;
    }

    .blog-hero p {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-section {
        margin: 2rem auto;
    }
}

/* ==================== AUDIO PLAYER ==================== */

.audio-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(9, 20, 40, 0.95), rgba(10, 50, 60, 0.95));
    border: 2px solid var(--lol-gold);
    border-radius: 50px;
    padding: 10px 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(200, 170, 110, 0.3),
                inset 0 0 20px rgba(10, 200, 185, 0.1);
    z-index: 999;
    animation: slideInUp 0.5s ease-out;
}

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

.audio-btn {
    background: linear-gradient(135deg, var(--lol-gold), #d4a574);
    border: none;
    color: var(--lol-dark-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(200, 170, 110, 0.4);
}

.audio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(200, 170, 110, 0.6),
                inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.audio-btn.playing {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(200, 170, 110, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(200, 170, 110, 0.8),
                    0 0 50px rgba(10, 200, 185, 0.4);
    }
}

.volume-slider {
    width: 100px;
    height: 5px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--lol-accent), var(--lol-gold));
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--lol-gold);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(200, 170, 110, 0.6);
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(200, 170, 110, 0.8);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--lol-gold);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(200, 170, 110, 0.6);
    transition: all 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(200, 170, 110, 0.8);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .audio-player {
        bottom: 20px;
        right: 20px;
        gap: 8px;
        padding: 8px 12px;
    }

    .audio-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .volume-slider {
        width: 80px;
    }

    /* ===== MENU HAMBURGER NO MOBILE ===== */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(9, 20, 40, 0.98);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 2px solid var(--lol-dark-accent);
        padding: 0;
    }

    .nav-links.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-links li {
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--lol-dark-accent);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 0.8rem 1rem;
        display: block;
    }

    /* ===== CARDS SECRETOS NO MOBILE ===== */
    .secret-card {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: scale(0.7);
        transition: all 0.4s ease;
        z-index: 5;
        width: 280px;
        height: auto;
        cursor: pointer;
    }

    .secret-card.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(0.9);
    }

    .card-husband {
        left: -100px;
        top: 20px;
    }

    .card-baby {
        right: -100px;
        top: 20px;
    }

    .card-husband.visible {
        left: -120px;
        top: 10px;
        transform: scale(0.95);
    }

    .card-baby.visible {
        right: -120px;
        top: 10px;
        transform: scale(0.95);
    }
    }

    .card-baby.visible {
        right: -180px;
        top: 30px;
    }
}

/* GRID DE ÚLTIMOS ARTIGOS */
.latest-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.8s ease-out;
}

.article-card-small {
    background: linear-gradient(135deg, rgba(15, 30, 50, 0.7), rgba(20, 35, 55, 0.7));
    border: 1px solid rgba(200, 170, 110, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.article-card-small:hover {
    border-color: var(--lol-gold);
    box-shadow: 0 0 25px rgba(200, 170, 110, 0.4),
                inset 0 0 20px rgba(10, 200, 185, 0.1);
    transform: translateY(-8px);
}

.article-card-small-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--lol-dark-blue);
}

.article-card-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card-small:hover .article-card-small-image img {
    transform: scale(1.08);
}

.article-card-small-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card-small-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(10, 200, 185, 0.3), rgba(200, 170, 110, 0.2));
    color: var(--lol-accent);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
    width: fit-content;
    font-family: var(--font-tech);
}

.article-card-small-title {
    font-family: var(--font-tech);
    font-size: 1.05rem;
    color: var(--lol-gold);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    flex-grow: 1;
    text-transform: uppercase;
}

.article-card-small-meta {
    font-size: 0.75rem;
    color: rgba(240, 230, 210, 0.6);
    border-top: 1px solid rgba(200, 170, 110, 0.2);
    padding-top: 0.6rem;
}
.article-full {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(10, 30, 50, 0.5), rgba(15, 35, 55, 0.5));
    border: 1px solid rgba(200, 170, 110, 0.3);
    border-radius: 8px;
    padding: 3rem;
    animation: fadeIn 0.8s ease-out;
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(10, 200, 185, 0.3), rgba(200, 170, 110, 0.2));
    border: 1px solid var(--lol-accent);
    color: var(--lol-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: var(--font-tech);
}

.article-full h1 {
    font-family: var(--font-tech);
    font-size: 2.5rem;
    color: var(--lol-gold);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(200, 170, 110, 0.4);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    color: rgba(240, 230, 210, 0.7);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(240, 230, 210, 0.9);
    margin-bottom: 3rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    color: var(--lol-accent);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.article-content ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    color: rgba(240, 230, 210, 0.85);
}

.article-content strong {
    color: var(--lol-gold);
}

.article-footer {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 170, 110, 0.2);
}

.article-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(10, 200, 185, 0.2), rgba(200, 170, 110, 0.1));
    border: 1px solid var(--lol-accent);
    border-radius: 6px;
    color: var(--lol-accent);
    font-family: var(--font-tech);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: linear-gradient(135deg, rgba(10, 200, 185, 0.4), rgba(200, 170, 110, 0.2));
    color: var(--lol-gold);
    border-color: var(--lol-gold);
    transform: scale(1.05);
}

.like-btn.liked {
    background: linear-gradient(135deg, rgba(200, 100, 100, 0.3), rgba(200, 170, 110, 0.2));
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.like-btn.liked i {
    color: #ff6b6b;
}

.like-btn.liked:hover {
    background: linear-gradient(135deg, rgba(200, 100, 100, 0.5), rgba(200, 170, 110, 0.3));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .article-full {
        padding: 1.5rem;
    }

    .article-full h1 {
        font-size: 1.8rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .article-actions {
        flex-wrap: wrap;
    }
}
    .secret-card {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: scale(0.9);
        transition: all 0.3s ease;
    }

    .secret-card.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1);
    }
}