/* Variables globales y reset */
:root {
    /* Colores principales */
    --primary-color: #F06800;
    --primary-color-rgb: 240, 104, 0;
    --background-color: #e4e4e4;
    --content-color: #ffffffea;
    --border-color: #F06800;
    
    /* Variables existentes que se mantienen */
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-color: #fff;
    --sidebar-width: 280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    min-height: 100vh;
}

/* Layout Principal */
.layout-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 2rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    grid-column: 1;
}

.main-content {
    grid-column: 2;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar */
.sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.logo-container {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.logo {
    width: 150px;
    height: auto;
}

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

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.whatsapp-nav-link {
    color: #25D366;
    margin-top: 1rem;
    background-color: rgba(37, 211, 102, 0.1);
}

.whatsapp-nav-link:hover {
    background-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-nav-link i {
    font-size: 1.2rem;
}

.social-links {
    margin-top: auto;
    padding: 1rem 0;
    text-align: center;
}

/* Contenido Principal */
.content-section {
    height: 100%;
    padding: 2rem;
}

.content-section > * {
    width: 100%;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Programación Destacada */
.featured-content {
    margin-top: 3rem;
}

.featured-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.program-card {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.program-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.program-card p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* Estilos para páginas internas */
.page-content {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-content p:last-child {
    margin-bottom: 0;
}

/* Estilos para la programación */
.schedule-container {
    width: 100%;
    padding: 2rem;
}

.schedule-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.schedule-time {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    min-width: 150px;
}

.schedule-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.schedule-info p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .schedule-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .schedule-time {
        width: 100%;
        min-width: auto;
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

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

.program-time {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.program-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-host {
    display: block;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.program-card.weekend {
    border-left-color: var(--secondary-color);
}

.program-card.weekend .program-time {
    background-color: var(--secondary-color);
}

/* Responsive para Programación */
@media (max-width: 768px) {
    .schedule-container {
        padding: 1rem;
    }

    .program-card {
        padding: 1.2rem;
    }
}

/* Animaciones para la carga de contenido */
.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Reproductor Fijo (mantenemos los estilos anteriores) */
.player-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.play-button {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
    height: 60px;
    width: 90%;
    max-width: 1200px;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-button:hover {
    transform: scale(1.02);
    background-color: #c0392b;
}

.play-button i {
    font-size: 1.4rem;
}

/* Estilos para la página de contacto */
.contact-container {
    width: 100%;
    padding: 2rem;
    text-align: center;
}

.contact-info {
    width: 100%;
}

.contact-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    flex: 1;
}

.contact-item.location {
    width: 100%;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.contact-item:hover {
    background-color: rgba(0,0,0,0.03);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-text {
    text-align: center;
    width: 100%;
}

.contact-text h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 0;
}

.contact-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-name {
    font-size: 1rem !important;
    color: #666 !important;
    margin-top: 0.25rem !important;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        width: 100%;
    }

    .contact-item.location {
        margin-top: 0;
    }
}

/* Estilos para la página Nosotros */
.about-container {
    padding: 2rem;
    width: 100%;
}

.about-content {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-content p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Estilos para el perfil en Nosotros */
.about-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.profile-section {
    text-align: center;
}

.profile-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

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

.profile-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.profile-role {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.profile-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.profile-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

    .profile-section {
        max-width: 300px;
        margin: 0 auto 2rem;
    }

    .profile-info h2 {
        font-size: 2rem;
        text-align: center;
    }

    .profile-info p {
        text-align: center;
    }
}

/* Estilos para la página Staff */
.staff-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.staff-member {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.staff-image {
    flex: 0 0 300px;
}

.staff-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.staff-info {
    flex: 1;
}

.staff-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.staff-role {
    display: block;
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.staff-info p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
    .staff-member {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .staff-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .staff-info h2 {
        font-size: 2rem;
    }

    .staff-role {
        font-size: 1.2rem;
    }

    .staff-info p {
        font-size: 1.1rem;
    }
}

/* Hero Banner para páginas internas */
.hero-banner.page-header {
    height: 200px;
    margin-bottom: 2rem;
}

.hero-banner.page-header .hero-content {
    padding: 1rem;
}

.hero-banner.page-header h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero-banner.page-header {
        height: 150px;
    }

    .hero-banner.page-header h1 {
        font-size: 2.5rem;
    }
}

/* Estilos del reproductor flotante */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.player-toggle {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
}

.play-button {
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 8px;
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.play-button.playing {
    background-color: var(--accent-color);
}

.play-button.playing::before {
    animation: pulse 1.5s infinite;
}

.play-button.playing i {
    animation: spin 10s linear infinite;
}

.play-button .fa-play,
.play-button .fa-pause {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.play-button.playing .fa-play {
    opacity: 0;
    transform: scale(0);
    display: none;
}

.play-button:not(.playing) .fa-pause {
    opacity: 0;
    transform: scale(0);
    display: none;
}

.live-text {
    font-size: 12px;
    color: var(--primary-color);
    background-color: white;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    white-space: nowrap;
    font-weight: 600;
    transition: all 0.3s ease;
}

.player-toggle:hover .live-text {
    transform: scale(1.1);
}

/* Panel del reproductor */
.player-panel {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: var(--dark-color);
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 998;
}

.player-panel.active {
    right: 0;
}

.player-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    color: white;
}

.player-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

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

.player-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.volume-control {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.volume-icon {
    margin-right: 10px;
    font-size: 20px;
}

.volume-slider {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
}

.play-button {
    background-color: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    font-size: 24px;
    color: white;
}

.play-button.playing .fa-play {
    display: none;
}

.play-button:not(.playing) .fa-pause {
    display: none;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('../../img/header-bg.jpg') center/cover no-repeat;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.welcome-section {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.welcome-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsive para el Hero Banner */
@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

/* Estilos para la sección de publicidad */
.rowrigo-section {
    text-align: center;
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.rowrigo-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.rowrigo-section p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.phone-link,
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
}

.whatsapp-link {
    color: #25D366;
    background-color: rgba(37, 211, 102, 0.1);
}

.phone-link:hover {
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.15);
}

.whatsapp-link:hover {
    color: #128C7E;
    background-color: rgba(37, 211, 102, 0.15);
}

@media (max-width: 768px) {
    .rowrigo-section {
        padding: 1.5rem;
    }

    .rowrigo-section h3 {
        font-size: 1.5rem;
    }

    .rowrigo-section p {
        font-size: 1.1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .phone-link,
    .whatsapp-link {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .rowrigo-section,
    .featured-content {
        margin: 1rem;
        padding: 1rem;
        width: calc(100% - 2rem); /* Ancho total menos los márgenes */
        box-sizing: border-box;
    }

    .featured-content {
        margin-top: 80px; /* Espacio extra para el header móvil */
    }

    .main-content {
        padding: 0;
        width: 100%;
    }
}

/* Menú para Tablet */
.tablet-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}

.tablet-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 768px;
    margin: 0 auto;
}

.tablet-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--light-color);
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tablet-nav .nav-link i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.tablet-nav .nav-link span {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.tablet-nav .nav-link:hover,
.tablet-nav .nav-link.active {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Media Queries para Tablet y Móvil */
@media (max-width: 1024px) {
    .layout-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .main-content {
        grid-column: 1;
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .sidebar {
        display: none;
    }

    .content-section {
        padding: 0;
    }

    .hero-banner {
        border-radius: 0;
    }

    .sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding-bottom: 90px;
    }

    .tablet-menu {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        z-index: 1000;
        padding: 12px 0;
    }

    .tablet-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0 10px;
    }

    .tablet-nav .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--light-color);
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .tablet-nav .nav-link i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .tablet-nav .nav-link span {
        font-size: 0.8rem;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .tablet-nav .nav-link:hover,
    .tablet-nav .nav-link.active {
        background-color: rgba(255,255,255,0.1);
        transform: translateY(-2px);
    }

    /* Ajuste para el reproductor */
    .player-toggle {
        bottom: 100px;
    }
}

/* Ajustes adicionales para móviles */
@media (max-width: 480px) {
    .tablet-nav .nav-link i {
        font-size: 1.3rem;
    }

    .tablet-nav .nav-link span {
        font-size: 0.7rem;
    }

    .tablet-menu {
        padding: 8px 0;
    }
}

/* Estilos para los créditos */
.credits {
    margin-top: auto;
    padding: 1rem 0;
    text-align: center;
}

.credits a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.credits a:hover {
    opacity: 1;
}

/* Header móvil */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    justify-content: space-between;
    align-items: center;
}

.mobile-header h1 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.share-button {
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.2rem;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.share-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .mobile-header {
        display: flex;
    }

    .main-content {
        margin-top: 60px; /* Altura del header móvil */
    }
}
