/**
 * TopApp Scroll Magic v2.3.0
 * Estilos del widget
 */

/* Contenedor principal */
.topapp-sm-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Full Width */
.topapp-sm-container.topapp-sm-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Fondo */
.topapp-sm-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Overlay */
.topapp-sm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Área Pinned */
.topapp-sm-pinned {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: visible;
}

/* Elementos animados */
.topapp-sm-element {
    position: absolute;
    will-change: transform, opacity;
    transform-origin: center center;
}

.topapp-sm-element img {
    display: block;
    max-width: 100%;
    height: auto;
}

.topapp-sm-text {
    padding: 20px;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1024px) {
    .topapp-sm-text {
        padding: 15px;
        font-size: 0.95em;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .topapp-sm-container.topapp-sm-full-width {
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
    }

    .topapp-sm-text {
        padding: 10px;
        font-size: 0.9em;
    }
}

/* Debug markers */
.gsap-marker-start,
.gsap-marker-end,
.gsap-marker-scroller-start,
.gsap-marker-scroller-end {
    font-size: 12px !important;
    font-weight: bold !important;
    z-index: 9999 !important;
}