@charset "utf-8";
/* CSS Document */

     
        :root {
            --color-principal: #8b1d1d;
            --color-oscuro: #2c2c2c;
            --color-claro: #f9f9f9;
            --fuente: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
    font-family: var(--fuente);
    line-height: 1.6;
    color: var(--color-oscuro);
    background-color: #FBFBFB;
    margin: 0;
    padding: 0;
        }

        header {
    background-color: #BA96ED;
    padding: 1rem 2rem;
    border-bottom: 3px solid var(--color-principal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
        }

        .logo img {
            max-width: 140px;
            height: auto;
        }

        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        nav a {
            text-decoration: none;
            color: var(--color-oscuro);
            font-weight: bold;
            font-size: 0.95rem;
        }

        nav a:hover {
            color: var(--color-principal);
        }

        /* Sección Hero / Presentación destacada */
        .hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('obras/comicos/obras/comicos/204x148/comicos 01.webp') no-shadow center/cover;
    background-color: #3A0A62; /* Salvaguarda si no carga imagen */
    color: white;
    text-align: center;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 1rem;
        }

        .hero h1 {
            color: #fff;
            font-size: 2.8rem;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 600px;
            margin: 1rem auto 2rem auto;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }


        .contenedor {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        h1, h2, h3, h4 {
            color: var(--color-principal);
        }

        h1 {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        h2 {
            border-bottom: 2px solid var(--color-principal);
            padding-bottom: 0.5rem;
            margin-top: 2.5rem;
        }

        .menu-secciones {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            background: var(--color-claro);
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 2rem;
        }

        .menu-secciones a {
            text-decoration: none;
            background: #fff;
            color: var(--color-principal);
            padding: 5px 15px;
            border: 1px solid var(--color-principal);
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .menu-secciones a:hover {
            background: var(--color-principal);
            color: #fff;
        }

        .grid-caracteristicas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 1.5rem;
        }

        .tarjeta-info {
            background: var(--color-claro);
            padding: 1.5rem;
            border-left: 4px solid var(--color-principal);
            border-radius: 4px;
        }

        .cita-obra {
            font-style: italic;
            background: #fff8f8;
            border: 1px dashed var(--color-principal);
            padding: 1rem;
            margin: 1.5rem 0;
            text-align: center;
            font-size: 1.1rem;
        }

        .grid-autores {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
            text-align: center;
            margin-top: 1.5rem;
        }

        .autor-item img {
            width: 100%;
            max-width: 204px;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        /* --- VISOR DE PDF INCRUSTADO --- */
        .pdf-visor-container {
            width: 100%;
            height: 600px;
            margin-top: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: #eee;
        }

        .pdf-visor-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
            background: #fff;
        }

        table, th, td {
            border: 1px solid #ddd;
        }

        th, td {
            padding: 12px;
            text-align: left;
        }

        th {
            background-color: var(--color-principal);
            color: white;
        }

        tr:nth-child(even) { background-color: var(--color-claro); }

        /* --- GALERÍA DE FOTOS --- */
        .galeria {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 10px;
            margin-top: 1.5rem;
        }

        .galeria-item {
            cursor: pointer;
            width: 100%;
            height: auto;
            border-radius: 4px;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .galeria-item:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            margin-bottom: 1.5rem;
            background: #000;
            border-radius: 4px;
        }

        .video-container iframe, .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .enlace-instagram {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin-top: 10px;
        }

        .cta-contratacion {
            text-align: center;
            background: var(--color-claro);
            padding: 2.5rem;
            border: 2px solid var(--color-principal);
            border-radius: 8px;
            margin: 3rem 0;
        }

        .btn-contacto {
            display: inline-block;
            background-color: var(--color-principal);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: background 0.3s;
        }

        .btn-contacto:hover {
            background-color: #6b1414;
        }

        .volver-arriba {
            display: block;
            text-align: right;
            margin-top: 10px;
            font-size: 0.9rem;
            color: var(--color-principal);
            text-decoration: none;
            font-weight: bold;
        }

        footer {
    background: #3A0A62;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    font-size: 0.9rem;
        }

        /* --- VISOR INTERNO SOBREPUESTO (LIGHTBOX) --- */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            user-select: none;
        }

        .lightbox-contenido {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .lightbox-imagen {
            max-width: 85%;
            max-height: 75vh;
            border-radius: 4px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.5);
        }

        .lightbox-titulo {
            color: #fff;
            margin-top: 15px;
            font-size: 1.1rem;
            text-align: center;
            padding: 0 20px;
        }

        .lightbox-btn {
            position: absolute;
            background: rgba(255,255,255,0.1);
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 1.5rem;
            cursor: pointer;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .lightbox-btn:hover {
            background: var(--color-principal);
        }

        .btn-cerrar {
            top: 20px;
            right: 20px;
            font-weight: bold;
        }

        .btn-anterior {
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .btn-siguiente {
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

	