@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Teko:wght@500;600;700&display=swap');

/* ============================================================
   WOLF-JAURÍA · ASIDE / INDEX
   Versión limpia
   ============================================================ */

:root {
    --wj-accent: #e69a00;
    --wj-accent-2: #ff5a18;
    --wj-text: #242424;
    --wj-muted: #60646b;
    --wj-surface: #ffffff;
    --wj-surface-soft: #f5f6f8;
    --wj-border: rgba(0, 0, 0, .10);
    --wj-shadow: rgba(0, 0, 0, .14);

    --slider-bg: #f7f8fa;
    --slider-card: rgba(255, 255, 255, .94);
    --slider-border: #d89500;
    --slider-shadow: rgba(216, 149, 0, .28);
    --slider-title: #b97500;
    --slider-text: #252525;
}

body.dark-mode {
    --wj-text: #f1f1f1;
    --wj-muted: #c8c8c8;
    --wj-surface: #111318;
    --wj-surface-soft: #191c22;
    --wj-border: rgba(255, 255, 255, .08);
    --wj-shadow: rgba(0, 0, 0, .50);

    --slider-bg: #050811;
    --slider-card: rgba(45, 26, 4, .94);
    --slider-border: #ff9d00;
    --slider-shadow: rgba(255, 157, 0, .45);
    --slider-title: #ffb400;
    --slider-text: #ffffff;
}

.aside-wolfteam,
.aside-wolfteam button,
.aside-wolfteam input,
.aside-wolfteam select,
.aside-wolfteam textarea,
.aside-wolfteam a {
    font-family: 'Rajdhani', sans-serif;
}

.aside-wolfteam {
    width: 100%;
    background: #fff;
    color: var(--wj-text);
    font-weight: 500;
}

body.dark-mode .aside-wolfteam {
    background: #0d0d0d;
}

/* ============================================================
   TIPOGRAFÍA
   ============================================================ */

.patch-title,
.novedades-title,
.eventos-title,
.tienda-title,
.comunidad-title {
    font-family: 'Teko', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 1.8px;
}

.slide-info h2,
.patch-texto h3,
.novedad-info h3,
.evento-info h3,
.comunidad-info h3,
.home-votacion-contenido h3,
.tienda-card h3,
.tienda-info h3 {
    font-family: 'Teko', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: .5px;
}

.slide-info p,
.patch-texto p,
.novedad-info p,
.evento-info p,
.tienda-text,
.comunidad-info p,
.home-votacion-contenido p,
.tienda-card p,
.tienda-info p {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
}

.btn-slider,
.btn-patch,
.btn-more,
.btn-novedad,
.btn-evento,
.btn-tienda,
.btn-comunidad,
.home-votacion-boton {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: .3px;
}

/* ============================================================
   SLIDER PRINCIPAL
   ============================================================ */

.slider-noticias {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 450px;
    background: var(--slider-bg);
    border: 2px solid var(--slider-border);
    border-radius: 20px;
    box-shadow:
        0 0 22px var(--slider-shadow),
        inset 0 0 35px rgba(255, 255, 255, .15);
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .7s ease-in-out;
}

.slider {
    position: relative;
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    background: var(--slider-bg);
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.45) contrast(1.2);
    transition: transform .5s ease, filter .5s ease;
}

.slider:hover img {
    transform: scale(1.05);
    filter: brightness(.60) contrast(1.25);
}

body.dark-mode .slider img {
    filter: brightness(.85) contrast(1.15);
}

.slide-info {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 2;
    max-width: 500px;
    padding: 20px 25px;
    background: var(--slider-card);
    border-left: 4px solid var(--slider-border);
    border-radius: 12px;
    color: var(--slider-title);
    box-shadow: 0 0 24px var(--slider-shadow);
}

.slide-info h2 {
    margin-bottom: 10px;
    font-size: 36px;
    color: var(--slider-title);
    text-shadow: 0 0 12px var(--slider-shadow);
}

.slide-info p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--slider-text);
}

.btn-slider {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #ffa500, #ff4500);
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 140, 0, .60), 0 0 15px rgba(255, 69, 0, .40) inset;
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-slider:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 35px rgba(255, 140, 0, .80), 0 0 25px rgba(255, 69, 0, .70) inset;
}

.slider-controls span.prev,
.slider-controls span.next {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    transform: translateY(-50%);
    pointer-events: auto;
    cursor: pointer;
    font-size: 40px;
    color: #fff;
    background: linear-gradient(145deg, #333, #555);
    border: 2px solid #ffa500;
    border-radius: 50%;
    text-shadow: 0 0 6px #ff8c00, 0 0 15px rgba(255, 165, 0, .70);
    box-shadow: 0 0 15px #ff8c00, inset 0 0 10px #ff4500, 0 4px 8px rgba(0, 0, 0, .50);
    transition: all .3s ease;
}

.slider-controls span.prev { left: 15px; }
.slider-controls span.next { right: 15px; }

.slider-controls span.prev:hover,
.slider-controls span.next:hover {
    color: #ff4500;
    transform: translateY(-50%) scale(1.2) rotate(-5deg);
    background: linear-gradient(145deg, #222, #444);
    box-shadow: 0 0 25px #ff8c00, inset 0 0 15px #ff4500, 0 6px 12px rgba(0, 0, 0, .60);
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    display: flex;
    transform: translateX(-50%);
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    margin: 0 6px;
    background: rgba(255, 140, 0, .30);
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
}

.slider-dots .dot.active {
    background: #ff4500;
    box-shadow: 0 0 12px #ffa500, 0 0 20px #ff4500;
}

/* ============================================================
   NOTAS DEL PARCHE
   Modo claro: blanco / gris suave, sin capas amarillas.
   ============================================================ */

.patch-notes {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 120px 20px;
    text-align: center;
    color: #232323;
    background: linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
}

.patch-notes::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 70px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(244, 245, 247, 0), #f4f5f7 100%);
}

body.dark-mode .patch-notes {
    color: #fff;
    background: linear-gradient(180deg, #0d0d0d 0%, #1f1a12 100%);
}

body.dark-mode .patch-notes::after {
    background: linear-gradient(to bottom, rgba(31, 26, 18, 0), rgba(31, 26, 18, 1));
}

.patch-title {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
    font-size: 54px;
    color: #b97800;
    text-shadow: 0 4px 18px rgba(185, 120, 0, .18);
}

.patch-title::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(218, 145, 0, .18) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: .18;
    transform: rotate(-15deg) scale(1.2);
    pointer-events: none;
}

body.dark-mode .patch-title {
    color: #ffd700;
    text-shadow: 0 0 25px rgba(255, 215, 0, .80), 0 0 50px rgba(255, 215, 0, .40);
}

.patch-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1600px;
    min-height: 500px;
    margin: 0 auto 50px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--wj-border);
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
    transition: transform .3s ease, box-shadow .3s ease;
}

.patch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .16), 0 0 0 1px rgba(230, 154, 0, .18);
}

body.dark-mode .patch-card {
    background: linear-gradient(145deg, #2a1f0d, #3f2e12);
    border-color: rgba(255, 215, 0, .18);
    box-shadow: 0 0 40px rgba(255, 215, 0, .60), 0 10px 50px rgba(0, 0, 0, .70);
}

.patch-texto {
    flex: 1;
    min-width: 350px;
    padding: 50px;
    text-align: left;
    background: #fff;
    border-radius: 12px;
}

body.dark-mode .patch-texto {
    background: linear-gradient(145deg, #3f2e12, #5c450f);
    box-shadow: 0 6px 25px rgba(255, 215, 0, .40);
}

.patch-texto h3 {
    margin-bottom: 25px;
    font-size: 34px;
    color: #b97800;
    text-shadow: none;
}

.patch-texto p {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.8;
    color: #30343a;
}

body.dark-mode .patch-texto p {
    color: #ffeaa0;
}

.btn-patch {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg, #d98e00, #ffb800);
    color: #111;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(217, 142, 0, .24);
    transition: all .3s ease;
}

.btn-patch:hover {
    background: #ffb800;
    box-shadow: 0 0 22px rgba(255, 184, 0, .45);
}

.patch-imagen {
    flex: 1;
    min-width: 350px;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.patch-imagen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.patch-imagen img:hover { transform: scale(1.05); }

.patch-more { margin-top: 30px; }

.btn-more {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #c98200;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: all .3s ease;
}

.btn-more:hover {
    background: #ffb800;
    border-color: #ffb800;
    color: #111;
    box-shadow: 0 0 20px rgba(255, 184, 0, .35);
}

body.dark-mode .btn-more {
    color: #ffd700;
    border-color: #ffd700;
}

/* ============================================================
   NOVEDADES
   ============================================================ */

.novedades {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(180deg, #f4f5f7 0%, #ffffff 100%);
}

body.dark-mode .novedades {
    background: linear-gradient(150deg, #0d0d0d 0%, #1a1a1a 100%);
}

.novedades .particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.novedades .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(230, 154, 0, .55) 0%, transparent 70%);
    border-radius: 50%;
    opacity: .45;
    animation: fall 8s linear infinite;
    transform: translateY(-50px) translateX(var(--x-start)) scale(var(--scale));
}

body.dark-mode .novedades .particle {
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    opacity: .70;
}

@keyframes fall {
    0%   { transform: translateY(-20px) translateX(var(--x-start)) scale(var(--scale)); opacity: 0; }
    10%  { opacity: 1; }
    80%  { transform: translateY(100vh) translateX(var(--x-end)) scale(var(--scale)); opacity: .7; }
    100% { opacity: 0; }
}

.novedades-title {
    position: relative;
    z-index: 2;
    margin-bottom: 90px;
    font-size: 54px;
    color: #b97800;
    text-shadow: 0 4px 18px rgba(185, 120, 0, .18);
}

body.dark-mode .novedades-title {
    color: #ffd700;
    text-shadow: 0 0 20px #ffd700, 0 0 50px rgba(0, 255, 247, .35);
}

.novedades-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 50px;
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
}

.novedad-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--wj-border);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform .45s ease, box-shadow .45s ease;
}

.novedad-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .17), 0 0 0 1px rgba(230, 154, 0, .18);
}

body.dark-mode .novedad-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #333 100%);
    border-color: rgba(255, 215, 0, .15);
    box-shadow: 0 0 40px #ffd700, 0 0 30px rgba(0, 255, 247, .35) inset;
}

.novedad-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-bottom: 3px solid #d99100;
}

.novedad-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .6s ease;
}

.novedad-card:hover .novedad-img img {
    transform: scale(1.08);
    filter: brightness(1.06) contrast(1.05);
}

.novedad-info {
    padding: 40px;
    text-align: left;
}

.novedad-info h3 {
    margin-bottom: 20px;
    font-size: 32px;
    color: #b97800;
    text-shadow: none;
}

.novedad-info p {
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 1.7;
    color: #333;
}

body.dark-mode .novedad-info h3,
body.dark-mode .novedad-info p {
    color: #ffd700;
}

body.dark-mode .novedad-info h3 {
    text-shadow: 0 0 18px rgba(255, 215, 0, .50);
}

.btn-novedad {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(90deg, #e59b00, #ffba1b);
    color: #111;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 8px 22px rgba(229, 155, 0, .24);
    transition: all .3s ease;
}

.btn-novedad:hover {
    background: linear-gradient(90deg, #ffb000, #ffd166);
    box-shadow: 0 0 24px rgba(255, 176, 0, .38);
}

body.dark-mode .btn-novedad {
    background: linear-gradient(90deg, #ffd700, #00fff7);
    box-shadow: 0 12px 40px #ffd700, 0 0 35px #00fff7 inset;
}

/* ============================================================
   EVENTOS
   ============================================================ */

.eventos {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    text-align: center;
    color: #222;
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
    transition: background .5s ease;
}

body.dark-mode .eventos {
    color: #fff;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
}

.eventos-title {
    position: relative;
    z-index: 1;
    margin-bottom: 90px;
    font-size: 54px;
    color: #b97800;
    text-shadow: 0 4px 18px rgba(185, 120, 0, .18);
}

body.dark-mode .eventos-title {
    color: #ffb800;
    text-shadow: 0 0 20px #ffb800, 0 0 50px rgba(0, 255, 247, .35);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    max-width: 1600px;
    margin: 0 auto;
}

.evento-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    border: 1px solid var(--wj-border);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    transition: transform .45s ease, box-shadow .45s ease;
}

.evento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18), 0 0 0 1px rgba(230, 154, 0, .18);
}

body.dark-mode .evento-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #333 100%);
    border-color: rgba(255, 215, 0, .15);
    box-shadow: 0 0 35px rgba(255, 215, 0, .40), 0 8px 35px rgba(0, 255, 247, .25) inset;
}

.evento-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: filter .5s ease, transform .5s ease;
}

.evento-card:hover .evento-img {
    filter: brightness(1.06);
    transform: scale(1.025);
}

.evento-info {
    position: absolute;
    left: 25px;
    bottom: 25px;
    max-width: 60%;
    padding: 25px 30px;
    text-align: left;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    backdrop-filter: blur(7px);
    transition: all .4s ease;
}

body.dark-mode .evento-info {
    background: linear-gradient(145deg, rgba(26, 26, 26, .90), rgba(51, 51, 51, .75));
    border-color: rgba(255, 215, 0, .16);
    box-shadow: 0 0 40px rgba(255, 215, 0, .70), 0 0 25px rgba(0, 255, 247, .40) inset;
}

.evento-info h3 {
    margin-bottom: 18px;
    font-size: 32px;
    color: #b97800;
    text-shadow: none;
}

.evento-info p {
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    text-shadow: none;
}

body.dark-mode .evento-info h3 { color: #ffb800; }
body.dark-mode .evento-info p { color: #fff1c2; }

.btn-evento {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(90deg, #e59b00, #ffba1b);
    color: #111;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 8px 22px rgba(229, 155, 0, .24);
    transition: all .3s ease;
}

.btn-evento:hover {
    background: linear-gradient(90deg, #ffb000, #ffd166);
    box-shadow: 0 0 24px rgba(255, 176, 0, .38);
}

body.dark-mode .btn-evento {
    background: linear-gradient(90deg, #ffb800, #00fff7);
    box-shadow: 0 12px 35px #ffb800, 0 0 25px #00fff7 inset;
}

/* ============================================================
   TIENDA
   Se mantiene más cinematográfica porque usa una imagen propia.
   ============================================================ */

.tienda {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, #fefefe 0%, #e8e8e8 100%);
}

body.dark-mode .tienda {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
}

.tienda-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 120%;
    height: 120%;
    object-fit: cover;
    filter: brightness(.60) contrast(1.2);
    transform: scale(1.1);
    animation: parallaxBg 15s infinite alternate;
}

@keyframes parallaxBg {
    0%   { transform: translateX(0) scale(1.1) translateY(0); }
    50%  { transform: translateX(-15px) scale(1.12) translateY(-10px); }
    100% { transform: translateX(0) scale(1.1) translateY(0); }
}

.tienda::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 255, 247, .20), transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, .20), transparent 70%);
    mix-blend-mode: overlay;
}

.tienda-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 30px 35px;
    overflow: hidden;
    background: rgba(20, 20, 20, .35);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    box-shadow: 0 14px 45px rgba(0, 0, 0, .34);
    backdrop-filter: blur(16px);
    transition: transform .5s ease, box-shadow .5s ease;
}

.tienda-content:hover {
    transform: scale(1.04);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .44), 0 0 30px rgba(255, 184, 0, .18);
}

.tienda-content::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .25) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: .25;
    animation: particlesMove 10s linear infinite;
}

@keyframes particlesMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.tienda-title {
    margin-bottom: 25px;
    font-size: 56px;
    color: #fff;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .65), 0 0 18px rgba(255, 184, 0, .35);
}

.tienda-text {
    margin-bottom: 35px;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .70);
}

.btn-tienda {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(90deg, #e59b00, #ff5a18);
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 90, 24, .30);
    transition: all .3s ease;
}

.btn-tienda:hover {
    background: linear-gradient(90deg, #ffb000, #ff7040);
    box-shadow: 0 0 28px rgba(255, 116, 64, .45);
}

.animar {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.animar.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   COMUNIDAD
   ============================================================ */

.comunidad {
    position: relative;
    padding: 60px 20px 70px;
    text-align: center;
    color: #222;
    background: linear-gradient(180deg, #f4f5f7 0%, #ffffff 100%);
}

body.dark-mode .comunidad {
    color: #fff;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 0, 0, .70), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, .70), transparent 60%),
        #0d0d0d;
}

.comunidad-title {
    margin-bottom: 70px;
    font-size: 48px;
    color: #b97800;
    text-shadow: 0 4px 18px rgba(185, 120, 0, .18);
}

body.dark-mode .comunidad-title {
    color: #ffb800;
    text-shadow: 0 0 20px rgba(255, 215, 0, .70), 0 0 50px rgba(0, 255, 247, .30);
}

.comunidad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1700px;
    margin: 0 auto;
}

.comunidad-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    perspective: 1000px;
}

.comunidad-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--wj-border);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .11);
    transform-style: preserve-3d;
    transition: transform .5s ease, box-shadow .5s ease;
}

body.dark-mode .comunidad-card-inner {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, .07);
}

.comunidad-card:hover .comunidad-card-inner {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .17), 0 0 0 1px rgba(230, 154, 0, .16);
}

body.dark-mode .comunidad-card:hover .comunidad-card-inner {
    box-shadow: 0 0 60px rgba(255, 215, 0, .35), 0 0 45px rgba(0, 255, 247, .22) inset;
}

.comunidad-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.comunidad-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.comunidad-card:hover .comunidad-img img {
    transform: scale(1.08);
}

.comunidad-info {
    padding: 30px;
    text-align: left;
}

.comunidad-info h3 {
    margin-bottom: 12px;
    font-size: 26px;
    color: #b97800;
    text-shadow: none;
}

.comunidad-info p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

body.dark-mode .comunidad-info h3 { color: #00fff7; }
body.dark-mode .comunidad-info p { color: #ddd; }

.btn-comunidad {
    display: inline-block;
    padding: 16px 30px;
    background: linear-gradient(90deg, #e59b00, #ffba1b);
    color: #111;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(229, 155, 0, .24);
    transition: all .3s ease;
}

.btn-comunidad:hover {
    background: linear-gradient(90deg, #ffb000, #ffd166);
    box-shadow: 0 0 24px rgba(255, 176, 0, .38);
}

body.dark-mode .btn-comunidad {
    background: linear-gradient(90deg, #ffb800, #00fff7);
    box-shadow: 0 0 20px #ffb800, 0 0 15px #00fff7 inset;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
    .comunidad-grid { grid-template-columns: repeat(2, 1fr); }
    .comunidad-card { height: 430px; }
    .comunidad-img { height: 240px; }
}

@media (max-width: 1024px) {
    .patch-title,
    .novedades-title { font-size: 38px; }

    .eventos-title { font-size: 42px; }
    .tienda-title { font-size: 44px; }

    .patch-title { margin-bottom: 50px; }
    .novedades-title { margin-bottom: 60px; }
    .eventos-title { margin-bottom: 70px; }

    .patch-texto h3,
    .evento-info h3 { font-size: 26px; }

    .novedad-info h3 { font-size: 24px; }

    .patch-texto p,
    .novedad-info p,
    .evento-info p { font-size: 16px; }

    .btn-patch,
    .btn-more,
    .btn-novedad,
    .btn-evento { font-size: 16px; padding: 10px 24px; }

    .novedad-img { height: 280px; }
    .evento-img { height: 300px; }
    .tienda { height: 400px; }
    .tienda-text { font-size: 18px; }
    .btn-tienda { font-size: 16px; padding: 12px 28px; }
}

@media (max-width: 768px) {
    .slide-info {
        left: 20px;
        bottom: 25px;
        max-width: 80%;
        padding: 15px 18px;
    }

    .slide-info h2 { font-size: 26px; }
    .slide-info p { font-size: 14px; }
    .btn-slider { font-size: 14px; padding: 10px 20px; }

    .patch-card { flex-direction: column; }
    .patch-texto { padding: 30px; text-align: center; }
    .patch-imagen { height: 250px; }

    .eventos-title,
    .tienda-title,
    .comunidad-title { font-size: 32px; }

    .eventos-title { margin-bottom: 50px; }
    .comunidad-title { margin-bottom: 40px; }

    .evento-info {
        left: 20px;
        bottom: 20px;
        max-width: 80%;
        padding: 15px 20px;
        text-align: center;
    }

    .evento-info h3,
    .comunidad-info h3 { font-size: 20px; }

    .evento-info p,
    .comunidad-info p { font-size: 14px; }

    .btn-evento,
    .btn-comunidad { font-size: 14px; padding: 10px 22px; }

    .tienda { height: 300px; }
    .tienda-text { font-size: 14px; }
    .tienda-content { padding: 20px 15px; }
    .btn-tienda { font-size: 14px; padding: 10px 20px; }

    .comunidad-grid { grid-template-columns: 1fr; }
    .comunidad-card { height: auto; }
    .comunidad-img { height: 220px; }
}

@media (max-width: 600px) {
    .aside-wolfteam,
    .slider-noticias {
        max-width: 100vw;
        overflow-x: hidden !important;
    }

    .slider-noticias {
        position: relative;
        width: 100%;
        height: 560px;
        overflow: hidden !important;
        border-radius: 18px;
    }

    .slider-container {
        display: flex;
        width: 100% !important;
        height: 100%;
    }

    .slider {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 100%;
        flex: 0 0 100% !important;
        overflow: hidden;
        box-sizing: border-box !important;
        background: var(--slider-bg) !important;
    }

    .slider img {
        position: relative;
        z-index: 2;
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        height: 285px !important;
        object-fit: contain !important;
        object-position: center center !important;
        background: var(--slider-bg) !important;
        filter: brightness(.90) contrast(1.15);
    }

    .slide-info {
        position: relative !important;
        left: auto !important;
        bottom: auto !important;
        z-index: 2;
        width: calc(100% - 28px) !important;
        max-width: none !important;
        margin: 12px auto 0 !important;
        padding: 16px !important;
        border-left: none !important;
        border-top: 3px solid var(--slider-border);
        border-radius: 16px;
        background: var(--slider-card) !important;
        text-align: left;
        box-sizing: border-box;
    }

    .slide-info h2 {
        margin-bottom: 8px;
        font-size: 23px !important;
        line-height: 1.15;
        white-space: normal;
    }

    .slide-info p {
        margin-bottom: 12px;
        font-size: 14px !important;
        line-height: 1.35;
        white-space: normal;
    }

    .slider-controls span.prev,
    .slider-controls span.next {
        top: 265px !important;
        z-index: 10 !important;
        width: 42px !important;
        height: 42px !important;
        line-height: 38px !important;
        font-size: 30px !important;
        transform: translateY(-50%) !important;
    }

    .slider-controls span.prev { left: 12px !important; }
    .slider-controls span.next { right: 12px !important; }
    .slider-dots { bottom: 12px !important; z-index: 10 !important; }

    .slider::before,
    .slider::after,
    .slider-noticias::before,
    .slider-noticias::after {
        content: '';
        position: absolute;
        top: 20px;
        z-index: 6;
        width: 22px;
        height: calc(100% - 40px);
        background: var(--slider-bg) !important;
        pointer-events: none;
    }

    .slider::before,
    .slider-noticias::before { left: 0; }

    .slider::after,
    .slider-noticias::after { right: 0; }

    body.dark-mode .slider img { background: #02040a !important; }

    body.dark-mode .slider::before,
    body.dark-mode .slider::after,
    body.dark-mode .slider-noticias::before,
    body.dark-mode .slider-noticias::after {
        background: #05070d !important;
    }

    .novedades,
    .eventos {
        padding: 70px 12px;
        overflow-x: hidden !important;
    }

    .novedades-content,
    .novedades-grid,
    .eventos-grid {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    .novedades-grid,
    .eventos-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .novedad-card,
    .evento-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .novedad-img { height: 220px !important; }

    .novedad-img img,
    .evento-img {
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
    }

    .evento-card {
        display: flex !important;
        flex-direction: column !important;
    }

    .evento-img { height: 230px !important; }

    .evento-info {
        position: relative !important;
        left: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 0 16px 16px !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 420px) {
    .patch-notes {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        box-sizing: border-box !important;
    }

    .patch-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 22px 16px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .patch-card h2 {
        font-size: 26px !important;
        line-height: 1.2 !important;
        word-break: normal !important;
    }

    .patch-card p {
        font-size: 16px !important;
        line-height: 1.45 !important;
    }

    .patch-notes img,
    .patch-card img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        object-fit: contain !important;
    }
}
