/*
Theme Name: Rowrigo TV & Radio
Theme URI: https://rowrigo.com
Author: Rowrigo
Description: Tema personalizado para radio online, staff, tv, radio, programación, noticias. 
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rowrigo
*/

/* Importar Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Variables para temas */
:root {
    /* Colores Globales */
    --primary-green: #006600;
    --neon-green: #00ff00;
    --bg-primary: #f2f2f2;
    --bg-secondary: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    
    /* Header */
    --header-bg: #1a1a1a;
    --header-text: #ffffff;
    --header-link: #ffffff;
    --header-link-hover: var(--neon-green);
    --header-border: #2a2a2a;
    --header-actions-bg: #ffffff;
    
    /* Menú Principal */
    --menu-bg: #222222;
    --menu-text: #ffffff;
    --menu-hover-bg: #333333;
    --menu-hover-text: var(--neon-green);
    --menu-active: var(--primary-green);
    
    /* Sidebar */
    --sidebar-bg: #212121;
    --sidebar-text: #ffffff;
    --sidebar-link: #ffffff;
    --sidebar-link-hover: var(--neon-green);
    --sidebar-border: #2a2a2a;
    
    /* Footer */
    --footer-bg: #ffffff;
    --footer-text: #000000;
    
    /* Botones */
    --btn-primary-bg: var(--primary-green);
    --btn-primary-text: #ffffff;
    --btn-primary-hover-bg: #008800;
    --btn-secondary-bg: #333333;
    --btn-secondary-text: #ffffff;
    --btn-secondary-hover-bg: #444444;
    
    /* Reproductor */
    --player-bg: #1a1a1a;
    --player-controls: var(--neon-green);
    --player-progress: var(--primary-green);
    --player-text: #ffffff;
    
    /* Cards y Contenedores */
    --card-bg: #ffffff;
    --card-border: #dddddd;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --card-title: #333333;
    --card-text: #666666;
    
    /* Programación */
    --schedule-bg: #ffffff;
    --schedule-border: #dddddd;
    --schedule-time: var(--primary-green);
    --schedule-title: #333333;
    --schedule-text: #666666;
    
    /* Staff */
    --staff-card-bg: #ffffff;
    --staff-card-border: #dddddd;
    --staff-name: #333333;
    --staff-position: var(--primary-green);
    
    /* Formularios */
    --input-bg: #ffffff;
    --input-border: #dddddd;
    --input-text: #333333;
    --input-focus-border: var(--primary-green);
    --input-placeholder: #999999;
    
    /* Fuentes */
    --body-font: 'Poppins', sans-serif;
    
    /* Header Actions */
    --social-links-color: #212121;
    --live-button-bg: #212121;
    --live-button-text: #ffffff;
    --social-link-hover: #515151;
	--live-button-text-hover:#ffffff;
	--live-button-bg-hover:#414141;
    
    /* Header Mobile */
    --mobile-header-bg: #ffffff;
    --site-title-color: #212121;
    --menu-toggle-color: #212121;
    --mobile-live-bar-bg: #ffffff;
    --mobile-live-button-bg: #212121;
    --mobile-live-button-text: #ffffff;	
    --mobile-live-button-bg-hover: #515151;
    --mobile-live-button-text-hover: #ffffff;
    
    /* Quick Access */
    --quick-access-bg: #333333;
    --quick-access-text: #ffffff;
    --quick-access-hover-bg: #444444;
    --quick-access-hover-text: #ffffff;
    --quick-access-button-bg: var(--quick-access-bg);
    --quick-access-button-text: var(--quick-access-text);
    --quick-access-button-icon: var(--quick-access-text);
	
	/* .share-toggle */
	--share-toggle-bg:#212121;
	--share-toggle-text:#ffffff;
	--share-toggle-bg-active: #515151;
	
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--neon-green);
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background-color: var(--sidebar-bg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    border-right: 1px solid var(--sidebar-border);
    color: var(--sidebar-text);
}

.sidebar a {
    color: var(--sidebar-text);
}

.sidebar .site-title,
.sidebar .site-title a,
.sidebar .menu-title,
.sidebar .category-name {
    color: var(--sidebar-text);
}

.nav-menu a {
    color: var(--sidebar-text) !important;
}

.post-count {
    color: var(--sidebar-text) !important;
}

.site-branding {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.site-branding .site-title {
    color: var(--sidebar-text);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.site-branding .site-description {
    color: var(--sidebar-text);
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin-bottom: 0.5rem;
}

.nav-menu a {
    color: var(--sidebar-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--neon-green);
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.menu-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--sidebar-border);
}



.logo-link {
    display: block;
    text-decoration: none;
}

.site-logo {
    width: 100%;
    height: auto;
    max-width: 240px;
    display: block;
    margin: 0 auto;
}

.logo {
    color: var(--text-white);
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.primary-menu{
    margin-bottom: 0px;
}

.menu-title {
    color: var(--text-white);
    font-size: 1.2em;
    margin-bottom: 15px;
    padding-left: 15px;
    font-weight: 500;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 8px;
}

.menu-item a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.primary-menu .menu-item a {
    background: rgba(255, 255, 255, 0.05);
}

.primary-menu .menu-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: var(--neon-green) !important;
}

.primary-menu .menu-item i {
    color: var(--neon-green);
    margin-right: 12px;
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}



.category-name {
    flex-grow: 1;
}

.post-count {
    background: var(--hover-bg);
    color: var(--neon-green);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85em;
    min-width: 24px;
    text-align: center;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}



.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--mobile-header-bg);
    padding: 15px;
    z-index: 1001;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #636363;
    height: 60px;
    box-sizing: border-box;
}

.mobile-header .site-title {
    color: var(--site-title-color);
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
}

.menu-toggle {
    background: transparent;
    border: none;
    color: var(--menu-toggle-color);
    padding: 10px;
    cursor: pointer;
    font-size: 1.2em;
    display: none;
}

.menu-toggle:hover {
    color: var(--neon-green);
}

.main-content {
    margin-left: 320px;
    margin-top: 10px;
    min-height: 100vh;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
}

.single-post-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.archive-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer {
    background-color: var(--footer-bg);
    z-index: 100;
    border-top: 1px solid #636363;
    padding: 1rem;
    color: var(--footer-text);
}

.site-footer p {
    color: var(--footer-text);
    margin: 0;
}

.site-footer a {
    color: var(--footer-text);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--neon-green);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-center {
    text-align: center;
    font-size: 0.9rem;
}

.footer-left {
    color: var(--text-white);
    font-size: 0.9em;
}

.footer-right {
    color: var(--text-white);
    font-size: 0.9em;
    text-align: right;
    margin-left: auto;
}

.footer-right a {
    color: var(--neon-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: var(--text-white);
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-right {
        margin-left: 0;
        text-align: center;
    }
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}


.post-card {
    background: #ffffff;
    border: 1px solid #858585;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-thumbnail {
    position: relative;
    padding-top: 65%;
    display: block;
    overflow: hidden;
}

.post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-thumbnail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.post-card-content {
    padding: 20px;
    position: relative;
}

.post-card-title {
    margin: 0 0 10px;
    font-size: 1.2em;
    line-height: 1.4;
}

.post-card-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color:#39ff14;
}

.post-card-excerpt {
    color: #000;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85em;
    color: #333333;
}

.post-header {
    padding: 40px 0 30px;
    text-align: center;
}

.post-title {
    font-size: 2.8em;
    color: var(--text-white);
    margin: 0 0 20px;
    font-weight: bold;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-white);
    opacity: 0.8;
    margin-bottom: 30px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: var(--neon-green);
}

.featured-image-container {
    margin: 0 0 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.featured-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.page-header {
    padding: 40px 0 30px;
    text-align: center;
}



.post-hero {
    position: relative;
    border-radius:8px;
    border:solid 2px #f1f1f1;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    margin-top: 60px;
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50% 40px 40px;
    background: linear-gradient(transparent, rgb(0 0 0 / 30%));
    text-align: center;
}

.hero-logo-mobile {
    display: none;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width: 992px) {
    .hero-logo-mobile {
        display: block;
    }
}

.post-hero .post-title {
    font-size: 3.5em;
    color: #ffffff;
    margin: 0 0 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.post-hero .post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.post-hero .post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-hero .post-meta i {
    color: var(--neon-green);
}

.post-content {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.post-body {
    margin-bottom: 40px;
}

.comments-section {
    width: 100%;
    padding: 40px 60px;
    box-sizing: border-box;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.comments-title {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.header-actions {
    position: fixed;
    top: 0;
    right: 0;
    left: 320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--header-actions-bg);
    z-index: 100;
    border-bottom: 1px solid #636363;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    color: var(--social-links-color);
    text-decoration: none;
    font-size: 2em;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--social-link-hover);
}

.live-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: var(--live-button-bg);
    color: var(--live-button-text);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.live-button:hover {
    background-color: var(--live-button-bg-hover);
    transform: translateY(-1px);
    color:var(--live-button-text-hover);
}

@media screen and (max-width: 992px) {
    .live-button {
        padding: 6px 12px;
        font-size: 0.85em;
    }
}

@media screen and (max-width: 768px) {
    .live-button {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 992px) {
    .header-actions {
        display: none;
    }
    .post-hero {
        margin-top: 5px;
    }
    
}

@media screen and (max-width: 576px) {
    .quick-access-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .quick-access-button {
        padding: 20px;
    }
    .quick-access-button i {
        font-size: 2em;
    }
    
    .quick-access-button span {
        font-size: 12px;
        font-weight: 500;
    }
}

@media screen and (max-width: 768px) {
    body {
        display: block;
    }

    .mobile-header {
display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding-bottom: 100px;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        padding: 20px;
        margin-top: 10px;
    }
    .post-hero {
        margin-top: 50px;
    }
    .header-actions {
        left: 0;
        padding: 10px;
    }

    .live-button {
        gap: 8px;
        flex-direction: row;
    }

    .banner-section {
        height: 300px;
    }

    .banner-content h1 {
        font-size: 2.5em;
    }

    .banner-content p {
        font-size: 1.4em;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .post-card-content {
        padding: 15px;
    }

    .page-header {
        padding: 30px 0 20px;
    }

    .page-title {
        font-size: 2em;
    }

    .post-header {
        padding: 30px 15px 20px;
    }

    .post-title {
        font-size: 2em;
    }

    .post-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .featured-image-container {
        margin: 0 0 30px;
        border-radius: 8px;
    }

    .post-hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 50% 20px 30px;
    }

    .post-hero .post-title {
        font-size: 2.5em;
    }

    .post-hero .post-meta {
        flex-wrap: wrap;
        gap: 15px;
    }

    .post-content {
        padding: 0 30px;
    }

    .comments-section {
        padding: 30px 30px;
    }
}

@media screen and (max-width: 480px) {
    .live-button {
        flex-direction: row;
        width: 100%;
    }

    .live-button a {
        width: 100%;
        justify-content: center;
    }

    .banner-section {
        height: 250px;
    }

    .banner-content h1 {
        font-size: 1.5em;
    }

    .banner-content p {
        font-size: 1em;
    }

    .section-title {
        font-size: 1.5em;
        text-align: center;
    }

    .post-hero {
        height: 40vh;
        min-height: 300px;
    }

    .post-hero .post-title {
        font-size: 2em;
    }

    .post-hero .post-meta {
        flex-direction: column;
        gap: 10px;
    }

    .post-content {
        padding: 0 20px;
    }

    .comments-section {
        padding: 20px 20px;
    }
}

.tv-live-section {
    padding: 2rem 1rem;
    background-color: var(--bg-primary);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tv-player-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.tv-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.tv-player video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.no-stream-message {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    color: var(--text-secondary);
    width: 100%;
}

.radio-live-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.radio-player-container {
    margin-bottom: 0;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.radio-player {
    margin: 1.5rem 0;
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.radio-description {
    color: var(--text-secondary);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.radio-schedule-section {
    margin-top: 0;
}

.radio-schedule {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.radio-schedule h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .radio-live-section {
        padding: 1rem;
    }

    .radio-player-container {
        margin-bottom: 2rem;
    }

    .radio-schedule {
        padding: 1.5rem;
    }

    .radio-player-container h1 {
        font-size: 1.5rem;
    }

    .radio-schedule h2 {
        font-size: 1.4rem;
    }
}

/* Estilos para la nueva sección de TV */
.home-player-tv-section {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-player-tv-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.home-player-tv {
    position: relative;
    width: 100%;
	max-width:1200px;
    aspect-ratio: 16/9;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    margin: 3rem auto 1rem auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.home-player-tv video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.home-player-no-stream {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    color: var(--text-secondary);
    width: 100%;
}

.banner-section.archive-banner {
    text-align: center;
    padding: 1rem 0;
	margin-top: 2.5rem;
    margin-bottom: 2rem;
    background: none;
}

.banner-section.archive-banner::before {
    display: none;
}

.banner-section.archive-banner h1 {
    color: var(--text-color);
    font-size: 2rem;
    margin: 0;
    padding: 0;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.banner-section.archive-banner h1::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-section.archive-banner {
        padding: 2rem 1rem;
    }

    .banner-section.archive-banner h1 {
        font-size: 1.8rem;
        padding: 0.4rem 1.5rem;
    }

    .banner-section.archive-banner p {
        font-size: 1rem;
    }
}


.page-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1dbe00;
    margin: 15px auto 0;
}


/* Estilos para el Staff */
.staff-section {
    padding: 20px;    
    max-width: 1400px;
    margin: 0 auto;
}

.staff-section .page-title,
.tv-section .page-title,
.radio-section .page-title {
    font-size: 2.5em;
    margin-top: 2rem;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-container .page-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.schedule-container .page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #006600;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.staff-card {
    background: #f1f1f1;
    border: 1px solid #858585;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.staff-info {
    padding: 20px;
    text-align: center;
}

.staff-name {
    font-size: 1.3em;
    color: #191919;
    margin: 0 0 10px 0;
}

.staff-position {
    font-size: 1em;
    color: #212121;
    opacity: 0.8;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .staff-name {
        font-size: 1.2em;
    }

    .staff-position {
        font-size: 0.9em;
    }
}

/* Barra móvil de transmisión en vivo */
.mobile-live-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--mobile-live-bar-bg);
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-top: 1px solid #636363;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media screen and (max-width: 992px) {
    .mobile-live-bar {
        display: grid;
    }
}

.mobile-live-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 4px;
    background:  var(--mobile-live-button-bg);
    color: var(--mobile-live-button-text);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.mobile-live-button i {
    font-size: 1.2em;
}

.mobile-live-button:hover {
    background:  var(--mobile-live-button-bg-hover);
	color: var(--mobile-live-button-text-hover);
    transform: translateY(-2px);
}

/* Media queries para tablets y móviles */
@media screen and (max-width: 992px) {
    /* Ajustar el padding bottom del contenido principal para la barra fija */
    .main-content {
        margin-top: 40px;
        padding-bottom: calc(30px + 65px); /* Padding original + altura de la barra */
    }
}

@media screen and (max-width: 768px) {
    .mobile-live-button span {
        font-size: 0.9em;
    }
}

.staff-section,
.tv-section,
.radio-section {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Estilos para Related Posts */
.related-posts {
    margin-top: 40px;
    padding: 20px;
}

.related-posts .section-title {
    margin-bottom: 20px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Client Grid Styles */
.clients-section {
    padding: 2rem 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.client-card {
    background: #fff;
    border-radius: 8px;
    border: solid 2px #c7c5c5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo img {
    max-width: 100%;
    border-radius:8px;
    height: auto;
    object-fit: contain;
}

.radio-controls {
    margin: 0;
}

.radio-control-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #006600;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,102,0,0.3);
    margin-bottom: 40px;
}

.radio-control-btn:hover {
    transform: scale(1.05);
    background: #008000;
}

.volume-control {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.volume-control i {
    font-size: 24px;
    color: #006600;
}

.volume-control input[type="range"] {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #006600;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-control input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: #008000;
}

.home-player-no-stream {
    text-align: center;
    padding: 40px;
    color: white;
}

.home-player-no-stream p {
    margin: 0;
    font-size: 18px;
}

@media (max-width: 768px) {
    .home-player-radio-section {
        padding: 20px 0px;
    }
    
    .home-player-radio-container {
        padding: 15px;
    }

    .radio-logo {
        width: 150px;
        height: 150px;
    }

    .radio-control-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}



/* Hero Banner en Index */
.hero-banner {
    position: relative;
    min-height: 450px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
	border-radius:8px;
    border:solid 2px #212121;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/banner-hero.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 1200px 450px;
    /*filter: brightness(0.6);*/
    z-index: -1;
}

.hero-banner-content {
    max-width: 100%;
    padding: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 
        -2px -2px 0 #000,  
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2rem;
    }
    .hero-banner p {
        font-size: 1rem;
    }
	
	.hero-banner {
    min-height: 200px;
		margin-top:20px;
}
	
}

@media (max-width: 988px) {
    .hero-banner {
        position: relative;
        min-height: 250px;
        margin-top: 40px;
        background-color: #212121;
    }
    .hero-banner::before {
        background-image: url('');
    }
    
}

/* Estilos para páginas */
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem auto 3rem;
    text-align: center;
    max-width: 800px;
    line-height: 1.3;
}


@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        margin: 1.5rem auto 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
        margin: 1rem auto 1.5rem;
    }
}


/* Reproductor de TV */
.home-player-tv {
    position: relative;
    width: 100%;
    background: var(--bg-primary);
    border-radius: 10px;
    overflow: hidden;
}

.home-player-tv video {
    width: 100%;
    display: block;
}

.big-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 0, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.big-play-button:hover {
    background: var(--primary-green);
    transform: translate(-50%, -50%) scale(1.1);
}

.big-play-button i {
    color: white;
    font-size: 32px;
    margin-left: 5px;
}

.home-player-tv-container {
    max-width: 1200px;
    margin: 0 auto;
}
.page-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1dbe00;
    margin: 15px auto 0;
}


/* Estilos para el Staff */
.staff-section {
    padding: 20px;    
    max-width: 1400px;
    margin: 0 auto;
}

.staff-section .page-title,
.tv-section .page-title,
.radio-section .page-title {
    font-size: 2.5em;
    margin-top: 2rem;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-container .page-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.schedule-container .page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #006600;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.staff-card {
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.staff-info {
    padding: 20px;
    text-align: center;
}

.staff-name {
    font-size: 1.3em;
    color: #191919;
    margin: 0 0 10px 0;
}

.staff-position {
    font-size: 1em;
    color: #212121;
    opacity: 0.8;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .staff-name {
        font-size: 1.2em;
    }

    .staff-position {
        font-size: 0.9em;
    }
}

/* Barra móvil de transmisión en vivo */
.mobile-live-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--mobile-live-bar-bg);
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-top: 1px solid #636363;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media screen and (max-width: 992px) {
    .mobile-live-bar {
        display: grid;
    }
}

.mobile-live-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 4px;
    background:  var(--mobile-live-button-bg);
    color: var(--mobile-live-button-text);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.mobile-live-button i {
    font-size: 1.2em;
}

.mobile-live-button:hover {
    background:  var(--mobile-live-button-bg-hover);
	color: var(--mobile-live-button-text-hover);
    transform: translateY(-2px);
}

/* Media queries para tablets y móviles */
@media screen and (max-width: 992px) {
    /* Ajustar el padding bottom del contenido principal para la barra fija */
    .main-content {
        margin-top: 40px;
        padding-bottom: calc(30px + 65px); /* Padding original + altura de la barra */
    }
}

@media screen and (max-width: 768px) {
    .mobile-live-button span {
        font-size: 0.9em;
    }
}

.staff-section,
.tv-section,
.radio-section {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Estilos para Related Posts */
.related-posts {
    margin-top: 40px;
    padding: 20px;
}

.related-posts .section-title {
    margin-bottom: 20px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Logo styles */
.site-branding {
    padding: 40px 0 0 0;
    text-align: center;
}

.site-branding .custom-logo-link {
    display: block;
    max-width: 100%;
    text-align: center;
}

.site-branding .custom-logo {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

@media screen and (max-width: 992px) {
    .site-branding .custom-logo {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .site-branding .custom-logo {
        max-width: 100%;
    }
}

/* Estilos para la página de programación */
.schedule-page-section {
    padding: 40px 20px;
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.schedule-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
}

.program-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.program-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.schedule-item:hover .program-thumbnail img {
    transform: scale(1.05);
}

.program-main-info {
    padding: 15px;
}

.program-main-info h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.program-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.program-meta i {
    color: #006600;
}

.program-description {
    padding: 0 15px 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.no-programs {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.no-programs i {
    font-size: 48px;
    color: #006600;
    margin-bottom: 15px;
}

.no-programs p {
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .schedule-list {
        grid-template-columns: 1fr;
    }
    
    .program-thumbnail {
        height: 200px;
    }
}

/* Botón flotante de compartir */
.share-float-button {
    position: fixed;
    right: 20px;
    bottom: 60px;
    z-index: 999;
}

.share-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--share-toggle-bg);
    border: none;
    color: var(--share-toggle-text);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-toggle:hover {
    transform: scale(1.1);
    background: var(--share-toggle-bg);
}

.share-toggle.active {
    background: var(--share-toggle-bg-active);
    transform: rotate(45deg);
}

.share-menu {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    border-radius: 10px;
	border:solid 2px #212121;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

.share-menu.active {
    display: flex;
}

.share-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.share-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.share-item.facebook {
    color: #1877f2;
}

.share-item.twitter {
    color: #1da1f2;
}

.share-item.whatsapp {
    color: #25d366;
}

.share-item.telegram {
    color: #0088cc;
}

.share-item:hover {
    background: #f5f5f5;
    transform: translateX(-5px);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .share-float-button {
        right: 15px;
        bottom: 70px;
    }
    
    .share-menu {
        bottom: 75px;
        right: 0;
    }
}

/* Quick Access */
.quick-access-section {
    width: 100%;
    display: block;
    margin-top: 20px;
    margin-bottom: 40px;
}

.quick-access-buttons {
    display: grid;
    gap: 10px;
    margin: 0;
    grid-auto-rows: auto; /* Asegura que todas las filas tengan la misma altura */
}

/* Ajuste automático según número de enlaces activos */
.quick-access-buttons.active-1 {
    grid-template-columns: 1fr;
}

.quick-access-buttons.active-2 {
    grid-template-columns: repeat(2, 1fr);
}

.quick-access-buttons.active-3 {
    grid-template-columns: repeat(3, 1fr);
}

.quick-access-buttons.active-4 {
    grid-template-columns: repeat(4, 1fr);
}

.quick-access-buttons.active-5 {
    grid-template-columns: repeat(5, 1fr);
}

.quick-access-buttons.active-6 {
    grid-template-columns: repeat(6, 1fr);
}

.quick-access-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    background: var(--quick-access-button-bg);
    color: var(--quick-access-button-text);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 120px; /* Altura fija más pequeña */
}

.quick-access-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: var(--quick-access-hover-bg);
}

.quick-access-button:hover i,
.quick-access-button:hover span {
    color: var(--quick-access-hover-text);
}

.quick-access-button i {
    font-size: 40px; /* Reducido de 50px */
    margin-bottom: 10px; /* Reducido de 15px */
    color: var(--quick-access-button-icon);
    transition: color 0.3s ease;
}

.quick-access-button span {
    font-size: 14px; /* Reducido de 16px */
    color: var(--quick-access-text);
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .quick-access-buttons.active-5,
    .quick-access-buttons.active-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-access-buttons.active-4,
    .quick-access-buttons.active-5,
    .quick-access-buttons.active-6 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quick-access-button {
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .quick-access-buttons.active-3,
    .quick-access-buttons.active-4,
    .quick-access-buttons.active-5,
    .quick-access-buttons.active-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-access-button {
        padding: 8px;
        min-height: 90px;
    }
    
    .quick-access-button i {
        font-size: 35px;
        margin-bottom: 8px;
    }
    
    .quick-access-button span {
        font-size: 12px;
    }
}

/* Estilos para el reproductor de radio */
.home-player-radio-section {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 30px;
}

.home-player-radio-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.home-player-radio {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio-player-wrapper {
    width: 100%;
    background-color: red;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

   /** visualizer *****/
   .radio-player-wrapper {
    position: relative; /* Para que el canvas se ajuste correctamente */
    width: 100%;
    background: #222;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
}

#audio-visualizer {
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 200px; /* Altura del visualizador */
    z-index: 1;
}




.radio-logo {
    width: 200px;
    height: 200px;
    margin-top: 20px;
    border-radius: 8px;
    border: solid 2px #00ff00;
}

.radio-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.radio-controls {
    margin: 0;
    z-index: 2;
}

.radio-control-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #006600;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,102,0,0.3);
    margin-bottom: 40px;
}

.radio-control-btn:hover {
    transform: scale(1.05);
    background: #008000;
}

.volume-control {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    z-index:2;
}

.volume-control i {
    font-size: 24px;
    color: #006600;
}

.volume-control input[type="range"] {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #006600;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-control input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: #008000;
}

.home-player-no-stream {
    text-align: center;
    padding: 40px;
    color: white;
}

.home-player-no-stream p {
    margin: 0;
    font-size: 18px;
}

@media (max-width: 768px) {
    .home-player-radio-section {
        padding: 20px 0px;
    }
    
    .home-player-radio-container {
        padding: 15px;
    }

    .radio-logo {
        width: 150px;
        height: 150px;
    }

    .radio-control-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}



/* Hero Banner en Index */
.hero-banner {
    position: relative;
    min-height: 450px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
	border-radius:8px;
    border:solid 2px #212121;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/banner-hero.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 1200px 450px;
    /*filter: brightness(0.6);*/
    z-index: -1;
}

.hero-banner-content {
    max-width: 100%;
    padding: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 
        -2px -2px 0 #000,  
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2rem;
    }
    .hero-banner p {
        font-size: 1rem;
    }
	
	.hero-banner {
    min-height: 200px;
		margin-top:20px;
}
	
}

@media (max-width: 988px) {
    .hero-banner {
        position: relative;
        min-height: 250px;
        margin-top: 40px;
        background-color: #212121;
    }
    .hero-banner::before {
        background-image: url('');
    }
    
}

/* Estilos para páginas */
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem auto 3rem;
    text-align: center;
    max-width: 800px;
    line-height: 1.3;
}


@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        margin: 1.5rem auto 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
        margin: 1rem auto 1.5rem;
    }
}


/* Reproductor de TV */
.home-player-tv {
    position: relative;
    width: 100%;
    background: var(--bg-primary);
    border-radius: 10px;
    overflow: hidden;
}

.home-player-tv video {
    width: 100%;
    display: block;
}

.big-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 0, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.big-play-button:hover {
    background: var(--primary-green);
    transform: translate(-50%, -50%) scale(1.1);
}

.big-play-button i {
    color: white;
    font-size: 32px;
    margin-left: 5px;
}

.home-player-tv-container {
    max-width: 1200px;
    margin: 0 auto;
}
.page-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1dbe00;
    margin: 15px auto 0;
}


/* Estilos para el Staff */
.staff-section {

}
 
    