.elementor-229 .elementor-element.elementor-element-36dd08b{--display:flex;--min-height:816px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-229 .elementor-element.elementor-element-36dd08b:not(.elementor-motion-effects-element-type-background), .elementor-229 .elementor-element.elementor-element-36dd08b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-28e36d0 */.light-transition-container {
    position: relative;
    width: 1100px;
    max-width: 100%;
    height: 448px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    transition: opacity 1.2s ease-out;
    z-index: 2;
}

.light-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, rgba(255, 215, 0, 0.3) 30%, rgba(255, 215, 0, 0.1) 60%, transparent 100%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

/* EFEITO DE LED PISCANDO */
.light-transition-container.flicker-1 .dark-overlay {
    opacity: 0.5;
}

.light-transition-container.flicker-2 .dark-overlay {
    opacity: 0.2;
}

/* ESTADO ACESO */
.light-transition-container.lit .dark-overlay {
    opacity: 0;
}

.light-transition-container.lit .light-glow {
    width: 2000px;
    height: 2000px;
    opacity: 1;
}

.light-transition-container.lit .light-glow {
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease 1.5s;
}

.light-transition-container.complete .light-glow {
    opacity: 0;
}

/* BOTÃO DE ACENDER */
.light-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 0 0 rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.light-button:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6), 0 0 0 15px rgba(255, 215, 0, 0.1);
    background: linear-gradient(135deg, #FFC700 0%, #FFD700 100%);
}

.light-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.light-icon {
    width: 40px;
    height: 48px;
    transition: all 0.3s ease;
}

.light-icon path {
    fill: #000;
    transition: fill 0.3s ease;
}

.light-button:hover .light-icon path {
    fill: #1a1a1a;
}

.light-transition-container.lit .light-button {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
    pointer-events: none;
    transition: all 0.6s ease;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 0 12px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
}

.light-button {
    animation: pulse-ring 2s infinite;
}

.light-transition-container.lit .light-button {
    animation: none;
}

/* MOBILE - TELA CHEIA */
@media (max-width: 768px) {
    .light-transition-container {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        border-radius: 0;
        margin: 0;
    }
    
    .project-image {
        object-fit: cover;
    }
    
    .light-button {
        width: 70px;
        height: 70px;
    }
    
    .light-icon {
        width: 30px;
        height: 36px;
    }
}/* End custom CSS */