.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-6a71310 *//* ==========================================
   BOTÓN BACK TO TOP (ESTÉTICA PREMIUM)
   ========================================== */
.ed-btn-up {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Gradiente sutil naranja/morado */
    background: linear-gradient(135deg, rgba(217,108,74,0.9) 0%, rgba(42,27,61,0.9) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Siempre por encima de todo */
    
    /* Estado inicial oculto */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 20px rgba(10, 13, 17, 0.5);
}

/* Estado visible (activado por JS) */
.ed-btn-up.mostrar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Efecto magnético ligero al pasar el mouse */
.ed-btn-up:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(217,108,74,1) 0%, rgba(42,27,61,1) 100%);
    box-shadow: 0 15px 25px rgba(217, 108, 74, 0.3);
}

/* Ajuste para móviles: más pequeño y menos pegado al borde */
@media (max-width: 768px) {
    .ed-btn-up {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}/* End custom CSS */