@import url('https://fonts.cdnfonts.com/css/open-sauce-sans');

/* Paleta de colores KoneaTV */
:root {
    --konea-primary: #5e17eb;      /* Púrpura */
    --konea-secondary: #f0b722;    /* Dorado */
    --konea-dark: #000000;         /* Negro */
    --konea-light: #ffffff;        /* Blanco */
    --konea-bg: #0a0a0a;          /* Negro muy oscuro */
}

body {
    font-family: 'Open Sauce Sans', Arial, sans-serif;
    margin: 0;
    background: var(--konea-dark);
    color: var(--konea-light);
    position: relative;
    overflow-x: hidden; 
}

.wallpaper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    --color: rgba(94, 23, 235, 0.1);
    background-color: var(--konea-bg);
    background-image: linear-gradient(0deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%, transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%, transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%, transparent);
    background-size: 55px 55px;
}

/* ===== HEADER KONEA ===== */
.konea-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background: linear-gradient(90deg, var(--konea-dark) 0%, rgba(94, 23, 235, 0.1) 100%);
    height: 70px;
    box-shadow: 0 2px 12px rgba(94, 23, 235, 0.15);
    margin-bottom: 0;
    border-bottom: 1px solid rgba(94, 23, 235, 0.2);
}

.konea-header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.konea-logo-link {
    text-decoration: none;
    margin-right: 2rem;
    display: flex;
    align-items: center;
}

.konea-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.konea-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--konea-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.konea-logo-accent {
    color: var(--konea-secondary);
}

.konea-nav {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.konea-nav a {
    color: var(--konea-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
}

.konea-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--konea-secondary);
    display: none;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.konea-nav a:hover {
    color: var(--konea-secondary);
}

.konea-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.konea-search-container {
    display: flex;
    align-items: center;
    background: rgba(94, 23, 235, 0.15);
    border: 2px solid var(--konea-secondary);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.konea-search-container:hover,
.konea-search-container:focus-within {
    background: rgba(94, 23, 235, 0.25);
    box-shadow: 0 0 15px rgba(94, 23, 235, 0.3);
}

.konea-search-input {
    background: transparent;
    border: none;
    color: var(--konea-light);
    font-size: 1rem;
    width: 150px;
    outline: none;
    padding: 0.3rem 0.5rem;
}

.konea-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.konea-search-btn {
    background: transparent;
    border: none;
    color: var(--konea-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin-left: 0.5rem;
}

.konea-search-btn:hover {
    color: var(--konea-light);
    transform: scale(1.15);
}

.konea-icon {
    color: var(--konea-light);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.konea-icon:hover {
    color: var(--konea-secondary);
    transform: scale(1.1);
}

.konea-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    border: 2px solid var(--konea-secondary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .konea-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        padding: 0 1rem;
        margin: 0;
        box-shadow: 0 2px 12px rgba(94, 23, 235, 0.15);
    }

    .konea-header-left {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .konea-logo-link {
        display: block;
        line-height: 1;
    }

    .konea-logo-img {
        height: 30px;
        width: auto;
        display: block;
        vertical-align: middle;
    }

    .konea-nav {
        display: none !important;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(90deg, var(--konea-dark) 0%, rgba(94, 23, 235, 0.1) 100%);
        padding: 1rem 0;
        margin: 0;
        border-bottom: 1px solid rgba(94, 23, 235, 0.2);
        z-index: 1000;
        width: 100%;
    }

    .konea-nav.active {
        display: flex !important;
    }

    .konea-nav a {
        padding: 0.8rem 1.5rem;
        display: block;
        text-align: left;
        border-bottom: 1px solid rgba(94, 23, 235, 0.1);
        margin: 0;
    }

    .konea-header-right {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .konea-search-container {
        display: none !important;
    }

    .konea-menu-toggle {
        display: flex !important;
        background: none;
        border: none;
        color: var(--konea-light);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0;
        margin: 0;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        line-height: 1;
    }
    }
}

@media (max-width: 900px) {
    .konea-header {
        flex-wrap: wrap;
        height: auto;
        padding: 1rem;
    }

    .konea-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }

    .konea-header-right {
        order: 4;
        flex-basis: 100%;
        margin-top: 0.5rem;
    }

    .konea-search-container {
        width: 100%;
    }

    .konea-search-input {
        width: 100%;
    }

    .konea-logo-link {
        margin-bottom: 0.5rem;
    }
}

/* FOOTER KONEA */
.footer {
    background: linear-gradient(135deg, #1a0033 0%, #0a0a0a 100%);
    color: var(--konea-light);
    padding: 3rem 0 1.5rem 0;
    font-family: 'Open Sauce Sans', Arial, sans-serif;
    font-size: 1rem;
    border-top: 1px solid rgba(94, 23, 235, 0.2);
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2rem;
}

.footer-col {
    flex: 0 1 200px;
    min-width: 200px;
    margin-bottom: 1rem;
    text-align: left;
}

.footer-brand {
    flex: 1 1 280px;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
}

.footer-brand h2 {
    color: var(--konea-light);
    font-size: 1.7rem;
    font-weight: 900;
    margin: 0 0 0.7rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-brand p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo-link {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-social {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-social a {
    color: var(--konea-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--konea-secondary);
    transform: translateY(-3px) scale(1.15);
}

.footer-col h3 {
    color: var(--konea-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 1.02rem;
}

.footer-links li a:hover {
    color: var(--konea-secondary);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-contact li {
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 1.02rem;
}

.footer-contact a {
    color: var(--konea-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--konea-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(94, 23, 235, 0.2);
    margin-top: 1.5rem;
    padding-top: 1rem;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .footer-col,
    .footer-brand {
        min-width: 0;
        max-width: 100%;
    }

    .footer-brand {
        margin-bottom: 1.5rem;
    }
}

/* ===== HERO SECTION ===== */
.konea-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-width: 100vw;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0033 0%, #2d0052 50%, #1a0033 100%);
    padding: 0;
    margin-top: 0;
}

.konea-hero-video {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    height: 56.25vw;
    max-height: 100vh;
    object-fit: cover;
    border-radius: 0;
    display: block;
    margin: 0;
    padding: 0;
    background: var(--konea-dark);
    pointer-events: none;
    user-select: none;
}

.konea-hero-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5vw;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0,0,0,0.6), transparent);
}

.konea-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
}

.konea-hero-subtitle {
    color: var(--konea-light);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.konea-hero-title {
    color: var(--konea-secondary);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin: 0.5rem 0 0 0;
    line-height: 1;
}

@media (max-width: 1200px) {
    .konea-hero-video {
        height: 50vw;
    }

    .konea-hero-subtitle {
        font-size: 1.5rem;
    }

    .konea-hero-title {
        font-size: 2.8rem;
    }
}

/* ===== NOTICIAS SECTION ===== */
.noticias-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--konea-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--konea-secondary), var(--konea-primary));
    border-radius: 2px;
}

.section-subtitle {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

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

.noticia-card {
    background: rgba(94, 23, 235, 0.05);
    border: 1px solid rgba(94, 23, 235, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.noticia-card:hover {
    background: rgba(94, 23, 235, 0.1);
    border-color: var(--konea-secondary);
    box-shadow: 0 8px 30px rgba(94, 23, 235, 0.2);
    transform: translateY(-5px);
}

.noticia-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2d0052 0%, #5e17eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--konea-secondary);
    font-size: 3rem;
    overflow: hidden;
}

.noticia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.noticia-date {
    font-size: 0.85rem;
    color: var(--konea-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.noticia-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--konea-light);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.noticia-excerpt {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 1.2rem;
    flex: 1;
    line-height: 1.5;
}

.noticia-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    align-content: flex-start;
}

.noticia-tag {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    background: rgba(240, 183, 34, 0.15);
    color: var(--konea-secondary);
    border-radius: 2px;
    font-size: 0.6rem;
    font-weight: 600;
    margin: 0 0.2rem 0.5rem 0;
    border: 1px solid rgba(240, 183, 34, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    width: auto;
}

.noticia-date {
    width: 100%;
    margin-bottom: 0.4rem;
}

.noticia-title {
    width: 100%;
}

.noticia-excerpt {
    width: 100%;
}

.noticia-link {
    width: 100%;
}

.noticia-link {
    color: var(--konea-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.noticia-link:hover {
    gap: 1rem;
}

.noticia-link::after {
    content: '→';
}

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

    .section-title {
        font-size: 2rem;
    }
}

/* ===== ENTREVISTAS SECTION ===== */
.entrevistas-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.entrevistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.entrevista-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.entrevista-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d0052 0%, #5e17eb 100%);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--konea-secondary);
    font-size: 4rem;
    overflow: hidden;
}

.entrevista-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.entrevista-card:hover .entrevista-bg {
    background: linear-gradient(135deg, #f0b722 0%, #ff8c00 100%);
    color: var(--konea-dark);
}

.entrevista-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.9));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.entrevista-card:hover .entrevista-info {
    transform: translateY(0);
}

.entrevista-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--konea-light);
    margin-bottom: 0.3rem;
}

.entrevista-role {
    font-size: 0.9rem;
    color: var(--konea-secondary);
    font-weight: 600;
}

/* ===== RESUMENES SECTION ===== */
.resumenes-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.resumenes-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.resumen-item {
    background: rgba(94, 23, 235, 0.05);
    border: 1px solid rgba(94, 23, 235, 0.2);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.resumen-item:hover {
    background: rgba(94, 23, 235, 0.1);
    border-color: var(--konea-secondary);
    box-shadow: 0 8px 30px rgba(94, 23, 235, 0.2);
    transform: translateX(10px);
}

.resumen-thumbnail {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2d0052 0%, #5e17eb 100%);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--konea-secondary);
}

.resumen-content {
    flex: 1;
}

.resumen-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--konea-light);
    margin-bottom: 0.8rem;
}

.resumen-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.resumen-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
}

@media (max-width: 900px) {
    .resumen-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .resumen-thumbnail {
        width: 100px;
        height: 100px;
    }
}

/* ===== LES SECTION ===== */
.les-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(94, 23, 235, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(94, 23, 235, 0.3);
    border-radius: 20px;
    text-align: center;
}

.les-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--konea-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.les-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.les-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 0.5rem auto;
    display: block;
}

.les-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.les-team {
    background: rgba(94, 23, 235, 0.1);
    border: 2px solid var(--konea-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    overflow: hidden;
}

.les-team:hover {
    background: rgba(240, 183, 34, 0.15);
    border-color: var(--konea-primary);
    box-shadow: 0 8px 30px rgba(94, 23, 235, 0.3);
    transform: scale(1.05);
}

.les-team-logo {
    width: 100%;
    max-width: 140px;
    height: 140px;
    object-fit: contain;
}

.les-team-logo-placeholder {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(94, 23, 235, 0.2);
    border: 2px dashed var(--konea-secondary);
    border-radius: 8px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--konea-secondary);
}

.les-team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--konea-light);
    margin: 0;
}

.les-team-region {
    font-size: 0.9rem;
    color: var(--konea-secondary);
    margin-top: 0.5rem;
}

main {
    margin-top: 0;
    padding: 0;
}
/* ===== RESPONSIVE MÓVIL COMPLETO ===== */
@media (max-width: 768px) {
    /* Footer responsivo */
    .footer-container {
        gap: 1rem;
        padding: 0 1rem;
        text-align: center;
    }

    .footer-col {
        flex: 1 1 100%;
        min-width: 100%;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .footer-brand {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer-logo-img {
        display: block;
        margin: 0 auto 0.5rem auto;
    }

    .footer-social {
        gap: 0.7rem;
        justify-content: center;
    }

    .footer-social a {
        font-size: 1.2rem;
    }

    .footer-col h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .footer-links li,
    .footer-contact li {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    /* Noticias responsivas */
    .noticias-section {
        padding: 0 1rem;
        margin: 0.5rem auto;
    }

    .noticias-grid {
        gap: 1rem;
    }

    .noticia-card {
        min-height: 300px;
    }

    .noticia-title {
        font-size: 1.1rem;
    }

    .noticia-excerpt {
        font-size: 0.85rem;
    }

    /* LES grid responsivo */
    .les-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .les-section {
        padding: 0 1rem;
    }

    /* Entrevistas responsivas */
    .entrevistas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .entrevista-name {
        font-size: 1rem;
    }

    /* Resúmenes responsivos */
    .resumen-item {
        gap: 1rem;
    }

    .resumen-thumbnail {
        width: 80px;
        height: 80px;
    }

    .resumen-title {
        font-size: 1rem;
    }

    /* Sección noticias */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* Muy pequeño */
    .footer-col {
        flex: 1 1 100%;
        min-width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .footer-brand {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer-logo-img {
        display: block;
        margin: 0 auto 0.5rem auto;
    }

    .footer-social {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .footer-col:not(.footer-brand) h3 {
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center !important;
    }

    .footer-links li,
    .footer-contact li {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .les-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .les-team-name {
        font-size: 0.8rem;
    }

    .les-logo {
        height: 40px;
    }

    .les-title {
        font-size: 1.5rem;
    }

    .entrevistas-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .noticia-card {
        min-height: 250px;
    }

    .noticias-grid {
        gap: 0.8rem;
    }
}

/* ===== SEARCH PAGE ===== */
.search-section {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.search-container h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--konea-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.search-query {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.search-query strong {
    color: var(--konea-secondary);
}

.results-count {
    color: #999;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.no-results {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(94, 23, 235, 0.05);
    border: 1px solid rgba(94, 23, 235, 0.2);
    border-radius: 8px;
}

.no-results i {
    font-size: 4rem;
    color: var(--konea-secondary);
    margin-bottom: 1rem;
    display: block;
    opacity: 0.5;
}

.no-results p {
    color: #ccc;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.no-results p:first-of-type {
    color: var(--konea-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .search-section {
        padding: 0 1rem;
    }

    .search-container h1 {
        font-size: 1.8rem;
    }

    .search-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .no-results {
        padding: 2rem 1rem;
    }

    .no-results i {
        font-size: 3rem;
    }
}

/* ===== EQUIPOS LISTA SIDEBAR ===== */
.equipos-lista-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    background: rgba(94, 23, 235, 0.1);
    border: 1px solid rgba(94, 23, 235, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 0;
}

.equipo-sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(94, 23, 235, 0.05);
    border: 1px solid rgba(94, 23, 235, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.equipo-sidebar-item:hover {
    background: rgba(94, 23, 235, 0.1);
    border-color: rgba(94, 23, 235, 0.3);
}

.equipo-sidebar-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.equipo-sidebar-nombre {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--konea-light);
    word-wrap: break-word;
}

.les-team-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.les-team-link:hover {
    transform: scale(1.05);
}