body {
    font-family: 'Special Elite', cursive;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    scroll-padding-top: 100px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 1rem;
}

p {
    color: #666;
    line-height: 1.6;
}

.menu-superior {
    background-color: #ffffff;
    padding: 25px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-superior::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000, transparent);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Special Elite', cursive;
    font-size: 1.4em;
    font-weight: 900;
    transition: all 0.3s ease;
}

.menu-lines {
    font-size: 1.2em;
    margin-left: 5px;
    vertical-align: middle;
}

.menu-toggle:hover {
    opacity: 0.7;
}

.menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.menu-superior a {
    text-decoration: none;
    color: #333;
    font-size: clamp(0.9em, 2vw, 1.1em);
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 5px 10px;
    position: relative;
}

.menu-superior a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #333;
    transition: all 0.3s ease;
}

.menu-superior a:hover::after {
    width: 100%;
    left: 0;
}

.menu-superior a:hover {
    color: #000;
    transform: translateY(-2px);
}

.logo-central {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    background-color: #ffffff;
    padding: 20px;
    margin-top: 100px;
    position: relative;
}

.logo-img {
    width: 100%;
    max-width: 750px;
    height: auto;
    padding: 20px;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.02);
}

h1, h2, h3 {
    font-family: 'Special Elite', cursive;
    text-align: center;
}

.presentacion {
    font-family: 'Special Elite', cursive;
    font-size: clamp(1em, 1.8vw, 1.1em);
    -webkit-text-stroke: 0.3px black;
}

.seccion-presentacion {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    overflow: visible;
}

.texto-presentacion {
    flex: 1;
    padding: 20px;
    line-height: 1.5;
    font-size: 1.2em;
    color: #000000;
    font-weight: 500;
    -webkit-text-stroke: 0.4px black;
    max-width: 60%;
    text-shadow: 0.2px 0.2px 0.2px rgba(0, 0, 0, 0.1);
}

.texto-presentacion p {
    margin-bottom: 1.2em;
    color: #000000;
    font-weight: 500;
}

.texto-presentacion strong {
    font-weight: 700;
    color: #000000;
}

.imagen-presentacion {
    flex: 1;
    padding: 40px;
    display: flex;
    justify-content: flex-end;
}

.imagen-presentacion img {
    max-width: 90%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.imagen-presentacion img:hover {
    transform: scale(1.05);
}

.imagen-resumen {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    margin-left: 0;
}

.imagen-resumen img {
    width: 100%;
    height: auto;
}

/* Estilos para la sección de Series */
.seccion-series {
    padding: 2rem;
    max-width: 1200px;
    margin: 90px auto 0 auto;
}

.serie {
    margin-bottom: 3rem;
}

.serie h2 {
    font-family: 'Special Elite', cursive;
    margin-bottom: 1.5rem;
    color: #333;
}

.poster-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    margin-top: 1rem;
}

/* Estilos para la sección De repente */
.seccion-derepente {
    padding: 2rem;
    max-width: 1200px;
    margin: 90px auto 0 auto;
}

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

.derepente-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    border: none;
}

.derepente-item:hover {
    transform: none !important;
}

.derepente-item h3 {
    font-family: 'Special Elite', cursive;
    margin-bottom: 1rem;
    color: #333;
}

.derepente-contenido {
    margin-top: 1rem;
}

.derepente-contenido h3, .derepente-contenido p, .derepente-contenido small {
    font-size: 1.35em;
}

.derepente-contenido h3 {
    font-size: 1.5em;
}

/* Estilos para los posters */
.poster-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    border: none;
}

.poster-item:hover {
    transform: none !important;
}

.poster-img, .publicacion-img {
    width: 100%;
    height: auto;
    border: 1px solid #111;
    border-radius: 0;
    background: #fff;
    display: block;
    margin: 0 auto 1rem auto;
}

.poster-info, .derepente-contenido {
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.poster-info h3, .derepente-contenido h3,
.poster-info p, .derepente-contenido p,
.poster-info small, .derepente-contenido small {
    margin: 0;
    display: inline-block;
    font-size: 1em;
    color: #222;
}

.poster-info h3, .derepente-item h3 {
    font-size: 1.1em;
    font-weight: bold;
    font-family: 'Special Elite', cursive;
    color: #111;
}

/* Estilos para las publicaciones de "De repente" */
.derepente-imagen {
    margin-bottom: 1rem;
}

.derepente-texto {
    margin-bottom: 1rem;
}

.derepente-texto p {
    margin: 0;
    line-height: 1.6;
}

.derepente-fecha {
    color: #666;
    font-size: 0.9em;
    text-align: right;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    .menu-superior {
        padding: 35px 0;
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 40px 0;
        flex-direction: column;
        align-items: center;
        gap: 35px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }

    .menu-toggle {
        display: block;
        font-size: 1.4em;
    }

    .menu-items a {
        font-size: 1.4em;
        padding: 10px 0;
    }

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

    .menu-toggle.active {
        opacity: 0.7;
    }

    .menu-superior ul {
        gap: 20px;
        padding: 0 15px;
    }

    .menu-superior a {
        padding: 3px 8px;
    }

    .logo-central {
        margin-top: 90px;
        min-height: calc(100vh - 100px);
    }

    .seccion-presentacion {
        flex-direction: column;
        padding: 20px;
        padding-top: 100px;
        overflow: hidden;
    }

    .texto-presentacion {
        max-width: 100%;
    }

    .imagen-resumen {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
    }

    .galeria-ideas {
        grid-template-columns: 1fr;
    }
    
    .serie {
        padding: 15px;
    }
    
    .galeria {
        grid-template-columns: 1fr;
    }

    .seccion-series,
    .seccion-derepente {
        padding: 1rem;
    }

    .poster-grid,
    .derepente-grid {
        grid-template-columns: 1fr;
    }

    .poster-info h3 {
        font-size: 1.1em;
    }

    .poster-info p {
        font-size: 0.85em;
    }

    .derepente-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-superior {
        padding: 40px 0;
    }

    .menu-items {
        padding: 45px 0;
        gap: 45px;
        margin-top: 25px;
    }

    .menu-toggle {
        font-size: 1.4em;
    }

    .menu-items a {
        font-size: 1.4em;
    }

    .menu-superior ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .logo-central {
        margin-top: 110px;
        min-height: calc(100vh - 170px);
    }

    .logo-img {
        padding: 10px;
    }

    .idea {
        padding: 15px;
    }
    
    .serie h2 {
        font-size: 1.3em;
    }
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Título de la página visible y destacado */
.seccion-series h1, .seccion-derepente h1 {
    font-family: 'Special Elite', cursive;
    font-size: 2.2rem;
    color: #111;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background: none;
}

.poster-info h3, .poster-info p, .poster-info small {
    font-size: 1.35em;
}

.poster-info h3 {
    font-size: 1.5em;
}

/* Estilos para el menú dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    text-decoration: none;
    border-bottom: none !important;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 1000;
    margin-top: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0.5rem 1rem;
    border-bottom: none;
}

.dropdown-menu li:hover {
    background-color: #f8f9fa;
}

.dropdown-menu a {
    color: #333;
    text-decoration: none;
    display: block;
    border-bottom: none;
}

/* Estilos para la página de detalle */
.detalle-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.poster-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.poster-info {
    text-align: center;
    color: #333;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.poster-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    width: 100%;
    text-transform: uppercase;
}

.poster-info p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
    margin: 0;
}

.poster-info small {
    font-size: 1rem;
    color: #333;
}

.poster-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.btn-volver {
    margin-bottom: 2rem;
    color: #333;
    border-color: #333;
}

.btn-volver:hover {
    background-color: #333;
    color: #fff;
}

.imagen-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.detalles-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.cuadritos-logo {
    max-width: 200px;
    margin: 1rem 0;
}

/* Media queries actualizados */
@media (max-width: 768px) {
    .poster-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .detalles-container {
        width: 100%;
        justify-content: center;
    }
} 