/* ═══════════════════════════════════════════════════════════════
   HOME SECTIONS - Diseño Profesional Figma
   Color oficial: Naranja #ff6b35
   Tipografía sutil y balanceada
   MÁRGENES GLOBALES: 40px laterales para TODAS las secciones
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   SECCIONES DE CATEGORÍAS
   ═══════════════════════════════════════════════════════════════ */
.section-categories {
    padding: 50px 40px;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.category-section {
    margin-bottom: 50px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.category-title h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-link {
    font-size: 12px;
    font-weight: 600;
    color: #ff6b35;
    transition: color 0.3s ease;
    text-decoration: none;
}

.view-link:hover {
    color: #e85a28;
}

/* ═══════════════════════════════════════════════════════════════
   GRID 5 COLUMNAS - Actualidad
   ═══════════════════════════════════════════════════════════════ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.news-card {
    background: #ffffff;
    overflow: hidden;
}

.card-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 10px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.96);
}

.news-card:hover .card-image img {
    transform: scale(1.04);
    filter: brightness(1);
}

.card-body {
    padding: 0;
}

.card-category {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.card-body h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 6px 0;
    color: #1a1a1a;
}

.card-body h3 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.news-card:hover .card-body h3 a {
    color: #ff6b35;
}

.card-date {
    display: block;
    font-size: 10px;
    color: #999;
    margin-bottom: 6px;
    font-weight: 400;
}

.card-excerpt {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT FEATURED - Política (SIMETRÍA PERFECTA)
   1 artículo grande = altura de 3 artículos sidebar
   ═══════════════════════════════════════════════════════════════ */
.featured-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
}

/* Artículo Principal - Izquierda */
.featured-main-post {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-main-image {
    display: block;
    flex: 1;
    overflow: hidden;
    margin-bottom: 12px;
}

.featured-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.96);
}

.featured-main-post:hover .featured-main-image img {
    transform: scale(1.04);
    filter: brightness(1);
}

.featured-main-body {
    padding: 0;
}

.featured-main-body h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #1a1a1a;
}

.featured-main-body h3 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.featured-main-post:hover .featured-main-body h3 a {
    color: #ff6b35;
}

/* Sidebar Posts - Derecha (3 artículos con altura igual) */
.featured-sidebar-posts {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-post-item {
    flex: 1;
    display: flex;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ececec;
}

.sidebar-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sidebar-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar-post-content h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px 0;
    color: #1a1a1a;
}

.sidebar-post-content h4 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.sidebar-post-item:hover .sidebar-post-content h4 a {
    color: #ff6b35;
}

.sidebar-excerpt {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    margin: 6px 0;
    font-weight: 400;
}

.read-more {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e85a28;
}

.sidebar-post-image {
    flex-shrink: 0;
    width: 120px;
    height: 85px;
    overflow: hidden;
    border-radius: 2px;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.96);
}

.sidebar-post-item:hover .sidebar-post-image img {
    transform: scale(1.04);
    filter: brightness(1);
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT DEPORTES - 1 grande arriba + 3 grid + banner lateral
   ═══════════════════════════════════════════════════════════════ */
.deportes-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.deportes-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Artículo Featured Grande (Arriba) */
.deportes-featured {
    display: grid;
    grid-template-columns: 470px 1fr;
    gap: 20px;
    background: #ffffff;
}

.deportes-featured-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.deportes-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.96);
}

.deportes-featured:hover .deportes-featured-image img {
    transform: scale(1.04);
    filter: brightness(1);
}

.deportes-featured-body {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.featured-badge {
    display: inline-block;
    background: #ffd700;
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
    width: fit-content;
}

.deportes-featured-body h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.deportes-featured-body h3 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.deportes-featured:hover .deportes-featured-body h3 a {
    color: #ff6b35;
}

.featured-meta,
.card-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.featured-meta .author,
.card-meta .author {
    font-weight: 700;
    text-transform: uppercase;
}

.featured-meta .location,
.card-meta .location {
    font-weight: 400;
}

.featured-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Grid 3 Artículos (Abajo) */
.deportes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.deportes-card {
    background: #ffffff;
}

.deportes-card-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 10px;
}

.deportes-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.96);
}

.deportes-card:hover .deportes-card-image img {
    transform: scale(1.04);
    filter: brightness(1);
}

.deportes-card-body h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    color: #1a1a1a;
}

.deportes-card-body h4 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.deportes-card:hover .deportes-card-body h4 a {
    color: #ff6b35;
}

/* Banner Lateral Sticky */
.deportes-banner {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.banner-sticky {
    background: #f8f8f8;
    padding: 16px;
    border-radius: 4px;
    text-align: center;
}

.banner-sticky img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   BANNERS - Publicidad
   ═══════════════════════════════════════════════════════════════ */
.banner-section {
    padding: 30px 40px;
    background: #fafafa;
    max-width: 1400px;
    margin: 0 auto;
}

.banner-full {
    text-align: center;
}

.ad-label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.banner-full img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   GRID 3 COLUMNAS - Mini Posts
   ═══════════════════════════════════════════════════════════════ */
.section-grid {
    padding: 50px 40px;
    background: #fafafa;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mini-category {
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.mini-header h3 {
    font-size: 15px;
    font-weight: 800;
    margin: 0;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-header a {
    font-size: 11px;
    font-weight: 600;
    color: #ff6b35;
    transition: color 0.3s ease;
    text-decoration: none;
}

.mini-header a:hover {
    color: #e85a28;
}

.mini-posts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mini-post {
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.mini-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mini-post h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 4px 0;
}

.mini-post a {
    color: #1a1a1a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.mini-post:hover a {
    color: #ff6b35;
}

.mini-post time {
    font-size: 10px;
    color: #999;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Desktop grande */
@media (max-width: 1400px) {
    .featured-layout {
        grid-template-columns: 1fr 380px;
    }
}

/* Laptop */
@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .featured-layout {
        grid-template-columns: 1fr 350px;
        gap: 24px;
    }
    
    .deportes-layout {
        grid-template-columns: 1fr 280px;
    }
    
    .deportes-featured {
        grid-template-columns: 400px 1fr;
        gap: 16px;
    }
    
    .deportes-featured-body h3 {
        font-size: 22px;
    }
    
    .featured-main-body h3 {
        font-size: 22px;
    }
    
    .sidebar-post-content h4 {
        font-size: 15px;
    }
    
    .sidebar-post-image {
        width: 110px;
        height: 78px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .featured-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .deportes-layout {
        grid-template-columns: 1fr;
    }
    
    .deportes-featured {
        grid-template-columns: 1fr;
    }
    
    .deportes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-main-post {
        height: auto;
    }
    
    .featured-sidebar-posts {
        height: auto;
    }
    
    .mini-grid {
        gap: 20px;
    }
    
    .category-title h2,
    .section-header h2 {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-categories,
    .section-grid,
    .banner-section,
    .columnistas-section,
    .videos-section,
    .sociales-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .section-categories,
    .section-grid {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    
    .columnistas-section,
    .videos-section,
    .sociales-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    
    .category-section {
        margin-bottom: 35px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    
    .deportes-grid {
        grid-template-columns: 1fr;
    }
    
    .mini-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .category-title h2,
    .section-header h2 {
        font-size: 17px;
    }
    
    .card-body h3 {
        font-size: 15px;
    }
    
    .featured-main-body h3,
    .deportes-featured-body h3 {
        font-size: 20px;
    }
    
    .sidebar-post-content h4 {
        font-size: 14px;
    }
    
    .sidebar-post-image {
        width: 90px;
        height: 65px;
    }
    
    .mini-category {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .category-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .sidebar-post-item {
        flex-direction: column-reverse;
    }
    
    .sidebar-post-image {
        width: 100%;
        height: 180px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECCIÓN COLUMNISTAS - CON MÁRGENES LATERALES
   ═══════════════════════════════════════════════════════════════ */
.columnistas-section {
    padding: 60px 40px;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.columnistas-header {
    margin-bottom: 40px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.columnistas-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.columnistas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Grid de 5 columnas para Opinión */
.columnistas-grid-5 {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 32px;
}

.columnista-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.columnista-card a {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.columnista-card:hover {
    transform: translateY(-4px);
}

.columnista-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    filter: grayscale(100%);
    transition: filter 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f0f0f0;
}

.columnista-card:hover .columnista-avatar {
    filter: grayscale(0%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.columnista-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Asegurar que Gravatar Enhanced también sea circular */
.columnista-avatar .avatar-gravatar {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.columnista-nombre {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.columnista-titulo {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-body);
    padding: 0 8px;
}

.columnista-titulo a {
    color: #1a1a1a;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.columnista-card:hover .columnista-titulo a,
.columnista-card a:hover .columnista-titulo {
    color: #ff6b35;
}

/* Responsive Columnistas */
@media (max-width: 1200px) {
    .columnistas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .columnistas-grid-5 {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .columnistas-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    
    .columnistas-grid,
    .columnistas-grid-5 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }
    
    .columnista-avatar {
        width: 100px;
        height: 100px;
    }
    
    .columnistas-header h2 {
        font-size: 18px;
    }
    
    .columnista-titulo {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .columnistas-grid,
    .columnistas-grid-5 {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }
    
    .columnista-avatar {
        width: 110px;
        height: 110px;
    }
    
    .columnista-titulo {
        font-size: 14px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECCIÓN VIDEOS - Estilo Figma Profesional
   ═══════════════════════════════════════════════════════════════ */
.videos-section {
    padding: 60px 40px;
    background: #fafafa;
    max-width: 1400px;
    margin: 0 auto;
}

.videos-header {
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.videos-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.videos-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
}

/* Video Principal */
.video-principal {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.video-principal:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.video-principal-link {
    display: block;
    position: relative;
    text-decoration: none !important;
}

.video-principal-link:hover {
    text-decoration: none !important;
}

.video-principal-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.video-principal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-principal:hover .video-principal-thumb img {
    transform: scale(1.05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
    z-index: 10;
    pointer-events: none;
}

.video-play-icon svg {
    display: block;
    margin-left: 4px;
}

.video-play-icon i {
    display: block;
}

.video-principal:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 107, 53, 1);
}

.video-principal-info {
    padding: 20px;
}

.video-principal-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.video-principal:hover .video-principal-title {
    color: #ff6b35;
}

.video-principal-duration {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

/* Lista de Videos Secundarios */
.videos-list {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    max-height: 600px;
    overflow-y: auto;
}

.video-item {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.video-item a {
    text-decoration: none !important;
}

.video-item a:hover {
    text-decoration: none !important;
}

.video-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.video-item:hover {
    background: #fafafa;
    padding: 12px;
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 6px;
}

.video-item-thumb {
    flex-shrink: 0;
    width: 140px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.video-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-item:hover .video-item-thumb img {
    transform: scale(1.08);
}

.video-item-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.video-item-play svg {
    display: block;
    margin-left: 2px;
}

.video-item-play i {
    display: block;
}

.video-item:hover .video-item-play {
    background: #ff6b35;
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
}

.video-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-item-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    transition: color 0.3s ease;
}

.video-item:hover .video-item-title {
    color: #ff6b35;
}

.video-item-date {
    font-size: 11px;
    color: #999;
    margin-top: auto;
}

/* Scrollbar personalizado para lista videos */
.videos-list::-webkit-scrollbar {
    width: 6px;
}

.videos-list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.videos-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.videos-list::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
}

/* Responsive Videos */
@media (max-width: 1200px) {
    .videos-layout {
        grid-template-columns: 1fr 380px;
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .videos-layout {
        grid-template-columns: 1fr;
    }
    
    .videos-list {
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .videos-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .video-principal-title {
        font-size: 18px;
    }
    
    .video-play-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .video-item-thumb {
        width: 120px;
        height: 68px;
    }
}

@media (max-width: 480px) {
    .video-item-thumb {
        width: 100px;
        height: 56px;
    }
    
    .video-item-title {
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECCIÓN SOCIALES - Carousel Horizontal
   ═══════════════════════════════════════════════════════════════ */
.sociales-section {
    padding: 60px 40px;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.sociales-header {
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.sociales-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sociales-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.sociales-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.sociales-carousel::-webkit-scrollbar {
    display: none;
}

.social-card {
    flex: 0 0 280px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-card a {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.social-card-thumb {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: #000;
}

.social-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-card:hover .social-card-thumb img {
    transform: scale(1.08);
}

.social-card-info {
    padding: 16px;
}

.social-card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.social-card:hover .social-card-title {
    color: #ff6b35;
}

/* Botones de navegación del carousel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn svg {
    display: block;
}

.carousel-btn:hover {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn i {
    font-size: 16px;
}

/* Responsive Sociales */
@media (max-width: 768px) {
    .sociales-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .social-card {
        flex: 0 0 240px;
    }
    
    .carousel-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .social-card {
        flex: 0 0 200px;
    }
    
    .social-card-title {
        font-size: 14px;
    }
}