/* ===== ESTILOS EXCLUSIVOS DE LANDING ===== */
/* Nota: Las variables globales, header y footer están en global.css */

/* Hero Fullscreen */
.hero-fullscreen {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    color: var(--blanco);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--rosa-claro);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

/* Hero Simple */
.hero-simple h1 {
    font-size: 3rem;
    color: var(--blanco);
    margin-bottom: 10px;
}

.hero-simple p {
    color: var(--rosa-claro);
    font-size: 1.2rem;
}

/* Categorías */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
    width: 100%;
}

.category-card {
    height: 300px;
    background-color: var(--gris-plomo);
    border: 1px solid var(--rosa-claro);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
}

.category-card:hover {
    background-color: var(--rosa-claro);
    transform: translateY(-10px);
}

.category-card h3 {
    color: var(--rosa-claro);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.category-card:hover h3 {
    color: var(--negro);
}

/* Foro Preview */
.forum-preview {
    margin-top: 100px;
    border-top: 1px solid var(--gris-plomo);
    padding-top: 40px;
}

.forum-box {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    color: var(--rosa-claro);
}

/* Ticker (Cinta rosada) */
.ticker-container {
    background-color: var(--rosa-claro);
    color: var(--negro);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-top: 2px solid var(--negro);
    border-bottom: 2px solid var(--negro);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-move {
    display: inline-block;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-move:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    padding: 0 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.ticker-item::before {
    content: "★";
    margin-right: 15px;
    color: var(--negro);
}

/* Animación específica del ticker */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Landing */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 250px;
    }

    .hero-simple h1 {
        font-size: 2rem;
    }

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

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

    .ticker-item {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}
/* ===== VISTA PREVIA DEL FORO (SOLO PARA LANDING) ===== */
.forum-preview {
    margin-top: 100px;
    border-top: 1px solid var(--gris-plomo);
    padding-top: 40px;
}

.forum-box {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    color: var(--rosa-claro);
}